diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-12-05 16:54:48 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-12-05 16:54:48 +0000 |
commit | 8b0e381068b8e45160fe9289cb0e13a8da2080d5 (patch) | |
tree | 13e4ba0d55f3eb022c9e978784e201e18a9f337b | |
parent | baf6222ae529819d386055d94741b2a4f5ea2131 (diff) |
ramips: fix network configuration setup
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29448 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | target/linux/ramips/base-files/etc/uci-defaults/network | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/ramips/base-files/etc/uci-defaults/network b/target/linux/ramips/base-files/etc/uci-defaults/network index 6f2843ba2..6d1de3c40 100755 --- a/target/linux/ramips/base-files/etc/uci-defaults/network +++ b/target/linux/ramips/base-files/etc/uci-defaults/network @@ -53,7 +53,7 @@ ramips_setup_interfaces() b2c | \ f5d8235-v2 | \ nw718) - ucidef_set_interfaces_lan_wan "eth0.1 eth0.2" + ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" ;; rt-n15) @@ -66,9 +66,9 @@ ramips_setup_interfaces() *) RT3X5X=`cat /proc/cpuinfo | grep RT3.5` if [ -n "${RT3X5X}" ]; then - ucidef_set_interfaces_lan_wan "eth0.1 eth0.2" + ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" else - ucidef_set_interfaces_lan_wan "eth0 eth1" + ucidef_set_interfaces_lan_wan "eth0" "eth1" fi ;; esac |