mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-06 09:13:09 +02:00
7 lines
131 B
Plaintext
7 lines
131 B
Plaintext
|
#!/bin/ash
|
||
|
# $Id$
|
||
|
[ "${INTERFACE%%[0-9]*}" = "wds" ] && {
|
||
|
ifconfig $INTERFACE 0.0.0.0 up
|
||
|
/usr/sbin/brctl addif br0 $INTERFACE
|
||
|
}
|