diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2010-09-03 18:14:37 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2010-09-03 18:14:37 +0000 |
commit | b4336a8e2db89f6f1b9d9eee885e63c34e636df1 (patch) | |
tree | 2b02d78c88d97378c54888769545f4651463368b /target/linux/ar71xx/base-files/lib | |
parent | 2a541325d3db510c2b5aee30dc88c72255a797c0 (diff) | |
download | mtk-20170518-b4336a8e2db89f6f1b9d9eee885e63c34e636df1.zip mtk-20170518-b4336a8e2db89f6f1b9d9eee885e63c34e636df1.tar.gz mtk-20170518-b4336a8e2db89f6f1b9d9eee885e63c34e636df1.tar.bz2 |
ar71xx: add support for the Zcomax ZCN-1523H-2-8/5-16 boards
SVN-Revision: 22882
Diffstat (limited to 'target/linux/ar71xx/base-files/lib')
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 6 | ||||
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/upgrade/platform.sh | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index 2a96822..4b08e93 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -121,6 +121,12 @@ ar71xx_board_name() { *WZR-HP-G300NH) name="wzr-hp-g300nh" ;; + *ZCN-1523H-2) + name="zcn-1523h-2" + ;; + *ZCN-1523H-5) + name="zcn-1523h-5" + ;; *) name="generic" ;; diff --git a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh index bfa5cc6..29aeff4 100755 --- a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh +++ b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh @@ -96,6 +96,13 @@ 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 ) [ "$magic" != "4349" ] && { echo "Invalid image. Use *-sysupgrade.bin files on this board" |