From bcce58140c1809255bab3a4f365c3afa359bad4a Mon Sep 17 00:00:00 2001 From: nico Date: Sun, 13 Nov 2005 17:59:26 +0000 Subject: add hostap-utils package (closes: #50) git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2473 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/hostap-utils/Config.in | 9 ++++++ package/hostap-utils/Makefile | 45 ++++++++++++++++++++++++++ package/hostap-utils/ipkg/hostap-utils.control | 5 +++ 3 files changed, 59 insertions(+) create mode 100644 package/hostap-utils/Config.in create mode 100644 package/hostap-utils/Makefile create mode 100644 package/hostap-utils/ipkg/hostap-utils.control (limited to 'package/hostap-utils') diff --git a/package/hostap-utils/Config.in b/package/hostap-utils/Config.in new file mode 100644 index 000000000..71a9f2235 --- /dev/null +++ b/package/hostap-utils/Config.in @@ -0,0 +1,9 @@ +config BR2_PACKAGE_HOSTAP_UTILS + prompt "hostap-utils...................... Host AP driver utility programs" + tristate + default m if CONFIG_DEVEL + help + Host AP driver utility programs + + http://hostap.epitest.fi/ + diff --git a/package/hostap-utils/Makefile b/package/hostap-utils/Makefile new file mode 100644 index 000000000..37be5d1fd --- /dev/null +++ b/package/hostap-utils/Makefile @@ -0,0 +1,45 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=hostap-utils +PKG_VERSION:=0.4.0 +PKG_RELEASE:=1 +PKG_MD5SUM:=c6775ca98721affeb336392def22289e + +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 $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,HOSTAP_UTILS,hostap-utils,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +$(PKG_BUILD_DIR)/.configured: + touch $@ + +$(PKG_BUILD_DIR)/.built: + $(MAKE) -C $(PKG_BUILD_DIR) \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include -Wall" \ + all + touch $@ + +$(IPKG_HOSTAP_UTILS): + install -m0755 -d $(IDIR_HOSTAP_UTILS)/usr/sbin + install -m0755 $(PKG_BUILD_DIR)/hostap_crypt_conf $(IDIR_HOSTAP_UTILS)/usr/sbin/ + install -m0755 $(PKG_BUILD_DIR)/hostap_diag $(IDIR_HOSTAP_UTILS)/usr/sbin/ + install -m0755 $(PKG_BUILD_DIR)/hostap_io_debug $(IDIR_HOSTAP_UTILS)/usr/sbin/ + install -m0755 $(PKG_BUILD_DIR)/hostap_rid $(IDIR_HOSTAP_UTILS)/usr/sbin/ + install -m0755 $(PKG_BUILD_DIR)/prism2_srec $(IDIR_HOSTAP_UTILS)/usr/sbin/ + install -m0755 $(PKG_BUILD_DIR)/split_combined_hex $(IDIR_HOSTAP_UTILS)/usr/sbin/ + $(RSTRIP) $(IDIR_HOSTAP_UTILS) + $(IPKG_BUILD) $(IDIR_HOSTAP_UTILS) $(PACKAGE_DIR) + +mostlyclean: + -$(MAKE) -C $(PKG_BUILD_DIR) clean + rm -f $(PKG_BUILD_DIR)/.built + diff --git a/package/hostap-utils/ipkg/hostap-utils.control b/package/hostap-utils/ipkg/hostap-utils.control new file mode 100644 index 000000000..c7e1270cb --- /dev/null +++ b/package/hostap-utils/ipkg/hostap-utils.control @@ -0,0 +1,5 @@ +Package: hostap-utils +Priority: optional +Section: net +Depends: +Description: Host AP driver utility programs -- cgit v1.2.3 From 71f9fcb56a065722f750ecc75bc83318e1c3c648 Mon Sep 17 00:00:00 2001 From: nico Date: Tue, 22 Nov 2005 03:11:32 +0000 Subject: update hostap-utils to new upstream stable release (v0.4.7) git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2543 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/hostap-utils/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'package/hostap-utils') diff --git a/package/hostap-utils/Makefile b/package/hostap-utils/Makefile index 37be5d1fd..3833504f6 100644 --- a/package/hostap-utils/Makefile +++ b/package/hostap-utils/Makefile @@ -3,9 +3,9 @@ include $(TOPDIR)/rules.mk PKG_NAME:=hostap-utils -PKG_VERSION:=0.4.0 +PKG_VERSION:=0.4.7 PKG_RELEASE:=1 -PKG_MD5SUM:=c6775ca98721affeb336392def22289e +PKG_MD5SUM:=afe041581b8f01666e353bec20917c85 PKG_SOURCE_URL:=http://hostap.epitest.fi/releases/ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -- cgit v1.2.3 From f15908485431a65bd7d9317272ef28e4b700a19d Mon Sep 17 00:00:00 2001 From: nico Date: Mon, 12 Dec 2005 04:03:48 +0000 Subject: adjust svn properties: add missing "svn:keywords" for Makefiles, set "svn:eol-style" to LF and remove "svn:keywords" for Config.in and ipkg/* files git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2638 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/hostap-utils/Config.in | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'package/hostap-utils') diff --git a/package/hostap-utils/Config.in b/package/hostap-utils/Config.in index 71a9f2235..d2a9f0634 100644 --- a/package/hostap-utils/Config.in +++ b/package/hostap-utils/Config.in @@ -1,9 +1,9 @@ -config BR2_PACKAGE_HOSTAP_UTILS - prompt "hostap-utils...................... Host AP driver utility programs" - tristate - default m if CONFIG_DEVEL - help - Host AP driver utility programs - - http://hostap.epitest.fi/ - +config BR2_PACKAGE_HOSTAP_UTILS + prompt "hostap-utils...................... Host AP driver utility programs" + tristate + default m if CONFIG_DEVEL + help + Host AP driver utility programs + + http://hostap.epitest.fi/ + -- cgit v1.2.3 From 737022a15e9e7b872ffd8220604f29c6e4bc399d Mon Sep 17 00:00:00 2001 From: nbd Date: Thu, 13 Apr 2006 22:20:15 +0000 Subject: remove lots of non-essential packages git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3641 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/hostap-utils/Config.in | 9 ------ package/hostap-utils/Makefile | 45 -------------------------- package/hostap-utils/ipkg/hostap-utils.control | 5 --- 3 files changed, 59 deletions(-) delete mode 100644 package/hostap-utils/Config.in delete mode 100644 package/hostap-utils/Makefile delete mode 100644 package/hostap-utils/ipkg/hostap-utils.control (limited to 'package/hostap-utils') diff --git a/package/hostap-utils/Config.in b/package/hostap-utils/Config.in deleted file mode 100644 index d2a9f0634..000000000 --- a/package/hostap-utils/Config.in +++ /dev/null @@ -1,9 +0,0 @@ -config BR2_PACKAGE_HOSTAP_UTILS - prompt "hostap-utils...................... Host AP driver utility programs" - tristate - default m if CONFIG_DEVEL - help - Host AP driver utility programs - - http://hostap.epitest.fi/ - diff --git a/package/hostap-utils/Makefile b/package/hostap-utils/Makefile deleted file mode 100644 index 3833504f6..000000000 --- a/package/hostap-utils/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# $Id$ - -include $(TOPDIR)/rules.mk - -PKG_NAME:=hostap-utils -PKG_VERSION:=0.4.7 -PKG_RELEASE:=1 -PKG_MD5SUM:=afe041581b8f01666e353bec20917c85 - -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 $(TOPDIR)/package/rules.mk - -$(eval $(call PKG_template,HOSTAP_UTILS,hostap-utils,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) - -$(PKG_BUILD_DIR)/.configured: - touch $@ - -$(PKG_BUILD_DIR)/.built: - $(MAKE) -C $(PKG_BUILD_DIR) \ - $(TARGET_CONFIGURE_OPTS) \ - CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include -Wall" \ - all - touch $@ - -$(IPKG_HOSTAP_UTILS): - install -m0755 -d $(IDIR_HOSTAP_UTILS)/usr/sbin - install -m0755 $(PKG_BUILD_DIR)/hostap_crypt_conf $(IDIR_HOSTAP_UTILS)/usr/sbin/ - install -m0755 $(PKG_BUILD_DIR)/hostap_diag $(IDIR_HOSTAP_UTILS)/usr/sbin/ - install -m0755 $(PKG_BUILD_DIR)/hostap_io_debug $(IDIR_HOSTAP_UTILS)/usr/sbin/ - install -m0755 $(PKG_BUILD_DIR)/hostap_rid $(IDIR_HOSTAP_UTILS)/usr/sbin/ - install -m0755 $(PKG_BUILD_DIR)/prism2_srec $(IDIR_HOSTAP_UTILS)/usr/sbin/ - install -m0755 $(PKG_BUILD_DIR)/split_combined_hex $(IDIR_HOSTAP_UTILS)/usr/sbin/ - $(RSTRIP) $(IDIR_HOSTAP_UTILS) - $(IPKG_BUILD) $(IDIR_HOSTAP_UTILS) $(PACKAGE_DIR) - -mostlyclean: - -$(MAKE) -C $(PKG_BUILD_DIR) clean - rm -f $(PKG_BUILD_DIR)/.built - diff --git a/package/hostap-utils/ipkg/hostap-utils.control b/package/hostap-utils/ipkg/hostap-utils.control deleted file mode 100644 index c7e1270cb..000000000 --- a/package/hostap-utils/ipkg/hostap-utils.control +++ /dev/null @@ -1,5 +0,0 @@ -Package: hostap-utils -Priority: optional -Section: net -Depends: -Description: Host AP driver utility programs -- cgit v1.2.3 From 812c57251d46d48385290ba17cdf31d3ce5146f6 Mon Sep 17 00:00:00 2001 From: florian Date: Wed, 2 Aug 2006 09:03:12 +0000 Subject: Port hostap-utils to -ng git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4390 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/hostap-utils/Makefile | 51 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 package/hostap-utils/Makefile (limited to 'package/hostap-utils') diff --git a/package/hostap-utils/Makefile b/package/hostap-utils/Makefile new file mode 100644 index 000000000..3987ac5ca --- /dev/null +++ b/package/hostap-utils/Makefile @@ -0,0 +1,51 @@ +# Copyright (C) 2006 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=hostap-utils +PKG_VERSION:=0.4.7 +PKG_RELEASE:=1 +PKG_MD5SUM:=afe041581b8f01666e353bec20917c85 + +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 + +define Package/hostap-utils + SECTION:=utils + CATEGORY:=Utilities + DEPENDS:=+hostap + TITLE:=Host AP driver utility programs + DESCRIPTION:=Host AP driver utility programs + URL:=http://hostap.epitest.fi/ +endef + + +define Build/Compile + $(MAKE) -C $(PKG_BUILD_DIR) \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include -Wall" \ + all +endef + +define Package/hostap-utils/install + install -m0755 -d $(1)/usr/sbin + install -m0755 $(PKG_BUILD_DIR)/hostap_crypt_conf $(1)/usr/sbin/ + install -m0755 $(PKG_BUILD_DIR)/hostap_diag $(1)/usr/sbin/ + install -m0755 $(PKG_BUILD_DIR)/hostap_io_debug $(1)/usr/sbin/ + install -m0755 $(PKG_BUILD_DIR)/hostap_rid $(1)/usr/sbin/ + install -m0755 $(PKG_BUILD_DIR)/prism2_srec $(1)/usr/sbin/ + install -m0755 $(PKG_BUILD_DIR)/split_combined_hex $(1)/usr/sbin/ +endef + +$(eval $(call BuildPackage,hostap-utils)) -- cgit v1.2.3 From f870289fee0a95b0fb0bdc7e176d5378d8262c98 Mon Sep 17 00:00:00 2001 From: nbd Date: Wed, 2 Aug 2006 14:14:40 +0000 Subject: fix dependency git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4399 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/hostap-utils/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package/hostap-utils') diff --git a/package/hostap-utils/Makefile b/package/hostap-utils/Makefile index 3987ac5ca..f2e70efa5 100644 --- a/package/hostap-utils/Makefile +++ b/package/hostap-utils/Makefile @@ -24,7 +24,7 @@ include $(INCLUDE_DIR)/package.mk define Package/hostap-utils SECTION:=utils CATEGORY:=Utilities - DEPENDS:=+hostap + DEPENDS:=+kmod-hostap TITLE:=Host AP driver utility programs DESCRIPTION:=Host AP driver utility programs URL:=http://hostap.epitest.fi/ -- cgit v1.2.3 From 311c661ec97273df24d2ede1c65101942ba001f6 Mon Sep 17 00:00:00 2001 From: nbd Date: Fri, 4 Aug 2006 20:11:55 +0000 Subject: fix hostap menuconfig and build for linux 2.6 git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4448 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/hostap-utils/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'package/hostap-utils') diff --git a/package/hostap-utils/Makefile b/package/hostap-utils/Makefile index f2e70efa5..d1f791476 100644 --- a/package/hostap-utils/Makefile +++ b/package/hostap-utils/Makefile @@ -23,8 +23,8 @@ include $(INCLUDE_DIR)/package.mk define Package/hostap-utils SECTION:=utils - CATEGORY:=Utilities - DEPENDS:=+kmod-hostap + CATEGORY:=Drivers + DEPENDS:=kmod-hostap TITLE:=Host AP driver utility programs DESCRIPTION:=Host AP driver utility programs URL:=http://hostap.epitest.fi/ -- cgit v1.2.3 From 93f14ce27eb1b0feeca985a90952c5fd0f005471 Mon Sep 17 00:00:00 2001 From: nico Date: Sat, 23 Sep 2006 19:34:15 +0000 Subject: standardize Makefile, remove dup description git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4846 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/hostap-utils/Makefile | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'package/hostap-utils') diff --git a/package/hostap-utils/Makefile b/package/hostap-utils/Makefile index d1f791476..b794ad0d1 100644 --- a/package/hostap-utils/Makefile +++ b/package/hostap-utils/Makefile @@ -10,27 +10,23 @@ include $(TOPDIR)/rules.mk PKG_NAME:=hostap-utils PKG_VERSION:=0.4.7 PKG_RELEASE:=1 -PKG_MD5SUM:=afe041581b8f01666e353bec20917c85 -PKG_SOURCE_URL:=http://hostap.epitest.fi/releases/ +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://hostap.epitest.fi/releases/ +PKG_MD5SUM:=afe041581b8f01666e353bec20917c85 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 define Package/hostap-utils SECTION:=utils - CATEGORY:=Drivers + CATEGORY:=Kernel drivers DEPENDS:=kmod-hostap TITLE:=Host AP driver utility programs - DESCRIPTION:=Host AP driver utility programs URL:=http://hostap.epitest.fi/ endef - define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ $(TARGET_CONFIGURE_OPTS) \ -- cgit v1.2.3 From 8afb23270d23db6a033ba8fb77e1cf1a1d925a7c Mon Sep 17 00:00:00 2001 From: nico Date: Sun, 24 Sep 2006 20:49:31 +0000 Subject: new (last?) attempt at standardizing Makefiles git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4855 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/hostap-utils/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'package/hostap-utils') diff --git a/package/hostap-utils/Makefile b/package/hostap-utils/Makefile index b794ad0d1..ad142f33d 100644 --- a/package/hostap-utils/Makefile +++ b/package/hostap-utils/Makefile @@ -11,12 +11,13 @@ PKG_NAME:=hostap-utils PKG_VERSION:=0.4.7 PKG_RELEASE:=1 -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://hostap.epitest.fi/releases/ PKG_MD5SUM:=afe041581b8f01666e353bec20917c85 PKG_CAT:=zcat +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + include $(INCLUDE_DIR)/package.mk define Package/hostap-utils -- cgit v1.2.3