Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] svn commit: trunk/buildroot/package/hostap
@ 2007-08-28 21:09 ulf at uclibc.org
  0 siblings, 0 replies; 8+ messages in thread
From: ulf at uclibc.org @ 2007-08-28 21:09 UTC (permalink / raw)
  To: buildroot

Author: ulf
Date: 2007-08-28 14:09:23 -0700 (Tue, 28 Aug 2007)
New Revision: 19722

Log:
Use correct hostap source, deprecate package due to inclusion in linux kernel

Modified:
   trunk/buildroot/package/hostap/Config.in
   trunk/buildroot/package/hostap/hostap.mk


Changeset:
Modified: trunk/buildroot/package/hostap/Config.in
===================================================================
--- trunk/buildroot/package/hostap/Config.in	2007-08-28 21:07:32 UTC (rev 19721)
+++ trunk/buildroot/package/hostap/Config.in	2007-08-28 21:09:23 UTC (rev 19722)
@@ -1,6 +1,7 @@
 config BR2_PACKAGE_HOSTAP
 	bool "hostap"
 	default n
+	depends on BR2_DEPRECATED
 	select BR2_PACKAGE_PCMCIA
 	help
 	  Linux driver for wireless LAN cards based on Intersil's 

Modified: trunk/buildroot/package/hostap/hostap.mk
===================================================================
--- trunk/buildroot/package/hostap/hostap.mk	2007-08-28 21:07:32 UTC (rev 19721)
+++ trunk/buildroot/package/hostap/hostap.mk	2007-08-28 21:09:23 UTC (rev 19722)
@@ -1,10 +1,15 @@
 #############################################################
 #
 # hostap
+# 
+# Note! Host AP driver was added into the main kernel tree in Linux v2.6.14. 
+# The version in the kernel tree should be used instead of this external hostap-driver package. 
+# The external releases are only for older kernel versions and all
+# the future development will be in the main kernel tree.
 #
 #############################################################
-HOSTAP_VERSION=0.5.8
-HOSTAP_SOURCE=hostapd-$(HOSTAP_VERSION).tar.gz
+HOSTAP_VERSION=0.4.9
+HOSTAP_SOURCE=hostap-driver-$(HOSTAP_VERSION).tar.gz
 HOSTAP_SITE=http://hostap.epitest.fi/releases
 HOSTAP_DIR=$(BUILD_DIR)/hostapd-$(HOSTAP_VERSION)
 

^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/hostap
@ 2007-07-09  4:59 ulf at uclibc.org
  2007-07-09  8:18 ` Cristian Ionescu-Idbohrn
  0 siblings, 1 reply; 8+ messages in thread
From: ulf at uclibc.org @ 2007-07-09  4:59 UTC (permalink / raw)
  To: buildroot

Author: ulf
Date: 2007-07-08 21:59:45 -0700 (Sun, 08 Jul 2007)
New Revision: 19051

Log:
WGET_NOSPIDERS is not defined, use WGET for now

Modified:
   trunk/buildroot/package/hostap/hostap.mk


Changeset:
Modified: trunk/buildroot/package/hostap/hostap.mk
===================================================================
--- trunk/buildroot/package/hostap/hostap.mk	2007-07-09 04:40:53 UTC (rev 19050)
+++ trunk/buildroot/package/hostap/hostap.mk	2007-07-09 04:59:45 UTC (rev 19051)
@@ -9,7 +9,7 @@
 HOSTAP_DIR=$(BUILD_DIR)/hostapd-$(HOSTAP_VERSION)
 
 $(DL_DIR)/$(HOSTAP_SOURCE):
-	$(WGET_NOSPIDERS) -P $(DL_DIR) $(HOSTAP_SITE)/$(HOSTAP_SOURCE)
+	$(WGET) -P $(DL_DIR) $(HOSTAP_SITE)/$(HOSTAP_SOURCE)
 
 hostap-source: $(DL_DIR)/$(HOSTAP_SOURCE)
 

^ permalink raw reply	[flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/hostap
@ 2007-07-09  4:40 ulf at uclibc.org
  0 siblings, 0 replies; 8+ messages in thread
From: ulf at uclibc.org @ 2007-07-09  4:40 UTC (permalink / raw)
  To: buildroot

Author: ulf
Date: 2007-07-08 21:40:53 -0700 (Sun, 08 Jul 2007)
New Revision: 19050

Log:
Use hostap release version instead of snapshot

Modified:
   trunk/buildroot/package/hostap/hostap.mk


Changeset:
Modified: trunk/buildroot/package/hostap/hostap.mk
===================================================================
--- trunk/buildroot/package/hostap/hostap.mk	2007-07-09 04:29:35 UTC (rev 19049)
+++ trunk/buildroot/package/hostap/hostap.mk	2007-07-09 04:40:53 UTC (rev 19050)
@@ -3,12 +3,13 @@
 # hostap
 #
 #############################################################
-HOSTAP_SOURCE_URL=http://hostap.epitest.fi/cgi-bin/viewcvs.cgi/hostap/hostap.tar.gz?tarball=1
-HOSTAP_SOURCE=hostap.tar.gz
-HOSTAP_DIR=$(BUILD_DIR)/hostap-snapshot
+HOSTAP_VERSION=0.5.8
+HOSTAP_SOURCE=hostapd-$(HOSTAP_VERSION).tar.gz
+HOSTAP_SITE=http://hostap.epitest.fi/releases
+HOSTAP_DIR=$(BUILD_DIR)/hostapd-$(HOSTAP_VERSION)
 
 $(DL_DIR)/$(HOSTAP_SOURCE):
-	$(WGET) -P $(DL_DIR) $(HOSTAP_SOURCE_URL) -O $(DL_DIR)/$(HOSTAP_SOURCE)
+	$(WGET_NOSPIDERS) -P $(DL_DIR) $(HOSTAP_SITE)/$(HOSTAP_SOURCE)
 
 hostap-source: $(DL_DIR)/$(HOSTAP_SOURCE)
 

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2007-08-28 21:09 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-28 21:09 [Buildroot] svn commit: trunk/buildroot/package/hostap ulf at uclibc.org
  -- strict thread matches above, loose matches on Subject: below --
2007-07-09  4:59 ulf at uclibc.org
2007-07-09  8:18 ` Cristian Ionescu-Idbohrn
2007-07-09  9:13   ` Bernhard Fischer
2007-07-09  9:32     ` Cristian Ionescu-Idbohrn
2007-07-09  9:40       ` Bernhard Fischer
2007-07-09 10:01         ` Cristian Ionescu-Idbohrn
2007-07-09  4:40 ulf at uclibc.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox