2009-10-23 16:51:51 +00:00
|
|
|
#!/bin/sh
|
2011-07-28 10:56:18 +00:00
|
|
|
RT3X5X=`cat /proc/cpuinfo | grep RT3.5`
|
|
|
|
[ -z "${RT3X5X}" ] || {
|
2009-10-23 16:51:51 +00:00
|
|
|
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
|