1PART_NAME=firmware
2
3platform_check_image() {
4	[ "$(get_magic_word $(find_mtd_part firmware))" -eq "$(get_magic_word "$1")" ] && return 0
5
6	echo "Invalid image type. Please use an appropriate .bin file"
7	return 1
8}
9
10# use default for platform_do_upgrade()
11