diff options
author | Felix Fietkau <nbd@nbd.name> | 2016-11-20 20:07:18 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2016-11-20 20:08:48 +0100 |
commit | 16adf49620e327feefd9c4087ea175f0759e4258 (patch) | |
tree | 338394bb3c0e6521ba5b82fc509a1e5b0e9968fe /target/linux/lantiq/base-files | |
parent | b5ee86c4e5dd11cb158f34b21e66003190b90981 (diff) | |
download | upstream-16adf49620e327feefd9c4087ea175f0759e4258.tar.gz upstream-16adf49620e327feefd9c4087ea175f0759e4258.tar.bz2 upstream-16adf49620e327feefd9c4087ea175f0759e4258.zip |
lantiq: remove device specific sysupgrade image checks
Replaced by image metadata
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'target/linux/lantiq/base-files')
-rwxr-xr-x | target/linux/lantiq/base-files/lib/upgrade/platform.sh | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/target/linux/lantiq/base-files/lib/upgrade/platform.sh b/target/linux/lantiq/base-files/lib/upgrade/platform.sh index 75a41c9242..d4db8d2bf7 100755 --- a/target/linux/lantiq/base-files/lib/upgrade/platform.sh +++ b/target/linux/lantiq/base-files/lib/upgrade/platform.sh @@ -4,28 +4,7 @@ PART_NAME=firmware REQUIRE_IMAGE_METADATA=1 platform_check_image() { - [ "$#" -gt 1 ] && return 1 - 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 + return 0 } platform_pre_upgrade() { |