summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Samuelsson2007-08-28 23:09:23 +0200
committerUlf Samuelsson2007-08-28 23:09:23 +0200
commit25fca604f9a7d3bec25ce7d150212e18941aaadf (patch)
tree89d92cb3353910287074eb64354de33f68943e37
parentFix bad regexp in u-boot.mk (diff)
downloadbuildroot-25fca604f9a7d3bec25ce7d150212e18941aaadf.tar.gz
buildroot-25fca604f9a7d3bec25ce7d150212e18941aaadf.tar.xz
buildroot-25fca604f9a7d3bec25ce7d150212e18941aaadf.zip
Use correct hostap source, deprecate package due to inclusion in linux kernel
-rw-r--r--package/hostap/Config.in1
-rw-r--r--package/hostap/hostap.mk9
2 files changed, 8 insertions, 2 deletions
diff --git a/package/hostap/Config.in b/package/hostap/Config.in
index 2fc40af98..d64d100a5 100644
--- a/package/hostap/Config.in
+++ b/package/hostap/Config.in
@@ -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
diff --git a/package/hostap/hostap.mk b/package/hostap/hostap.mk
index 64259a766..7a092612e 100644
--- a/package/hostap/hostap.mk
+++ b/package/hostap/hostap.mk
@@ -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)