1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-15 13:17:07 +03:00
openwrt-xburst/target/linux/ramips/base-files/etc/uci-defaults/network
blogic 4f3a09388f [ramips] adds ethernet driver, esw needs to be moved to swconfig, driver is missing rt288x support, not a platform device yet
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18128 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-23 16:51:51 +00:00

14 lines
245 B
Bash
Executable File

#!/bin/sh
RT305X=`cat /proc/cpuinfo | grep RT305`
[ -z "${RT305X}" ] || {
uci batch <<EOF
set network.lan.ifname=eth0.1
set network.wan=interface
set network.wan.ifname=eth0.2
set network.wan.proto=dhcp
commit network
EOF
}
uci commit network