X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/43ccd557c1ba7142727506e1232518d176b0d8a1..56d7991b6076e383dd3a87947ad7bf789b0536a7:/package/wpa_supplicant/Makefile diff --git a/package/wpa_supplicant/Makefile b/package/wpa_supplicant/Makefile index b3fec0c12..4c8347fff 100644 --- a/package/wpa_supplicant/Makefile +++ b/package/wpa_supplicant/Makefile @@ -1,5 +1,5 @@ -# -# Copyright (C) 2006 OpenWrt.org +# +# Copyright (C) 2008 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,63 +9,79 @@ include $(TOPDIR)/rules.mk PKG_NAME:=wpa_supplicant -PKG_VERSION:=0.5.5 +PKG_VERSION:=0.6.3 PKG_RELEASE:=1 -PKG_MD5SUM:=482dd85949c82aa15309e5ab3d2cf5c3 +PKG_MD5SUM:=9e7b99da67c47d81121368c6d580d069 PKG_SOURCE_URL:=http://hostap.epitest.fi/releases PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_CAT:=zcat - -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) -PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install include $(INCLUDE_DIR)/package.mk +STAMP_CONFIGURED:=$(STAMP_CONFIGURED)_$(call confvar,CONFIG_PACKAGE_kmod-madwifi CONFIG_WPA_SUPPLICANT_NO_TIMESTAMP_CHECK) define Package/wpa-supplicant SECTION:=net CATEGORY:=Network - DEPENDS:=+libopenssl TITLE:=WPA Supplicant - DESCRIPTION:=WPA Supplicant URL:=http://hostap.epitest.fi/wpa_supplicant/ endef +define Package/wpa-supplicant/Description + WPA Supplicant +endef + +define Package/wpa-supplicant/config + config WPA_SUPPLICANT_NO_TIMESTAMP_CHECK + bool "Disable timestamp check" + depends PACKAGE_wpa-supplicant + default n + help + This disables the timestamp check for certificates in wpa_supplicant + Useful for devices without RTC that cannot reliably get the real date/time +endef + define Package/wpa-cli SECTION:=net CATEGORY:=Network DEPENDS:=wpa-supplicant TITLE:=WPA Supplicant command line interface - DESCRIPTION:= endef +define Package/wpa-cli/Description + WPA Supplicant control utility +endef + +CONFIG=$(firstword $(wildcard ./files/config.$(BOARD) ./files/config.$(ARCH) ./config)) +TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/madwifi $(if $(CONFIG_WPA_SUPPLICANT_NO_TIMESTAMP_CHECK),-DNO_TIMESTAMP_CHECK) define Build/Configure - cp ./files/config.$(ARCH) $(PKG_BUILD_DIR)/.config + cp $(CONFIG) $(PKG_BUILD_DIR)/wpa_supplicant/.config + $(if $(CONFIG_PACKAGE_kmod-madwifi),,$(SED) 's,^CONFIG_DRIVER_MADWIFI,#CONFIG_DRIVER_MADWIFI,g' $(PKG_BUILD_DIR)/wpa_supplicant/.config) endef define Build/Compile rm -rf $(PKG_INSTALL_DIR) mkdir -p $(PKG_INSTALL_DIR) - $(MAKE) -C $(PKG_BUILD_DIR) \ + CFLAGS="$(TARGET_CFLAGS)" \ + $(MAKE) -C $(PKG_BUILD_DIR)/wpa_supplicant \ CC="$(TARGET_CC)" \ KERNEL=$(LINUX_DIR) \ - CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \ - LDFLAGS=" -L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \ + CPPFLAGS="$(TARGET_CPPFLAGS)" \ + LDFLAGS="$(TARGET_LDFLAGS)" \ all - $(STRIP) $(PKG_BUILD_DIR)/wpa_supplicant - $(STRIP) $(PKG_BUILD_DIR)/wpa_cli - endef define Package/wpa-supplicant/install - install -m0755 -d $(1)/usr/sbin - $(CP) $(PKG_BUILD_DIR)/wpa_supplicant $(1)/usr/sbin/ + $(INSTALL_DIR) $(1)/usr/sbin + $(CP) \ + $(PKG_BUILD_DIR)/wpa_supplicant/wpa_supplicant \ + $(PKG_BUILD_DIR)/wpa_supplicant/wpa_passphrase \ + $(1)/usr/sbin/ endef define Package/wpa-cli/install - install -m0755 -d $(1)/usr/sbin + $(INSTALL_DIR) $(1)/usr/sbin $(CP) $(PKG_BUILD_DIR)/wpa_cli $(1)/usr/sbin/ endef