diff options
author | Hauke Mehrtens <hauke@openwrt.org> | 2015-08-29 20:32:26 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@openwrt.org> | 2015-08-29 20:32:26 +0000 |
commit | 7e05e4ed13baed834be25c00a13756fcfa0c1850 (patch) | |
tree | 5e177134c5f2f645778caab3f8505695022910dc /package/network | |
parent | 45db302513518c8d3352f71012de4e537bbe68fe (diff) | |
download | upstream-7e05e4ed13baed834be25c00a13756fcfa0c1850.tar.gz upstream-7e05e4ed13baed834be25c00a13756fcfa0c1850.tar.bz2 upstream-7e05e4ed13baed834be25c00a13756fcfa0c1850.zip |
CC: hostapd: properly enable 802.11w support
backport of r46737
Add CONFIG_IEEE80211W variable to DRIVER_MAKEOPTS so that 802.11w
support is properly compiled in full variant.
This fixes #20179
Signed-off-by: Janusz Dziemidowicz <rraptorr@nails.eu.org>
git-svn-id: svn://svn.openwrt.org/openwrt/branches/chaos_calmer@46751 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network')
-rw-r--r-- | package/network/services/hostapd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/hostapd/Makefile b/package/network/services/hostapd/Makefile index 3dff7b4852..c16cb11294 100644 --- a/package/network/services/hostapd/Makefile +++ b/package/network/services/hostapd/Makefile @@ -71,7 +71,7 @@ DRIVER_MAKEOPTS= \ CONFIG_DRIVER_WEXT=$(CONFIG_DRIVER_WEXT_SUPPORT) \ ifeq ($(LOCAL_VARIANT),full) - CONFIG_IEEE80211W=$(CONFIG_PACKAGE_kmod-ath9k) + DRIVER_MAKEOPTS += CONFIG_IEEE80211W=$(CONFIG_PACKAGE_kmod-ath9k) endif ifneq ($(LOCAL_TYPE),hostapd) |