summaryrefslogtreecommitdiff
path: root/openwrt/package/wpa_supplicant/patches/103-madwifi.patch
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-10-23 19:15:40 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-10-23 19:15:40 +0000
commit96b9e12e0a4a75ac1aa0206eac2a4dd91178d84d (patch)
tree8821aa4ecab206e756f824dc73d7b638f60afde3 /openwrt/package/wpa_supplicant/patches/103-madwifi.patch
parent2e4a6abb004a48dfb92b796d292128a4a616b46b (diff)
rename madwifi patch to madwifi-ng
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2287 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/wpa_supplicant/patches/103-madwifi.patch')
-rw-r--r--openwrt/package/wpa_supplicant/patches/103-madwifi.patch50
1 files changed, 0 insertions, 50 deletions
diff --git a/openwrt/package/wpa_supplicant/patches/103-madwifi.patch b/openwrt/package/wpa_supplicant/patches/103-madwifi.patch
deleted file mode 100644
index 3a3119f8a6..0000000000
--- a/openwrt/package/wpa_supplicant/patches/103-madwifi.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-diff -ruN wpa_supplicant-0.4.5-old/driver_madwifi.c wpa_supplicant-0.4.5-new/driver_madwifi.c
---- wpa_supplicant-0.4.5-old/driver_madwifi.c 2005-09-17 07:36:33.000000000 +0200
-+++ wpa_supplicant-0.4.5-new/driver_madwifi.c 2005-10-23 14:08:45.000000000 +0200
-@@ -27,11 +27,19 @@
- #include "wpa_supplicant.h"
- #include "wpa.h"
-
-+#include <sys/types.h>
-+#include <sys/socket.h>
-+#include <linux/types.h>
-+#include <linux/socket.h>
-+#include <linux/if.h>
-+#include <stdint.h>
-+#include <linux/if_packet.h>
-+#include <linux/netlink.h>
-+#include <linux/rtnetlink.h>
-+
- #include <include/compat.h>
- #include <net80211/ieee80211.h>
- #ifdef WME_NUM_AC
--/* Assume this is built against BSD branch of madwifi driver. */
--#define MADWIFI_BSD
- #include <net80211/_ieee80211.h>
- #endif /* WME_NUM_AC */
- #include <net80211/ieee80211_crypto.h>
-@@ -78,19 +86,19 @@
- "ioctl[IEEE80211_IOCTL_SETKEY]",
- "ioctl[IEEE80211_IOCTL_GETKEY]",
- "ioctl[IEEE80211_IOCTL_DELKEY]",
-- NULL,
-+ "ioctl[IEEE80211_IOCTL_SETWMMPARAMS]",
- "ioctl[IEEE80211_IOCTL_SETMLME]",
-- NULL,
-+ "ioctl[IEEE80211_IOCTL_GETCHANINFO]",
- "ioctl[IEEE80211_IOCTL_SETOPTIE]",
- "ioctl[IEEE80211_IOCTL_GETOPTIE]",
- "ioctl[IEEE80211_IOCTL_ADDMAC]",
- NULL,
- "ioctl[IEEE80211_IOCTL_DELMAC]",
-- NULL,
-- "ioctl[IEEE80211_IOCTL_CHANLIST]",
-+ "ioctl[IEEE80211_IOCTL_GETCHANLIST]",
-+ "ioctl[IEEE80211_IOCTL_SETCHANLIST]",
- };
- if (IEEE80211_IOCTL_SETPARAM <= op &&
-- op <= IEEE80211_IOCTL_CHANLIST)
-+ op <= IEEE80211_IOCTL_SETCHANLIST)
- perror(opnames[op - SIOCIWFIRSTPRIV]);
- else
- perror("ioctl[unknown???]");