lantiq: remove device specific sysupgrade image checks
Replaced by image metadata Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
b5ee86c4e5
commit
16adf49620
1 changed files with 1 additions and 22 deletions
|
@ -4,28 +4,7 @@ PART_NAME=firmware
|
||||||
REQUIRE_IMAGE_METADATA=1
|
REQUIRE_IMAGE_METADATA=1
|
||||||
|
|
||||||
platform_check_image() {
|
platform_check_image() {
|
||||||
[ "$#" -gt 1 ] && return 1
|
return 0
|
||||||
local board=$(lantiq_board_name)
|
|
||||||
|
|
||||||
case "$board" in
|
|
||||||
BTHOMEHUBV2B|BTHOMEHUBV3A|BTHOMEHUBV5A|P2812HNUF* )
|
|
||||||
nand_do_platform_check $board $1
|
|
||||||
return $?;
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
case "$(get_magic_word "$1")" in
|
|
||||||
# uImage
|
|
||||||
2705) return 0;;
|
|
||||||
# AVM
|
|
||||||
8112) return 0;;
|
|
||||||
# tplink
|
|
||||||
0200) return 0;;
|
|
||||||
*)
|
|
||||||
echo "Invalid image type"
|
|
||||||
return 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
}
|
}
|
||||||
|
|
||||||
platform_pre_upgrade() {
|
platform_pre_upgrade() {
|
||||||
|
|
Loading…
Reference in a new issue