summaryrefslogtreecommitdiffstats
path: root/package/hostapd
diff options
context:
space:
mode:
authormb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-02-16 19:01:59 +0000
committermb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-02-16 19:01:59 +0000
commit7e3fc30d82945cbf30b82d125e4328692990b4cb (patch)
treed6e6199e333d0a8c32786c74d5a8ee21b7fdf7bf /package/hostapd
parent67a3aa6b3969d1d1c584598169ffbb5e4ba689cb (diff)
Enable nl80211 support in hostapd.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10470 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/hostapd')
-rw-r--r--package/hostapd/patches/007-add-nl80211-driver.patch28
1 files changed, 26 insertions, 2 deletions
diff --git a/package/hostapd/patches/007-add-nl80211-driver.patch b/package/hostapd/patches/007-add-nl80211-driver.patch
index 538890c3e..6c450fcda 100644
--- a/package/hostapd/patches/007-add-nl80211-driver.patch
+++ b/package/hostapd/patches/007-add-nl80211-driver.patch
@@ -1,7 +1,7 @@
Index: hostapd-20071107_03ec0ec5cdb974d51a4a2a566bea4c4568138576/hostapd/Makefile
===================================================================
---- hostapd-20071107_03ec0ec5cdb974d51a4a2a566bea4c4568138576.orig/hostapd/Makefile 2007-11-16 05:08:24.000000000 +0100
-+++ hostapd-20071107_03ec0ec5cdb974d51a4a2a566bea4c4568138576/hostapd/Makefile 2008-02-16 19:38:51.000000000 +0100
+--- hostapd-20071107_03ec0ec5cdb974d51a4a2a566bea4c4568138576.orig/hostapd/Makefile 2008-02-16 19:44:22.000000000 +0100
++++ hostapd-20071107_03ec0ec5cdb974d51a4a2a566bea4c4568138576/hostapd/Makefile 2008-02-16 19:44:34.000000000 +0100
@@ -121,6 +121,12 @@ OBJS += driver_devicescape.o
LIBS += -lnl
endif
@@ -15,3 +15,27 @@ Index: hostapd-20071107_03ec0ec5cdb974d51a4a2a566bea4c4568138576/hostapd/Makefil
ifdef CONFIG_DRIVER_BSD
CFLAGS += -DCONFIG_DRIVER_BSD
OBJS += driver_bsd.o
+Index: hostapd-20071107_03ec0ec5cdb974d51a4a2a566bea4c4568138576/hostapd/drivers.c
+===================================================================
+--- hostapd-20071107_03ec0ec5cdb974d51a4a2a566bea4c4568138576.orig/hostapd/drivers.c 2007-11-16 05:08:24.000000000 +0100
++++ hostapd-20071107_03ec0ec5cdb974d51a4a2a566bea4c4568138576/hostapd/drivers.c 2008-02-16 19:56:29.000000000 +0100
+@@ -22,6 +22,9 @@ extern struct wpa_driver_ops wpa_driver_
+ /* driver_devicescape.c */
+ extern struct wpa_driver_ops wpa_driver_devicescape_ops;
+ #endif /* CONFIG_DRIVER_DEVICESCAPE */
++#ifdef CONFIG_DRIVER_NL80211
++extern struct wpa_driver_ops wpa_driver_nl80211_ops; /* driver_nl80211.c */
++#endif /* CONFIG_DRIVER_NL80211 */
+ #ifdef CONFIG_DRIVER_PRISM54
+ extern struct wpa_driver_ops wpa_driver_prism54_ops; /* driver_prism54.c */
+ #endif /* CONFIG_DRIVER_PRISM54 */
+@@ -47,6 +50,9 @@ struct wpa_driver_ops *hostapd_drivers[]
+ #ifdef CONFIG_DRIVER_DEVICESCAPE
+ &wpa_driver_devicescape_ops,
+ #endif /* CONFIG_DRIVER_DEVICESCAPE */
++#ifdef CONFIG_DRIVER_NL80211
++ &wpa_driver_nl80211_ops,
++#endif /* CONFIG_DRIVER_NL80211 */
+ #ifdef CONFIG_DRIVER_PRISM54
+ &wpa_driver_prism54_ops,
+ #endif /* CONFIG_DRIVER_PRISM54 */