diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-08-04 19:41:17 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-08-04 19:41:17 +0000 |
commit | fb77134596d0ef096adb64c6591953f38c7d50bd (patch) | |
tree | 0a084feabf17ac9a3bc877f7214e04e83150e487 /target/linux/ar71xx | |
parent | fd3a5f64f2dd1ebf05e8aac62ec61780f89bdb13 (diff) | |
download | upstream-fb77134596d0ef096adb64c6591953f38c7d50bd.tar.gz upstream-fb77134596d0ef096adb64c6591953f38c7d50bd.tar.bz2 upstream-fb77134596d0ef096adb64c6591953f38c7d50bd.zip |
ar71xx: use the same test for AP121 and Zcomax sysupgrade images
SVN-Revision: 27900
Diffstat (limited to 'target/linux/ar71xx')
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/upgrade/platform.sh | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh index ab0adb2e8b..8fa2a4254c 100755 --- a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh +++ b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh @@ -69,8 +69,8 @@ platform_check_image() { [ "$ARGC" -gt 1 ] && return 1 case "$board" in - ap121 | ap121-mini) - [ "$magic_long" != "68737173" ] && { + ap121 | ap121-mini | zcn-1523h-2 | zcn-1523h-5) + [ "$magic" != "68737173" -a "$magic" != "19852003" ] && { echo "Invalid image type." return 1 } @@ -111,13 +111,6 @@ platform_check_image() { } return 0 ;; - zcn-1523h-2 | zcn-1523h-5) - [ "$magic" != "6873" -a "$magic" != "1985" ] && { - echo "Invalid image type." - return 1 - } - return 0 - ;; routerstation | routerstation-pro | ls-sr71 | pb42 | pb44 | eap7660d | ja76pf ) [ "$magic" != "4349" ] && { echo "Invalid image. Use *-sysupgrade.bin files on this board" |