1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-20 02:24:45 +03:00
openwrt-xburst/target/linux/atheros/base-files/etc/uci-defaults/network
nbd 6417f404c6 atheros: fix path in marvell switch phy id detection
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14980 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-03-22 20:18:58 +00:00

12 lines
290 B
Bash

#!/bin/sh
if [ -e "/sys/bus/mdio_bus/drivers/Infineon ADM6996/0:00" -o \
-e "/sys/bus/mdio_bus/drivers/Marvell 88E6060/0:10" ]; 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