2009-03-09 21:28:40 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# wpa_supplicant
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
|
2012-05-14 11:46:21 +02:00
|
|
|
WPA_SUPPLICANT_VERSION = 1.0
|
2009-03-09 21:28:40 +01:00
|
|
|
WPA_SUPPLICANT_SITE = http://hostap.epitest.fi/releases
|
2012-09-12 02:32:30 +02:00
|
|
|
WPA_SUPPLICANT_LICENSE = GPLv2/BSD-3c
|
|
|
|
WPA_SUPPLICANT_LICENSE_FILES = README
|
2009-03-09 21:28:40 +01:00
|
|
|
WPA_SUPPLICANT_CONFIG = $(WPA_SUPPLICANT_DIR)/wpa_supplicant/.config
|
|
|
|
WPA_SUPPLICANT_SUBDIR = wpa_supplicant
|
2009-07-20 22:11:42 +02:00
|
|
|
WPA_SUPPLICANT_DBUS_SERVICE = fi.epitest.hostap.WPASupplicant
|
2012-05-14 11:46:21 +02:00
|
|
|
WPA_SUPPLICANT_CFLAGS = $(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include/libnl3/
|
|
|
|
WPA_SUPPLICANT_LDFLAGS = $(TARGET_LDFLAGS)
|
2009-03-09 21:28:40 +01:00
|
|
|
|
2010-01-19 19:07:54 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_LIBNL),y)
|
|
|
|
WPA_SUPPLICANT_DEPENDENCIES += libnl
|
2010-09-01 23:07:55 +02:00
|
|
|
define WPA_SUPPLICANT_LIBNL_CONFIG
|
2012-05-23 04:06:01 +02:00
|
|
|
echo 'CONFIG_LIBNL32=y' >>$(WPA_SUPPLICANT_CONFIG)
|
2010-09-01 23:07:55 +02:00
|
|
|
endef
|
2012-05-16 02:07:58 +02:00
|
|
|
else
|
|
|
|
define WPA_SUPPLICANT_LIBNL_CONFIG
|
2012-05-23 04:06:01 +02:00
|
|
|
$(SED) 's/^\(CONFIG_DRIVER_NL80211.*\)/#\1/' $(WPA_SUPPLICANT_CONFIG)
|
2012-05-16 02:07:58 +02:00
|
|
|
endef
|
2010-01-19 19:07:54 +01:00
|
|
|
endif
|
|
|
|
|
2012-05-23 04:06:01 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_EAP),y)
|
2010-10-06 19:35:20 +02:00
|
|
|
define WPA_SUPPLICANT_EAP_CONFIG
|
2012-05-23 04:06:01 +02:00
|
|
|
$(SED) 's/\(#\)\(CONFIG_EAP_AKA.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
|
|
|
$(SED) 's/\(#\)\(CONFIG_EAP_FAST.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
|
|
|
$(SED) 's/\(#\)\(CONFIG_EAP_GPSK.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
|
|
|
$(SED) 's/\(#\)\(CONFIG_EAP_IKEV2.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
|
|
|
$(SED) 's/\(#\)\(CONFIG_EAP_PAX.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
|
|
|
$(SED) 's/\(#\)\(CONFIG_EAP_PSK.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
|
|
|
$(SED) 's/\(#\)\(CONFIG_EAP_SAKE.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
|
|
|
$(SED) 's/\(#\)\(CONFIG_EAP_SIM.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
|
|
|
$(SED) 's/\(#\)\(CONFIG_EAP_TNC.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
|
|
|
endef
|
|
|
|
else
|
|
|
|
define WPA_SUPPLICANT_EAP_CONFIG
|
|
|
|
$(SED) 's/^\(CONFIG_EAP.*\)/#\1/' $(WPA_SUPPLICANT_CONFIG)
|
2010-09-01 23:07:55 +02:00
|
|
|
endef
|
2010-10-06 19:35:20 +02:00
|
|
|
endif
|
|
|
|
|
2011-12-05 13:33:18 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_AP_SUPPORT),y)
|
|
|
|
define WPA_SUPPLICANT_AP_CONFIG
|
2012-05-23 04:06:01 +02:00
|
|
|
echo 'CONFIG_AP=y' >>$(WPA_SUPPLICANT_CONFIG)
|
2011-12-05 13:33:18 +01:00
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2012-02-07 11:33:31 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_WPS),y)
|
|
|
|
define WPA_SUPPLICANT_WPS_CONFIG
|
2012-05-23 04:06:01 +02:00
|
|
|
$(SED) 's/\(#\)\(CONFIG_WPS.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
2012-02-07 11:33:31 +01:00
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2012-05-23 04:06:01 +02:00
|
|
|
define WPA_SUPPLICANT_LIBTOMMATH_CONFIG
|
|
|
|
$(SED) 's/\(#\)\(CONFIG_INTERNAL_LIBTOMMATH.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
2010-10-06 19:35:20 +02:00
|
|
|
endef
|
|
|
|
|
2012-05-14 11:46:21 +02:00
|
|
|
# Try to use openssl or gnutls if it's already available
|
2010-10-06 19:35:20 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
|
|
WPA_SUPPLICANT_DEPENDENCIES += openssl
|
|
|
|
define WPA_SUPPLICANT_TLS_CONFIG
|
2012-05-23 04:06:01 +02:00
|
|
|
$(SED) 's/\(#\)\(CONFIG_TLS=openssl\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
|
|
|
$(SED) 's/\(#\)\(CONFIG_EAP_PWD.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
2010-09-01 23:07:55 +02:00
|
|
|
endef
|
|
|
|
else
|
2012-05-14 11:46:21 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
|
|
|
WPA_SUPPLICANT_DEPENDENCIES += gnutls
|
|
|
|
define WPA_SUPPLICANT_TLS_CONFIG
|
2012-05-23 04:06:01 +02:00
|
|
|
$(SED) 's/\(#\)\(CONFIG_TLS=\).*/\2gnutls/' $(WPA_SUPPLICANT_CONFIG)
|
2012-05-14 11:46:21 +02:00
|
|
|
endef
|
|
|
|
else
|
2010-10-06 19:35:20 +02:00
|
|
|
define WPA_SUPPLICANT_TLS_CONFIG
|
2012-05-23 04:06:01 +02:00
|
|
|
$(SED) 's/\(#\)\(CONFIG_TLS=\).*/\2internal/' $(WPA_SUPPLICANT_CONFIG)
|
2010-09-01 23:07:55 +02:00
|
|
|
endef
|
|
|
|
endif
|
2012-05-14 11:46:21 +02:00
|
|
|
endif
|
2010-09-01 23:07:55 +02:00
|
|
|
|
2009-07-20 22:11:42 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_DBUS),y)
|
2009-10-27 23:16:44 +01:00
|
|
|
WPA_SUPPLICANT_DEPENDENCIES += host-pkg-config dbus
|
2009-10-05 10:30:31 +02:00
|
|
|
WPA_SUPPLICANT_MAKE_ENV = \
|
|
|
|
PKG_CONFIG_SYSROOT_DIR="$(STAGING_DIR)" \
|
|
|
|
PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig"
|
2010-09-01 23:07:55 +02:00
|
|
|
define WPA_SUPPLICANT_DBUS_CONFIG
|
2012-05-23 04:06:01 +02:00
|
|
|
$(SED) 's/\(#\)\(CONFIG_CTRL_IFACE_DBUS=\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
2010-09-01 23:07:55 +02:00
|
|
|
endef
|
2009-07-20 22:11:42 +02:00
|
|
|
endif
|
2009-03-09 21:28:40 +01:00
|
|
|
|
2010-09-01 23:07:55 +02:00
|
|
|
define WPA_SUPPLICANT_CONFIGURE_CMDS
|
|
|
|
cp $(@D)/wpa_supplicant/defconfig $(WPA_SUPPLICANT_CONFIG)
|
2012-05-23 04:06:01 +02:00
|
|
|
$(SED) 's/\(#\)\(CONFIG_IEEE80211N.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
|
|
|
$(SED) 's/\(#\)\(CONFIG_IEEE80211R.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
|
|
|
$(SED) 's/\(#\)\(CONFIG_INTERWORKING.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
|
|
|
$(SED) 's/\(#\)\(CONFIG_DELAYED_MIC.*\)/\2/' $(WPA_SUPPLICANT_CONFIG)
|
|
|
|
$(SED) 's/\(CONFIG_DRIVER_ATMEL\)/#\1/' $(WPA_SUPPLICANT_CONFIG)
|
|
|
|
$(SED) 's/\(CONFIG_SMARTCARD\)/#\1/' $(WPA_SUPPLICANT_CONFIG)
|
|
|
|
$(WPA_SUPPLICANT_LIBTOMMATH_CONFIG)
|
2010-10-06 19:35:20 +02:00
|
|
|
$(WPA_SUPPLICANT_TLS_CONFIG)
|
|
|
|
$(WPA_SUPPLICANT_EAP_CONFIG)
|
2012-02-07 11:33:31 +01:00
|
|
|
$(WPA_SUPPLICANT_WPS_CONFIG)
|
2010-09-01 23:07:55 +02:00
|
|
|
$(WPA_SUPPLICANT_LIBNL_CONFIG)
|
|
|
|
$(WPA_SUPPLICANT_DBUS_CONFIG)
|
2011-12-05 13:33:18 +01:00
|
|
|
$(WPA_SUPPLICANT_AP_CONFIG)
|
2010-09-01 23:07:55 +02:00
|
|
|
endef
|
2009-03-09 21:28:40 +01:00
|
|
|
|
2012-05-14 11:46:21 +02:00
|
|
|
define WPA_SUPPLICANT_BUILD_CMDS
|
|
|
|
$(TARGET_MAKE_ENV) CFLAGS="$(WPA_SUPPLICANT_CFLAGS)" \
|
|
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
|
|
|
$(MAKE) CC="$(TARGET_CC)" -C $(@D)/$(WPA_SUPPLICANT_SUBDIR)
|
2010-09-01 23:07:55 +02:00
|
|
|
endef
|
|
|
|
|
2012-05-14 11:46:21 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_CLI),y)
|
|
|
|
define WPA_SUPPLICANT_INSTALL_CLI
|
|
|
|
$(INSTALL) -m 0755 -D $(@D)/$(WPA_SUPPLICANT_SUBDIR)/wpa_cli \
|
|
|
|
$(TARGET_DIR)/usr/sbin/wpa_cli
|
|
|
|
endef
|
2009-03-09 21:28:40 +01:00
|
|
|
endif
|
2010-09-01 23:07:55 +02:00
|
|
|
|
2012-05-14 11:46:21 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE),y)
|
|
|
|
define WPA_SUPPLICANT_INSTALL_PASSPHRASE
|
|
|
|
$(INSTALL) -m 0755 -D $(@D)/$(WPA_SUPPLICANT_SUBDIR)/wpa_passphrase \
|
|
|
|
$(TARGET_DIR)/usr/sbin/wpa_passphrase
|
2010-09-01 23:07:55 +02:00
|
|
|
endef
|
2009-03-09 21:28:40 +01:00
|
|
|
endif
|
2010-09-01 23:07:55 +02:00
|
|
|
|
2012-05-14 11:46:21 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_DBUS),y)
|
2010-09-01 23:07:55 +02:00
|
|
|
define WPA_SUPPLICANT_INSTALL_DBUS
|
2009-07-20 22:11:42 +02:00
|
|
|
$(INSTALL) -D \
|
2010-10-19 09:45:48 +02:00
|
|
|
$(@D)/wpa_supplicant/dbus/dbus-wpa_supplicant.conf \
|
2009-07-20 22:11:42 +02:00
|
|
|
$(TARGET_DIR)/etc/dbus-1/system.d/wpa_supplicant.conf
|
|
|
|
$(INSTALL) -D \
|
2010-10-19 09:45:48 +02:00
|
|
|
$(@D)/wpa_supplicant/dbus/$(WPA_SUPPLICANT_DBUS_SERVICE).service \
|
2009-07-20 22:11:42 +02:00
|
|
|
$(TARGET_DIR)/usr/share/dbus-1/system-services/$(WPA_SUPPLICANT_DBUS_SERVICE).service
|
2010-09-01 23:07:55 +02:00
|
|
|
endef
|
2009-07-20 22:11:42 +02:00
|
|
|
endif
|
2009-03-09 21:28:40 +01:00
|
|
|
|
2012-05-14 11:46:21 +02:00
|
|
|
define WPA_SUPPLICANT_INSTALL_TARGET_CMDS
|
|
|
|
$(INSTALL) -m 0755 -D $(@D)/$(WPA_SUPPLICANT_SUBDIR)/wpa_supplicant \
|
|
|
|
$(TARGET_DIR)/usr/sbin/wpa_supplicant
|
|
|
|
$(INSTALL) -m 644 -D package/wpa_supplicant/wpa_supplicant.conf \
|
|
|
|
$(TARGET_DIR)/etc/wpa_supplicant.conf
|
|
|
|
$(WPA_SUPPLICANT_INSTALL_CLI)
|
|
|
|
$(WPA_SUPPLICANT_INSTALL_PASSPHRASE)
|
|
|
|
$(WPA_SUPPLICANT_INSTALL_DBUS)
|
2010-09-01 23:07:55 +02:00
|
|
|
endef
|
2009-03-09 21:28:40 +01:00
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(generic-package))
|