From c6caab5e375eea99a87c78859a269cd63e44eed6 Mon Sep 17 00:00:00 2001 From: nico Date: Mon, 23 May 2005 06:43:34 +0000 Subject: Add wpa_supplicant package git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1023 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/wpa_supplicant/Config.in | 15 ++++++++ package/wpa_supplicant/Makefile | 40 ++++++++++++++++++++++ package/wpa_supplicant/files/config | 14 ++++++++ package/wpa_supplicant/ipkg/wpa-supplicant.control | 6 ++++ package/wpa_supplicant/patches/ldflags.patch | 24 +++++++++++++ package/wpa_supplicant/patches/opt_cflags.patch | 12 +++++++ 6 files changed, 111 insertions(+) create mode 100644 package/wpa_supplicant/Config.in create mode 100644 package/wpa_supplicant/Makefile create mode 100644 package/wpa_supplicant/files/config create mode 100644 package/wpa_supplicant/ipkg/wpa-supplicant.control create mode 100644 package/wpa_supplicant/patches/ldflags.patch create mode 100644 package/wpa_supplicant/patches/opt_cflags.patch (limited to 'package/wpa_supplicant') diff --git a/package/wpa_supplicant/Config.in b/package/wpa_supplicant/Config.in new file mode 100644 index 000000000..efff5832d --- /dev/null +++ b/package/wpa_supplicant/Config.in @@ -0,0 +1,15 @@ +config BR2_PACKAGE_WPA_SUPPLICANT + tristate "wpa_supplicant - WPA Supplicant with support for WPA and WPA2" + default m if CONFIG_DEVEL + select BR2_PACKAGE_LIBOPENSSL + help + + WPA Supplicant with support for WPA and WPA2 (IEEE 802.11i / RSN). + Supplicant is the IEEE 802.1X/WPA component that is used in the client + stations. It implements key negotiation with a WPA Authenticator and it + controls the roaming and IEEE 802.11 authentication/association. + + http://hostap.epitest.fi/wpa_supplicant/ + + Depends: openssl + diff --git a/package/wpa_supplicant/Makefile b/package/wpa_supplicant/Makefile new file mode 100644 index 000000000..3536508a7 --- /dev/null +++ b/package/wpa_supplicant/Makefile @@ -0,0 +1,40 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=wpa_supplicant +PKG_VERSION:=0.3.8 +PKG_RELEASE:=1 +PKG_MD5SUM:= + +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) + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,WPA_SUPPLICANT,wpa-supplicant,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +$(PKG_BUILD_DIR)/.configured: + cp -fp ./files/config $(PKG_BUILD_DIR)/.config + touch $@ + +$(PKG_BUILD_DIR)/.built: + $(MAKE) -C $(PKG_BUILD_DIR) \ + $(TARGET_CONFIGURE_OPTS) \ + CPPFLAGS="-I$(TOPDIR)/package/openwrt/include -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \ + LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ + OPT_FLAGS="$(TARGET_CFLAGS)" \ + KERNEL=$(LINUX_DIR) \ + all + touch $@ + +$(IPKG_WPA_SUPPLICANT): + install -m0755 -d $(IDIR_WPA_SUPPLICANT)/usr/sbin + install -m0755 $(PKG_BUILD_DIR)/wpa_cli $(IDIR_WPA_SUPPLICANT)/usr/sbin/ + install -m0755 $(PKG_BUILD_DIR)/wpa_passphrase $(IDIR_WPA_SUPPLICANT)/usr/sbin/ + install -m0755 $(PKG_BUILD_DIR)/wpa_supplicant $(IDIR_WPA_SUPPLICANT)/usr/sbin/ + $(RSTRIP) $(IDIR_WPA_SUPPLICANT) + $(IPKG_BUILD) $(IDIR_WPA_SUPPLICANT) $(PACKAGE_DIR) diff --git a/package/wpa_supplicant/files/config b/package/wpa_supplicant/files/config new file mode 100644 index 000000000..fe7d269da --- /dev/null +++ b/package/wpa_supplicant/files/config @@ -0,0 +1,14 @@ +# rather important +CONFIG_DRIVER_BROADCOM=y +CONFIG_IEEE8021X_EAPOL=y +CONFIG_CTRL_IFACE=y + +# default +CONFIG_EAP_PSK=y +CONFIG_EAP_MD5=y + +# optional +CONFIG_MSCHAPV2=y +CONFIG_EAP_TLS=y +CONFIG_EAP_PEAP=y +CONFIG_EAP_TTLS=y diff --git a/package/wpa_supplicant/ipkg/wpa-supplicant.control b/package/wpa_supplicant/ipkg/wpa-supplicant.control new file mode 100644 index 000000000..ec78d71b8 --- /dev/null +++ b/package/wpa_supplicant/ipkg/wpa-supplicant.control @@ -0,0 +1,6 @@ +Package: wpa-supplicant +Priority: optional +Section: net +Maintainer: Nico +Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/wpa_supplicant +Description: WPA Supplicant with support for WPA and WPA2 diff --git a/package/wpa_supplicant/patches/ldflags.patch b/package/wpa_supplicant/patches/ldflags.patch new file mode 100644 index 000000000..b8b6f6661 --- /dev/null +++ b/package/wpa_supplicant/patches/ldflags.patch @@ -0,0 +1,24 @@ +--- wpa_supplicant-0.3.8/Makefile.orig 2005-05-22 12:37:28.000000000 +0200 ++++ wpa_supplicant-0.3.8/Makefile 2005-05-22 12:40:04.000000000 +0200 +@@ -304,7 +304,7 @@ + OBJS += wpa_supplicant.o wpa.o l2_packet.o drivers.o + + wpa_supplicant: .config $(OBJS) +- $(CC) -o wpa_supplicant $(OBJS) $(LIBS) ++ $(CC) $(LDFLAGS) -o wpa_supplicant $(OBJS) $(LIBS) + + eapol_test: .config $(OBJS_t) + $(CC) -o eapol_test $(OBJS_t) $(LIBS) +@@ -313,10 +313,10 @@ + $(CC) -o preauth_test $(OBJS_t2) $(LIBS) + + wpa_passphrase: $(OBJS_p) +- $(CC) -o wpa_passphrase $(OBJS_p) $(LIBS_p) ++ $(CC) $(LDFLAGS) -o wpa_passphrase $(OBJS_p) $(LIBS_p) + + wpa_cli: $(OBJS_c) +- $(CC) -o wpa_cli $(OBJS_c) $(LIBS_c) ++ $(CC) $(LDFLAGS) -o wpa_cli $(OBJS_c) $(LIBS_c) + + win_if_list: win_if_list.c + $(CC) -o $@ win_if_list.c $(CFLAGS) $(LIBS_w) diff --git a/package/wpa_supplicant/patches/opt_cflags.patch b/package/wpa_supplicant/patches/opt_cflags.patch new file mode 100644 index 000000000..ec38b733e --- /dev/null +++ b/package/wpa_supplicant/patches/opt_cflags.patch @@ -0,0 +1,12 @@ +--- wpa_supplicant-0.3.8/Makefile.orig 2005-02-14 02:55:47.000000000 +0100 ++++ wpa_supplicant-0.3.8/Makefile 2005-05-21 21:06:03.000000000 +0200 +@@ -3,7 +3,8 @@ + endif + + ifndef CFLAGS +-CFLAGS = -MMD -O2 -Wall -g ++OPT_FLAGS = -O2 -g ++CFLAGS = -MMD $(OPT_FLAGS) -Wall + endif + + # Include directories for CVS version -- cgit v1.2.3