ipq806x: remove device specific sysupgrade image checks

Replaced by image metadata

Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
Felix Fietkau 2016-11-20 20:06:15 +01:00
parent 0d3be662ce
commit b5ee86c4e5
1 changed files with 1 additions and 24 deletions

View File

@ -4,30 +4,7 @@ PART_NAME=firmware
REQUIRE_IMAGE_METADATA=1
platform_check_image() {
local board=$(ipq806x_board_name)
case "$board" in
ap148 |\
d7800 |\
ea8500 |\
nbg6817 |\
r7500 |\
r7500v2 |\
r7800)
nand_do_platform_check $board $1
return $?;
;;
c2600)
local magic_long="$(get_magic_long "$1")"
[ "$magic_long" != "27051956" ] && {
echo "Invalid image, bad magic: $magic_long"
return 1
}
return 0;
;;
*)
return 1;
esac
return 0;
}
platform_pre_upgrade() {