mirror of
https://github.com/LiBwrt-op/openwrt-6.x.git
synced 2026-01-05 10:45:50 +00:00
7 lines
131 B
Bash
Executable File
7 lines
131 B
Bash
Executable File
#!/bin/ash
|
|
# $Id$
|
|
[ "${INTERFACE%%[0-9]*}" = "wds" ] && {
|
|
ifconfig $INTERFACE 0.0.0.0 up
|
|
/usr/sbin/brctl addif br0 $INTERFACE
|
|
}
|