svn commit: r363061 - in head/usr.sbin/wpa: hostapd wpa_supplicant
Cy Schubert
cy at FreeBSD.org
Thu Jul 9 23:01:37 UTC 2020
Author: cy
Date: Thu Jul 9 23:01:36 2020
New Revision: 363061
URL: https://svnweb.freebsd.org/changeset/base/363061
Log:
Enable support for IEEE 802.11N, 802.11W, 802.11AC and 802.11.AX to
hostapd and wpa_supplicant.
Submitted by: bz
MFC after: 2 weeks
Relnotes: yes
Sponsored by: Rubicon Communications, LLC (d/b/a "Netgate")
Modified:
head/usr.sbin/wpa/hostapd/Makefile
head/usr.sbin/wpa/wpa_supplicant/Makefile
Modified: head/usr.sbin/wpa/hostapd/Makefile
==============================================================================
--- head/usr.sbin/wpa/hostapd/Makefile Thu Jul 9 22:38:36 2020 (r363060)
+++ head/usr.sbin/wpa/hostapd/Makefile Thu Jul 9 23:01:36 2020 (r363061)
@@ -45,11 +45,15 @@ SRCS= accounting.c \
ieee802_11.c \
ieee802_11_auth.c \
ieee802_11_common.c \
+ ieee802_11_he.c \
+ ieee802_11_ht.c \
ieee802_11_shared.c \
+ ieee802_11_vht.c \
ieee802_1x.c \
ip_addr.c \
l2_packet_freebsd.c \
main.c \
+ mbo_ap.c \
ms_funcs.c \
neighbor_db.c \
os_unix.c \
@@ -103,6 +107,11 @@ CFLAGS+=-I${.CURDIR:H}/wpa_supplicant \
-DCONFIG_DRIVER_BSD \
-DCONFIG_DRIVER_RADIUS_ACL \
-DCONFIG_HS20 \
+ -DCONFIG_MBO \
+ -DCONFIG_IEEE80211N \
+ -DCONFIG_IEEE80211W \
+ -DCONFIG_IEEE80211AC \
+ -DCONFIG_IEEE80211AX \
-DCONFIG_INTERWORKING \
-DCONFIG_PEERKEY \
-DCONFIG_RSN_PREAUTH \
Modified: head/usr.sbin/wpa/wpa_supplicant/Makefile
==============================================================================
--- head/usr.sbin/wpa/wpa_supplicant/Makefile Thu Jul 9 22:38:36 2020 (r363060)
+++ head/usr.sbin/wpa/wpa_supplicant/Makefile Thu Jul 9 23:01:36 2020 (r363061)
@@ -42,6 +42,10 @@ CFLAGS+=-DCONFIG_BACKEND_FILE \
-DCONFIG_DRIVER_WIRED \
-DCONFIG_GAS \
-DCONFIG_IEEE80211R \
+ -DCONFIG_IEEE80211N \
+ -DCONFIG_IEEE80211W \
+ -DCONFIG_IEEE80211AC \
+ -DCONFIG_IEEE80211AX \
-DCONFIG_PEERKEY \
-DCONFIG_PRIVSEP \
-DCONFIG_SMARTCARD \
More information about the svn-src-head
mailing list