diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-10-30 06:50:58 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-10-30 06:50:58 +0000 |
commit | 8ef73de0f68970885f302f0caa367bec6ae5c3fc (patch) | |
tree | 13a5094cabe73355d0d8eeeb64d8e1eaa7dd12ea /target | |
parent | 82a47e4e6323fceba8d89eabfcb319a8021e16e1 (diff) | |
download | upstream-8ef73de0f68970885f302f0caa367bec6ae5c3fc.tar.gz upstream-8ef73de0f68970885f302f0caa367bec6ae5c3fc.tar.bz2 upstream-8ef73de0f68970885f302f0caa367bec6ae5c3fc.zip |
ar71xx: add user-space support for the BXU2000n-2 A1 board
Patchwork: http://patchwork.openwrt.org/patch/4183/
Signed-off-by: Terry Yang <yangbo@bhunetworks.com>
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38592 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
4 files changed, 11 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/etc/diag.sh b/target/linux/ar71xx/base-files/etc/diag.sh index a4a8408960..1cabd1058e 100755 --- a/target/linux/ar71xx/base-files/etc/diag.sh +++ b/target/linux/ar71xx/base-files/etc/diag.sh @@ -37,6 +37,9 @@ get_status_led() { bullet-m | rocket-m | nano-m | nanostation-m) status_led="ubnt:green:link4" ;; + bxu2000n-2-a1) + status_led="bhu:green:status" + ;; cap4200ag) status_led="senao:green:pwr" ;; diff --git a/target/linux/ar71xx/base-files/etc/uci-defaults/01_leds b/target/linux/ar71xx/base-files/etc/uci-defaults/01_leds index bd1c4b78b5..5566bfa82d 100755 --- a/target/linux/ar71xx/base-files/etc/uci-defaults/01_leds +++ b/target/linux/ar71xx/base-files/etc/uci-defaults/01_leds @@ -32,6 +32,10 @@ ap113) ucidef_set_led_usbdev "usb" "USB" "ap113:green:usb" "1-1" ;; +bxu2000n-2-a1) + ucidef_set_led_wlan "wlan" "WLAN" "bhu:green:wlan" "phy0tpt" + ;; + cap4200ag) ucidef_set_led_default "lan_green" "LAN_GREEN" "senao:green:lan" "1" ucidef_set_led_wlan "wlan_amber" "WLAN_AMBER" "senao:amber:wlan" "phy0tpt" diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index 633fae12fa..cd03168857 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -576,6 +576,9 @@ ar71xx_board_detect() { *"Sitecom WLR-8100") name="wlr8100" ;; + *"BHU BXU2000n-2 rev. A1") + name="bxu2000n-2-a1" + ;; esac case "$machine" in diff --git a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh index 28e4a91ff1..ae04a8c319 100755 --- a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh +++ b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh @@ -98,6 +98,7 @@ platform_check_image() { ap96 | \ db120 | \ hornet-ub | \ + bxu2000n-2-a1 | \ zcn-1523h-2 | \ zcn-1523h-5) [ "$magic_long" != "68737173" -a "$magic_long" != "19852003" ] && { |