You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
293 B
13 lines
293 B
15 years ago
|
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
|