diff options
author | Florian Fainelli <florian@openwrt.org> | 2008-07-07 13:49:36 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2008-07-07 13:49:36 +0000 |
commit | 216556954e68a3ceb1a2362689cf0122fc0b6d69 (patch) | |
tree | d8a1fa4354d007a576774b2c8ea877f4576aaf02 /package/hostapd/patches/003-hook-up-nl80211-driver.patch | |
parent | 0b0061e01b1ef16ed4bac5da6b9a1ac3bfd5d92a (diff) | |
download | upstream-216556954e68a3ceb1a2362689cf0122fc0b6d69.tar.gz upstream-216556954e68a3ceb1a2362689cf0122fc0b6d69.tar.bz2 upstream-216556954e68a3ceb1a2362689cf0122fc0b6d69.zip |
Update hostapd to 0.6.3 (#3615)
SVN-Revision: 11738
Diffstat (limited to 'package/hostapd/patches/003-hook-up-nl80211-driver.patch')
-rw-r--r-- | package/hostapd/patches/003-hook-up-nl80211-driver.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/package/hostapd/patches/003-hook-up-nl80211-driver.patch b/package/hostapd/patches/003-hook-up-nl80211-driver.patch deleted file mode 100644 index 6c450fcda2..0000000000 --- a/package/hostapd/patches/003-hook-up-nl80211-driver.patch +++ /dev/null @@ -1,41 +0,0 @@ -Index: hostapd-20071107_03ec0ec5cdb974d51a4a2a566bea4c4568138576/hostapd/Makefile -=================================================================== ---- 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 - -+ifdef CONFIG_DRIVER_NL80211 -+CFLAGS += -DCONFIG_DRIVER_NL80211 -+OBJS += driver_nl80211.o radiotap.o -+LIBS += -lnl -+endif -+ - 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 */ |