aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/base-files/lib
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2010-09-03 18:14:37 +0000
committerGabor Juhos <juhosg@openwrt.org>2010-09-03 18:14:37 +0000
commitcf15bf1c2b907e7313e45474df8ce2fc6ec01845 (patch)
tree59c38e4afa0ac469f8668f97fb7e56d3f4061d00 /target/linux/ar71xx/base-files/lib
parent7c4834a937fd0b5aeb3d845c0d389de50b15cc3b (diff)
downloadmaster-187ad058-cf15bf1c2b907e7313e45474df8ce2fc6ec01845.tar.gz
master-187ad058-cf15bf1c2b907e7313e45474df8ce2fc6ec01845.tar.bz2
master-187ad058-cf15bf1c2b907e7313e45474df8ce2fc6ec01845.zip
ar71xx: add support for the Zcomax ZCN-1523H-2-8/5-16 boards
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22882 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/base-files/lib')
-rwxr-xr-xtarget/linux/ar71xx/base-files/lib/ar71xx.sh6
-rwxr-xr-xtarget/linux/ar71xx/base-files/lib/upgrade/platform.sh7
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 2a96822628..4b08e93c18 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 bfa5cc69bd..29aeff42ef 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"