[x86] Revert "Like the earlier mfgpt patch, the new GPIO drivers also require the...
[openwrt.git] / package / hostap-driver / files / lib / wifi / hostap.sh
index 0eb0ff7..820a2e7 100755 (executable)
@@ -112,7 +112,7 @@ enable_prism2() {
                config_get ssid "$vif" ssid
                config_get mode "$vif" mode
 
                config_get ssid "$vif" ssid
                config_get mode "$vif" mode
 
-               [ "$mode" = "wds" ] || iwconfig "$phy" essid -- "$ssid"
+               [ "$mode" = "wds" ] || iwconfig "$phy" essid ${ssid:+-- }"${ssid:-any}"
 
                case "$mode" in
                        sta)
 
                case "$mode" in
                        sta)
@@ -124,6 +124,7 @@ enable_prism2() {
                        ;;
                        ap) iwconfig "$phy" mode master;;
                        wds) iwpriv "$phy" wds_add "$ssid";;
                        ;;
                        ap) iwconfig "$phy" mode master;;
                        wds) iwpriv "$phy" wds_add "$ssid";;
+                       adhoc) iwconfig "$phy" mode ad-hoc;;
                        *) iwconfig "$phy" mode "$mode";;
                esac
 
                        *) iwconfig "$phy" mode "$mode";;
                esac
 
@@ -245,7 +246,6 @@ detect_prism2() {
                config_foreach check_prism2_device wifi-device
                [ "$found" -gt 0 ] && continue
                cat <<EOF
                config_foreach check_prism2_device wifi-device
                [ "$found" -gt 0 ] && continue
                cat <<EOF
-
 config wifi-device radio$devidx
        option type     prism2
        option channel  11
 config wifi-device radio$devidx
        option type     prism2
        option channel  11
@@ -260,6 +260,7 @@ config wifi-iface
        option mode     ap
        option ssid     OpenWrt
        option encryption none
        option mode     ap
        option ssid     OpenWrt
        option encryption none
+
 EOF
        devidx=$(($devidx + 1))
        done
 EOF
        devidx=$(($devidx + 1))
        done
This page took 0.028096 seconds and 4 git commands to generate.