diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-11-13 17:00:18 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-11-13 17:00:18 +0000 |
commit | 336c7f084d40db9f7014e2163f6d4de7a07bef11 (patch) | |
tree | 9b0b689c9fbab33db4fca825c669798385e82f20 /package/hostapd/patches | |
parent | faf2d6e4d3d7aa79f424c65485bb3086beaaf411 (diff) | |
download | upstream-336c7f084d40db9f7014e2163f6d4de7a07bef11.tar.gz upstream-336c7f084d40db9f7014e2163f6d4de7a07bef11.tar.bz2 upstream-336c7f084d40db9f7014e2163f6d4de7a07bef11.zip |
hostapd: fix madwifi related linker error (include wext support for non-wpad hostapd builds)
SVN-Revision: 23987
Diffstat (limited to 'package/hostapd/patches')
-rw-r--r-- | package/hostapd/patches/310-madwifi_merge.patch | 13 | ||||
-rw-r--r-- | package/hostapd/patches/540-optional_rfkill.patch | 4 |
2 files changed, 15 insertions, 2 deletions
diff --git a/package/hostapd/patches/310-madwifi_merge.patch b/package/hostapd/patches/310-madwifi_merge.patch index 4fb92c532c..b62fb3f201 100644 --- a/package/hostapd/patches/310-madwifi_merge.patch +++ b/package/hostapd/patches/310-madwifi_merge.patch @@ -771,3 +771,16 @@ -#endif /* HOSTAPD */ +#endif }; +--- a/src/drivers/drivers.mak ++++ b/src/drivers/drivers.mak +@@ -168,8 +168,8 @@ DRV_WPA_OBJS += ../src/drivers/driver_ro + endif + + ifdef CONFIG_WIRELESS_EXTENSION +-DRV_WPA_CFLAGS += -DCONFIG_WIRELESS_EXTENSION +-DRV_WPA_OBJS += ../src/drivers/driver_wext.o ++DRV_CFLAGS += -DCONFIG_WIRELESS_EXTENSION ++DRV_OBJS += ../src/drivers/driver_wext.o + NEED_RFKILL=y + endif + diff --git a/package/hostapd/patches/540-optional_rfkill.patch b/package/hostapd/patches/540-optional_rfkill.patch index c70bcf4a52..3ec7e239a6 100644 --- a/package/hostapd/patches/540-optional_rfkill.patch +++ b/package/hostapd/patches/540-optional_rfkill.patch @@ -243,8 +243,8 @@ ifdef CONFIG_DRIVER_HERMES @@ -170,7 +168,6 @@ endif ifdef CONFIG_WIRELESS_EXTENSION - DRV_WPA_CFLAGS += -DCONFIG_WIRELESS_EXTENSION - DRV_WPA_OBJS += ../src/drivers/driver_wext.o + DRV_CFLAGS += -DCONFIG_WIRELESS_EXTENSION + DRV_OBJS += ../src/drivers/driver_wext.o -NEED_RFKILL=y endif |