aboutsummaryrefslogtreecommitdiffstats
path: root/package/madwifi/patches/381-ibss_modes.patch
blob: f904ed9721b8c5b3262f153503cf30b3e52eebaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--- a/ath/if_ath.c
+++ b/ath/if_ath.c
@@ -1260,7 +1260,10 @@ ath_vap_create(struct ieee80211com *ic, 
 	case IEEE80211_M_IBSS:
 		if ((sc->sc_nvaps != 0) && (ic->ic_opmode == IEEE80211_M_STA))
 			return NULL;
-		ic_opmode = opmode;
+		if (ic->ic_opmode == IEEE80211_M_HOSTAP)
+			ic_opmode = ic->ic_opmode;
+		else
+			ic_opmode = opmode;
 		break;
 	case IEEE80211_M_AHDEMO:
 	case IEEE80211_M_MONITOR:
@@ -1455,7 +1458,7 @@ ath_vap_create(struct ieee80211com *ic, 
 	 * frames.  Other modes carry over directly to the HAL.
 	 */
 	if (ic->ic_opmode == IEEE80211_M_AHDEMO)
-		sc->sc_opmode = HAL_M_IBSS;
+		sc->sc_opmode = HAL_M_HOSTAP;
 	else
 		sc->sc_opmode = (HAL_OPMODE) ic->ic_opmode;	/* NB: compatible */
 
)/.host.mk $(TMP_DIR)/.host.mk: $(TOPDIR)/include/host.mk @mkdir -p $(TMP_DIR) @( \ HOST_OS=`uname`; \ case "$$HOST_OS" in \ Linux) HOST_ARCH=`uname -m`;; \ *) HOST_ARCH=`uname -p`;; \ esac; \ GNU_HOST_NAME=`gcc -dumpmachine`; \ [ -n "$$GNU_HOST_NAME" ] || \ GNU_HOST_NAME=`$(SCRIPT_DIR)/config.guess`; \ echo "HOST_OS:=$$HOST_OS" > $@; \ echo "HOST_ARCH:=$$HOST_ARCH" >> $@; \ echo "GNU_HOST_NAME:=$$GNU_HOST_NAME" >> $@; \ TAR=`which gtar 2>/dev/null`; \ [ -n "$$TAR" -a -x "$$TAR" ] || TAR=`which gnutar 2>/dev/null`; \ [ -n "$$TAR" -a -x "$$TAR" ] || TAR=`which tar 2>/dev/null`; \ echo "TAR:=$$TAR" >> $@; \ FIND=`which gfind 2>/dev/null`; \ [ -n "$$FIND" -a -x "$$FIND" ] || FIND=`which find 2>/dev/null`; \ echo "FIND:=$$FIND" >> $@; \ echo "BASH:=$(shell which bash)" >> $@; \ if $$FIND -L /tmp -maxdepth 0 >/dev/null 2>/dev/null; then \ echo "FIND_L=$$FIND -L \$$(1)" >>$@; \ else \ echo "FIND_L=$$FIND \$$(1) -follow" >> $@; \ fi; \ if xargs --help 2>&1 | grep 'gnu.org' >/dev/null; then \ echo 'XARGS:=xargs -r' >> $@; \ else \ echo 'XARGS:=xargs' >> $@; \ fi; \ ) endif