mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 01:30:16 +02:00
13 lines
293 B
Plaintext
13 lines
293 B
Plaintext
|
if [ "$ACTION" = "add" -o "$ACTION" = "register" ]; then
|
||
|
case "$INTERFACE" in
|
||
|
wlan*.sta*)
|
||
|
local BASEIF="${INTERFACE%%\.*}"
|
||
|
|
||
|
include /lib/network
|
||
|
scan_interfaces
|
||
|
local CONFIG="$(find_config "$BASEIF")"
|
||
|
[ -n "$CONFIG" ] && setup_interface "$INTERFACE" "$CONFIG"
|
||
|
;;
|
||
|
esac
|
||
|
fi
|