mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 23:27:30 +02:00
4f3a09388f
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18128 3c298f89-4303-0410-b956-a3cf2f4a3e73
14 lines
245 B
Bash
Executable File
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
|