mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 14:34:27 -05:00 
			
		
		
		
	hostapd: enable EAP-pwd support only for the SSL variants
The internal hostapd version cannot be built with EAP-pwd support, so
enable it only for the SSL variants.
Fixes: #17163
Fixes: 6365316fab ("hostapd: add ubus support for wired driver")
Link: https://github.com/openwrt/openwrt/pull/17164
Signed-off-by: Robert Marko <robimarko@gmail.com>
			
			
This commit is contained in:
		
							parent
							
								
									a9ff3ba24b
								
							
						
					
					
						commit
						d92d14c64c
					
				@ -5,7 +5,7 @@
 | 
			
		||||
include $(TOPDIR)/rules.mk
 | 
			
		||||
 | 
			
		||||
PKG_NAME:=hostapd
 | 
			
		||||
PKG_RELEASE:=1
 | 
			
		||||
PKG_RELEASE:=2
 | 
			
		||||
 | 
			
		||||
PKG_SOURCE_URL:=https://w1.fi/hostap.git
 | 
			
		||||
PKG_SOURCE_PROTO:=git
 | 
			
		||||
@ -110,7 +110,7 @@ ifeq ($(SSL_VARIANT),openssl)
 | 
			
		||||
    DRIVER_MAKEOPTS += CONFIG_AP=y CONFIG_MESH=y
 | 
			
		||||
  endif
 | 
			
		||||
  ifeq ($(LOCAL_VARIANT),full)
 | 
			
		||||
    DRIVER_MAKEOPTS += CONFIG_OWE=y CONFIG_SUITEB192=y CONFIG_AP=y CONFIG_MESH=y
 | 
			
		||||
    DRIVER_MAKEOPTS += CONFIG_OWE=y CONFIG_SUITEB192=y CONFIG_AP=y CONFIG_MESH=y CONFIG_EAP_PWD=y
 | 
			
		||||
  endif
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
@ -125,7 +125,7 @@ ifeq ($(SSL_VARIANT),wolfssl)
 | 
			
		||||
    DRIVER_MAKEOPTS += CONFIG_AP=y CONFIG_MESH=y CONFIG_WPS_NFC=1
 | 
			
		||||
  endif
 | 
			
		||||
  ifeq ($(LOCAL_VARIANT),full)
 | 
			
		||||
    DRIVER_MAKEOPTS += CONFIG_OWE=y CONFIG_SUITEB192=y CONFIG_AP=y CONFIG_MESH=y CONFIG_WPS_NFC=1
 | 
			
		||||
    DRIVER_MAKEOPTS += CONFIG_OWE=y CONFIG_SUITEB192=y CONFIG_AP=y CONFIG_MESH=y CONFIG_WPS_NFC=1 CONFIG_EAP_PWD=y
 | 
			
		||||
  endif
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
@ -140,7 +140,7 @@ ifeq ($(SSL_VARIANT),mbedtls)
 | 
			
		||||
    DRIVER_MAKEOPTS += CONFIG_AP=y CONFIG_MESH=y CONFIG_WPS_NFC=1
 | 
			
		||||
  endif
 | 
			
		||||
  ifeq ($(LOCAL_VARIANT),full)
 | 
			
		||||
    DRIVER_MAKEOPTS += CONFIG_OWE=y CONFIG_SUITEB192=y CONFIG_AP=y CONFIG_MESH=y CONFIG_WPS_NFC=1
 | 
			
		||||
    DRIVER_MAKEOPTS += CONFIG_OWE=y CONFIG_SUITEB192=y CONFIG_AP=y CONFIG_MESH=y CONFIG_WPS_NFC=1 CONFIG_EAP_PWD=y
 | 
			
		||||
  endif
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -97,7 +97,7 @@ CONFIG_EAP_TTLS=y
 | 
			
		||||
CONFIG_EAP_PSK=y
 | 
			
		||||
 | 
			
		||||
# EAP-pwd for the integrated EAP server (secure authentication with a password)
 | 
			
		||||
CONFIG_EAP_PWD=y
 | 
			
		||||
#CONFIG_EAP_PWD=y
 | 
			
		||||
 | 
			
		||||
# EAP-SAKE for the integrated EAP server
 | 
			
		||||
#CONFIG_EAP_SAKE=y
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user