diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-02-13 15:18:04 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-02-13 15:18:04 +0000 |
commit | 4b03e2a14b02b88717671f0c15afe8b9e1889a52 (patch) | |
tree | 0614a86379744970daf640486d7e1fe4fdd9eec7 /target/linux/ramips/base-files/etc/uci-defaults/network | |
parent | be0de7b85637694995ccf8b5e2da48e1732c4c12 (diff) | |
download | upstream-4b03e2a14b02b88717671f0c15afe8b9e1889a52.tar.gz upstream-4b03e2a14b02b88717671f0c15afe8b9e1889a52.tar.bz2 upstream-4b03e2a14b02b88717671f0c15afe8b9e1889a52.zip |
ramips: add preliminary support for the Asus RT-N56U board
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30498 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips/base-files/etc/uci-defaults/network')
-rwxr-xr-x | target/linux/ramips/base-files/etc/uci-defaults/network | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/target/linux/ramips/base-files/etc/uci-defaults/network b/target/linux/ramips/base-files/etc/uci-defaults/network index 59d794f1d4..0f97bc3647 100755 --- a/target/linux/ramips/base-files/etc/uci-defaults/network +++ b/target/linux/ramips/base-files/etc/uci-defaults/network @@ -43,6 +43,13 @@ ramips_setup_interfaces() ucidef_add_switch_vlan "rtl8366rb" "2" "0 5t" ;; + rt-n56u) + ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" + ucidef_add_switch "switch0" "1" "1" + ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 8t" + ucidef_add_switch_vlan "switch0" "2" "4 8t" + ;; + wcr-150gn) ucidef_set_interface_lan_wan "eth0.2" "eth0.1" ;; @@ -109,6 +116,11 @@ ramips_setup_macs() wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1) ;; + rt-n56u) + lan_mac=$(ramips_get_mac_binary factory 4) + wan_mac=$(ramips_get_mac_binary factory 32772) + ;; + w502u) lan_mac=$(ramips_get_mac_binary factory 40) wan_mac=$(ramips_get_mac_binary factory 46) |