diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-12-01 22:48:54 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-12-01 22:48:54 +0000 |
commit | d1754575ec2c23e810a8175cd936a8a81c20bc0f (patch) | |
tree | 298b6490ef121671b4c31da46ef74e98584acd65 | |
parent | 68c76b9f5470757b1e1cba275a1cf6346430a96d (diff) | |
download | upstream-d1754575ec2c23e810a8175cd936a8a81c20bc0f.tar.gz upstream-d1754575ec2c23e810a8175cd936a8a81c20bc0f.tar.bz2 upstream-d1754575ec2c23e810a8175cd936a8a81c20bc0f.zip |
ramips: setup default network configuration for RT-N15
Based on a patch by Roman Yeryomin <roman@advem.lv>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29390 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | target/linux/ramips/base-files/etc/uci-defaults/network | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/target/linux/ramips/base-files/etc/uci-defaults/network b/target/linux/ramips/base-files/etc/uci-defaults/network index a00e162d01..6f2843ba24 100755 --- a/target/linux/ramips/base-files/etc/uci-defaults/network +++ b/target/linux/ramips/base-files/etc/uci-defaults/network @@ -56,6 +56,13 @@ ramips_setup_interfaces() ucidef_set_interfaces_lan_wan "eth0.1 eth0.2" ;; + rt-n15) + ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" + ucidef_add_switch "rtl8366s" "1" "1" + ucidef_add_switch_vlan "rtl8366s" "1" "1 2 3 4 5t" + ucidef_add_switch_vlan "rtl8366s" "2" "0 5t" + ;; + *) RT3X5X=`cat /proc/cpuinfo | grep RT3.5` if [ -n "${RT3X5X}" ]; then @@ -81,7 +88,8 @@ ramips_setup_macs() argus-atp52b | \ b2c | \ - nw718) + nw718 | \ + rt-n15) lan_mac=$(get_mac_binary factory 4) wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1) ;; |