diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-10-24 21:49:21 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-10-24 21:49:21 +0000 |
commit | d96e321bd17b2d9a38d9365e29ab473792a50b9b (patch) | |
tree | 3a9f1dbb15702d8c9054db937966d11530ccca5e /target/linux/ar71xx/base-files/lib/ar71xx.sh | |
parent | ef41e0a61ce354c889e1fc903e336a5549395a64 (diff) | |
download | upstream-d96e321bd17b2d9a38d9365e29ab473792a50b9b.tar.gz upstream-d96e321bd17b2d9a38d9365e29ab473792a50b9b.tar.bz2 upstream-d96e321bd17b2d9a38d9365e29ab473792a50b9b.zip |
ar71xx: add kernel support for the Allnet ALL0258N board
This patchs adds support for the Allnet ALL0258N outdoor AP/bridge.
The ALL0258N is based on the AR7240 SoC paired with an AR9285 radio,
it got 8MB of NOR and 32MB SDRAM.
Signed-off-by: Daniel Golle <dgolle@allnet.de>
SVN-Revision: 28564
Diffstat (limited to 'target/linux/ar71xx/base-files/lib/ar71xx.sh')
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index d099d39df3..51ff62b524 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -10,6 +10,9 @@ ar71xx_board_name() { machine=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /machine/ {print $2}' /proc/cpuinfo) case "$machine" in + *ALL0258N) + name="all0258n" + ;; *AP121) name="ap121" ;; |