2
0
forked from Ivasoft/openwrt

adds ethernet driver, esw needs to be moved to swconfig, driver is missing rt288x support, not a platform device yet

SVN-Revision: 18128
This commit is contained in:
John Crispin
2009-10-23 16:51:51 +00:00
parent 21367682e8
commit d95163658c
7 changed files with 757 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
#!/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