diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-11-25 09:51:28 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-11-25 09:51:28 +0000 |
commit | 10bd3c525fa4c76c6df158081aa8d2407057e18f (patch) | |
tree | ba2135d217da25c54a293f25a8ae5575aaca2296 /target | |
parent | 7b4990c9ec8204bea4b57853233268bdab0aebbf (diff) | |
download | upstream-10bd3c525fa4c76c6df158081aa8d2407057e18f.tar.gz upstream-10bd3c525fa4c76c6df158081aa8d2407057e18f.tar.bz2 upstream-10bd3c525fa4c76c6df158081aa8d2407057e18f.zip |
ar71xx: enable failsafe on the Nanostation M/Rocket M
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18532 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rwxr-xr-x | target/linux/ar71xx/base-files/etc/diag.sh | 2 | ||||
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/target/linux/ar71xx/base-files/etc/diag.sh b/target/linux/ar71xx/base-files/etc/diag.sh index 82de0a9920..1d88f431f0 100755 --- a/target/linux/ar71xx/base-files/etc/diag.sh +++ b/target/linux/ar71xx/base-files/etc/diag.sh @@ -39,7 +39,7 @@ get_status_led() { aw-nr580) status_led="aw-nr580:green:ready" ;; - bullet-m) + bullet-m | rocket-m | nano-m) status_led="ubnt:green:link4" ;; ls-sr71) diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index 5ff2388715..b1c3b83ea6 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -22,6 +22,9 @@ ar71xx_board_name() { *"Bullet M") name="bullet-m" ;; + *"Nanostation M") + name="nanostation-m" + ;; *LS-SR71) name="ls-sr71" ;; @@ -49,6 +52,9 @@ ar71xx_board_name() { *RB-493) name="rb-493" ;; + *"Rocket M") + name="rocket-m" + ;; *RouterStation) name="routerstation" ;; |