mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-11 21:00:39 +02:00
93701b2bec
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3588 3c298f89-4303-0410-b956-a3cf2f4a3e73
14 lines
251 B
Bash
Executable File
14 lines
251 B
Bash
Executable File
#!/bin/sh
|
|
alias debug=${DEBUG:-:}
|
|
|
|
# valid interface?
|
|
if_valid () (
|
|
ifconfig "$1" >&- 2>&- ||
|
|
[ "${1%%[0-9]}" = "br" ] ||
|
|
{ debug "# missing interface '$1' ignored"; false; }
|
|
)
|
|
|
|
hotplug_dev() {
|
|
env -i ACTION=$1 INTERFACE=$2 /sbin/hotplug net
|
|
}
|