mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-02 09:18:05 +00:00
23e3735ad5
SVN-Revision: 10871
11 lines
228 B
Bash
11 lines
228 B
Bash
#!/bin/sh
|
|
if [ -e "/sys/bus/mdio_bus/drivers/Infineon ADM6996/0:00" ]; then
|
|
uci batch <<EOF
|
|
set network.lan.ifname=eth0.0
|
|
set network.wan=interface
|
|
set network.wan.ifname=eth0.1
|
|
set network.wan.proto=dhcp
|
|
commit network
|
|
EOF
|
|
fi
|