1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 09:11:59 +03:00

[package] hostap-driver: introduce "disabled" option for wifi-iface section to shutdown single networks on a radio

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28318 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
acinonyx 2011-09-29 12:37:04 +00:00
parent 4adb2149b4
commit 2389b46d1d

View File

@ -39,6 +39,9 @@ scan_prism2() {
config_get vifs "$device" vifs
local _c=0
for vif in $vifs; do
config_get_bool disabled "$vif" disabled 0
[ $disabled = 0 ] || continue
config_get mode "$vif" mode
case "$mode" in
adhoc|sta|ap|monitor)