diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-09-09 14:05:22 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-09-09 14:05:22 +0000 |
commit | 6ae5ec16e0f030649e759e340f791df388d6e38d (patch) | |
tree | 7124a08e0e5468787df4389c531e67a956f95fb7 /target/linux/ar71xx/base-files | |
parent | 94bac7366c2ad13a479c5476659658aeece43ca5 (diff) | |
download | upstream-6ae5ec16e0f030649e759e340f791df388d6e38d.tar.gz upstream-6ae5ec16e0f030649e759e340f791df388d6e38d.tar.bz2 upstream-6ae5ec16e0f030649e759e340f791df388d6e38d.zip |
ar71xx: add preliminary support for Mikrotik RB2011L
This patch adds preliminary support for the Mikrotik RB2011L.
The NAND flash is not yet supported, so only the initramfs
kernel can be used for now.
[juhosg: remove unnecessary PCI/USB related stuff, the board
does not use that, update commit message]
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
SVN-Revision: 33344
Diffstat (limited to 'target/linux/ar71xx/base-files')
-rwxr-xr-x | target/linux/ar71xx/base-files/etc/uci-defaults/network | 3 | ||||
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/target/linux/ar71xx/base-files/etc/uci-defaults/network b/target/linux/ar71xx/base-files/etc/uci-defaults/network index ce52d0e096..f4fa7a2500 100755 --- a/target/linux/ar71xx/base-files/etc/uci-defaults/network +++ b/target/linux/ar71xx/base-files/etc/uci-defaults/network @@ -21,7 +21,8 @@ ja76pf2) ucidef_set_interface_lan "eth0 eth1" ;; -db120) +db120 |\ +rb-2011l) ucidef_set_interfaces_lan_wan "eth0.1 eth1" "eth0.2" ucidef_add_switch "eth0" "1" "1" ucidef_add_switch_vlan "eth0" "1" "0t 2 3 4 5" diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index a1979a67e0..a007c4f531 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -291,6 +291,9 @@ ar71xx_board_detect() { *"RouterBOARD 751G") name="rb-751g" ;; + *"RouterBOARD 2011L") + name="rb-2011l" + ;; *"Rocket M") name="rocket-m" ;; |