diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2014-07-14 09:31:13 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-07-14 09:31:13 +0000 |
commit | 503062d54a5bef559ef963c3be7c1f2b87df63d0 (patch) | |
tree | 9f8d71f7c9fc3773cec67ab828fe62085bda9f4b /main | |
parent | 2de695e78501528b2d4cb655992bbbf59d5fa812 (diff) | |
download | aports-503062d54a5bef559ef963c3be7c1f2b87df63d0.tar.bz2 aports-503062d54a5bef559ef963c3be7c1f2b87df63d0.tar.xz |
main/wpa_supplicant: enable WPS2, AP and P2P
ref #2887
Diffstat (limited to 'main')
-rw-r--r-- | main/wpa_supplicant/APKBUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/main/wpa_supplicant/APKBUILD b/main/wpa_supplicant/APKBUILD index 37acf08a6e..d88292e00d 100644 --- a/main/wpa_supplicant/APKBUILD +++ b/main/wpa_supplicant/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=wpa_supplicant pkgver=2.1 -pkgrel=1 +pkgrel=2 pkgdesc="A utility providing key negotiation for WPA wireless networks" url="http://hostap.epitest.fi/wpa_supplicant" arch="all" @@ -100,6 +100,9 @@ prepare() { # Enable mitigation against certain attacks against TKIP echo "CONFIG_DELAYED_MIC_ERROR_REPORT=y" >> .config + echo "CONFIG_WPS2=y" >> .config + echo "CONFIG_AP=y" >> .config + echo "CONFIG_P2P=y" >> .config echo "CONFIG_LIBNL32=y" >> .config } |