Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -14,6 +14,11 @@ config BR2_PACKAGE_HOSTAPD
|
||||
|
||||
if BR2_PACKAGE_HOSTAPD
|
||||
|
||||
config BR2_PACKAGE_HOSTAPD_DRIVER_RTW
|
||||
bool "Enable rtl871xdrv driver"
|
||||
help
|
||||
Enable support for Realtek wireless chips.
|
||||
|
||||
config BR2_PACKAGE_HOSTAPD_ACS
|
||||
bool "Enable ACS"
|
||||
default y
|
||||
@@ -38,6 +43,29 @@ config BR2_PACKAGE_HOSTAPD_WPS
|
||||
help
|
||||
Enable support for Wi-Fi Protected Setup.
|
||||
|
||||
config BR2_PACKAGE_HOSTAPD_VLAN
|
||||
bool "Enable VLAN support"
|
||||
default y
|
||||
help
|
||||
Enable support for VLANs.
|
||||
|
||||
config BR2_PACKAGE_HOSTAPD_VLAN_DYNAMIC
|
||||
bool "Enable dynamic VLAN support"
|
||||
default y
|
||||
depends on BR2_PACKAGE_HOSTAPD_VLAN
|
||||
help
|
||||
Enable support for fully dynamic VLANs.
|
||||
This enables hostapd to automatically create
|
||||
bridge and VLAN interfaces if necessary.
|
||||
|
||||
config BR2_PACKAGE_HOSTAPD_VLAN_NETLINK
|
||||
bool "Use netlink-based API for VLAN operations"
|
||||
default y
|
||||
depends on BR2_PACKAGE_HOSTAPD_VLAN
|
||||
help
|
||||
Use netlink-based kernel API for VLAN operations
|
||||
instead of ioctl().
|
||||
|
||||
endif
|
||||
|
||||
comment "hostapd needs a toolchain w/ threads"
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
# Locally calculated
|
||||
sha256 01526b90c1d23bec4b0f052039cc4456c2fd19347b4d830d1d58a0a6aea7117d hostapd-2.6.tar.gz
|
||||
sha256 e204da659d0583c71af23cb9b55536fe99598ee26a44104344f456e4d17350c6 rtlxdrv.patch
|
||||
sha256 529113cc81256c6178f3c1cf25dd8d3f33e6d770e4a180bd31c6ab7e4917f40b rebased-v2.6-0001-hostapd-Avoid-key-reinstallation-in-FT-handshake.patch
|
||||
sha256 147c8abe07606905d16404fb2d2c8849796ca7c85ed8673c09bb50038bcdeb9e rebased-v2.6-0005-Fix-PTK-rekeying-to-generate-a-new-ANonce.patch
|
||||
|
||||
@@ -13,20 +13,18 @@ HOSTAPD_SUBDIR = hostapd
|
||||
HOSTAPD_CONFIG = $(HOSTAPD_DIR)/$(HOSTAPD_SUBDIR)/.config
|
||||
HOSTAPD_DEPENDENCIES = host-pkgconf libnl
|
||||
HOSTAPD_CFLAGS = $(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include/libnl3/
|
||||
HOSTAPD_LICENSE = BSD-3c
|
||||
HOSTAPD_LICENSE = BSD-3-Clause
|
||||
HOSTAPD_LICENSE_FILES = README
|
||||
HOSTAPD_CONFIG_SET =
|
||||
|
||||
HOSTAPD_CONFIG_ENABLE = \
|
||||
CONFIG_FULL_DYNAMIC_VLAN \
|
||||
CONFIG_HS20 \
|
||||
CONFIG_IEEE80211AC \
|
||||
CONFIG_IEEE80211N \
|
||||
CONFIG_IEEE80211R \
|
||||
CONFIG_INTERNAL_LIBTOMMATH \
|
||||
CONFIG_INTERWORKING \
|
||||
CONFIG_LIBNL32 \
|
||||
CONFIG_VLAN_NETLINK
|
||||
CONFIG_LIBNL32
|
||||
|
||||
HOSTAPD_CONFIG_DISABLE =
|
||||
|
||||
@@ -38,8 +36,8 @@ HOSTAPD_LIBS += -lnl-3 -lm -lpthread
|
||||
endif
|
||||
|
||||
# Try to use openssl if it's already available
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
HOSTAPD_DEPENDENCIES += openssl
|
||||
ifeq ($(BR2_PACKAGE_LIBOPENSSL),y)
|
||||
HOSTAPD_DEPENDENCIES += libopenssl
|
||||
HOSTAPD_LIBS += $(if $(BR2_STATIC_LIBS),-lcrypto -lz)
|
||||
HOSTAPD_CONFIG_EDITS += 's/\#\(CONFIG_TLS=openssl\)/\1/'
|
||||
else
|
||||
@@ -47,6 +45,11 @@ HOSTAPD_CONFIG_DISABLE += CONFIG_EAP_PWD
|
||||
HOSTAPD_CONFIG_EDITS += 's/\#\(CONFIG_TLS=\).*/\1internal/'
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_HOSTAPD_DRIVER_RTW),y)
|
||||
HOSTAPD_PATCH += https://github.com/pritambaral/hostapd-rtl871xdrv/raw/master/rtlxdrv.patch
|
||||
HOSTAPD_CONFIG_SET += CONFIG_DRIVER_RTW
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_HOSTAPD_ACS),y)
|
||||
HOSTAPD_CONFIG_ENABLE += CONFIG_ACS
|
||||
endif
|
||||
@@ -54,7 +57,7 @@ endif
|
||||
ifeq ($(BR2_PACKAGE_HOSTAPD_EAP),y)
|
||||
HOSTAPD_CONFIG_ENABLE += \
|
||||
CONFIG_EAP \
|
||||
CONFIG_RADIUS_SERVER \
|
||||
CONFIG_RADIUS_SERVER
|
||||
|
||||
# Enable both TLS v1.1 (CONFIG_TLSV11) and v1.2 (CONFIG_TLSV12)
|
||||
HOSTAPD_CONFIG_ENABLE += CONFIG_TLSV1
|
||||
@@ -69,6 +72,18 @@ ifeq ($(BR2_PACKAGE_HOSTAPD_WPS),y)
|
||||
HOSTAPD_CONFIG_ENABLE += CONFIG_WPS
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_HOSTAPD_VLAN),)
|
||||
HOSTAPD_CONFIG_ENABLE += CONFIG_NO_VLAN
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_HOSTAPD_VLAN_DYNAMIC),y)
|
||||
HOSTAPD_CONFIG_ENABLE += CONFIG_FULL_DYNAMIC_VLAN
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_HOSTAPD_VLAN_NETLINK),y)
|
||||
HOSTAPD_CONFIG_ENABLE += CONFIG_VLAN_NETLINK
|
||||
endif
|
||||
|
||||
define HOSTAPD_CONFIGURE_CMDS
|
||||
cp $(@D)/hostapd/defconfig $(HOSTAPD_CONFIG)
|
||||
sed -i $(patsubst %,-e 's/^#\(%\)/\1/',$(HOSTAPD_CONFIG_ENABLE)) \
|
||||
|
||||
Reference in New Issue
Block a user