diff options
author | 2007-03-17 09:23:37 +0000 | |
---|---|---|
committer | 2007-03-17 09:23:37 +0000 | |
commit | f550b1aa71bdd0551baccb3160b04dbadab5a850 (patch) | |
tree | b975ef03c36510221e8a3bca61dcbac115663477 /net-wireless/ipw2100/files | |
parent | applied which -> type -P fix to the bumoed version (diff) | |
download | historical-f550b1aa71bdd0551baccb3160b04dbadab5a850.tar.gz historical-f550b1aa71bdd0551baccb3160b04dbadab5a850.tar.bz2 historical-f550b1aa71bdd0551baccb3160b04dbadab5a850.zip |
net-wireless/ipw2100 and net-wireless/ipw2200 were scheduled for removal around 20 February 2007.
Diffstat (limited to 'net-wireless/ipw2100/files')
6 files changed, 0 insertions, 141 deletions
diff --git a/net-wireless/ipw2100/files/digest-ipw2100-1.2.1-r1 b/net-wireless/ipw2100/files/digest-ipw2100-1.2.1-r1 deleted file mode 100644 index 9d2c6cb0b171..000000000000 --- a/net-wireless/ipw2100/files/digest-ipw2100-1.2.1-r1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 9db50b836c63dc3a7e56653d2009717a ipw2100-1.2.1.tgz 106297 -RMD160 ad4f896d3f4b3afcdb39b5aaf02e9feaefbbedc7 ipw2100-1.2.1.tgz 106297 -SHA256 6a46aba6a4f46165ecd66a65769482c3bf34b03bbe1df94d0dae314b2aaebf15 ipw2100-1.2.1.tgz 106297 diff --git a/net-wireless/ipw2100/files/digest-ipw2100-1.2.1-r2 b/net-wireless/ipw2100/files/digest-ipw2100-1.2.1-r2 deleted file mode 100644 index 9d2c6cb0b171..000000000000 --- a/net-wireless/ipw2100/files/digest-ipw2100-1.2.1-r2 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 9db50b836c63dc3a7e56653d2009717a ipw2100-1.2.1.tgz 106297 -RMD160 ad4f896d3f4b3afcdb39b5aaf02e9feaefbbedc7 ipw2100-1.2.1.tgz 106297 -SHA256 6a46aba6a4f46165ecd66a65769482c3bf34b03bbe1df94d0dae314b2aaebf15 ipw2100-1.2.1.tgz 106297 diff --git a/net-wireless/ipw2100/files/ipw2100-1.2.1-cflags.patch b/net-wireless/ipw2100/files/ipw2100-1.2.1-cflags.patch deleted file mode 100644 index 1dba47af13d1..000000000000 --- a/net-wireless/ipw2100/files/ipw2100-1.2.1-cflags.patch +++ /dev/null @@ -1,55 +0,0 @@ -diff -u ipw2100-1.2.1/ipw2100.c ipw2100-1.2.1-cflags/ipw2100.c ---- ipw2100-1.2.1/ipw2100.c 2006-02-21 19:46:17.000000000 +0100 -+++ ipw2100-1.2.1-cflags/ipw2100.c 2006-04-04 18:07:42.000000000 +0200 -@@ -184,7 +184,9 @@ - MODULE_AUTHOR(DRV_COPYRIGHT); - MODULE_LICENSE("GPL"); - -+#ifdef CONFIG_IPW2100_DEBUG - static int debug = 0; -+#endif - static int mode = 0; - static int channel = 0; - static int associate = 1; -@@ -194,13 +196,17 @@ - #endif - - #include <linux/moduleparam.h> -+#ifdef CONFIG_IPW2100_DEBUG - module_param(debug, int, 0444); -+#endif - module_param(mode, int, 0444); - module_param(channel, int, 0444); - module_param(associate, int, 0444); - module_param(disable, int, 0444); - --MODULE_PARM_DESC(debug, "debug level"); -+#ifdef CONFIG_IPW2100_DEBUG -+MODULE_PARM_DESC(debug, "debug output mask"); -+#endif - MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)"); - MODULE_PARM_DESC(channel, "channel"); - MODULE_PARM_DESC(associate, "auto associate when scanning (default on)"); -Only in ipw2100-1.2.1-cflags/: ipw2100.c~ -diff -u ipw2100-1.2.1/Makefile ipw2100-1.2.1-cflags/Makefile ---- ipw2100-1.2.1/Makefile 2006-02-21 19:46:16.000000000 +0100 -+++ ipw2100-1.2.1-cflags/Makefile 2006-04-04 18:03:09.000000000 +0200 -@@ -70,14 +70,11 @@ - EXTRA_CFLAGS += -DCONFIG_PM - - ifeq ($(EXTERNAL_BUILD),y) --ifdef CONFIG_IPW2100_DEBUG --EXTRA_CFLAGS += -DCONFIG_IPW2100_DEBUG=$(CONFIG_IPW2100_DEBUG) -+ifeq ($(CONFIG_IPW2100_DEBUG),y) -+EXTRA_CFLAGS += -DCONFIG_IPW2100_DEBUG - endif --ifdef CONFIG_IPW2100_MONITOR --EXTRA_CFLAGS += -DCONFIG_IPW2100_MONITOR=$(CONFIG_IPW2100_MONITOR) --endif --ifdef CONFIG_IPW_QOS --EXTRA_CFLAGS += -DCONFIG_IPW_QOS=$(CONFIG_IPW_QOS) -+ifeq ($(CONFIG_IPW2100_MONITOR),y) -+EXTRA_CFLAGS += -DCONFIG_IPW2100_MONITOR - endif - endif - diff --git a/net-wireless/ipw2100/files/ipw2100-1.2.1-double-parentheses.patch b/net-wireless/ipw2100/files/ipw2100-1.2.1-double-parentheses.patch deleted file mode 100644 index a3d503217786..000000000000 --- a/net-wireless/ipw2100/files/ipw2100-1.2.1-double-parentheses.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -u ipw2100-1.2.1/Makefile ipw2100-1.2.1-double-parentheses/Makefile ---- ipw2100-1.2.1/Makefile 2006-02-21 19:46:16.000000000 +0100 -+++ ipw2100-1.2.1-double-parentheses/Makefile 2006-07-04 19:14:17.000000000 +0200 -@@ -150,7 +150,7 @@ - else # We've got a kernel with seperate output, copy the config, and use O= - mkdir -p $(TMP) - cp $(KSRC_OUTPUT)/.config $(TMP) -- $(MAKE) -C $(KSRC) M=$(PWD) MODVERDIR=$(MODVERDIR)) O=$(PWD)/tmp modules -+ $(MAKE) -C $(KSRC) M=$(PWD) MODVERDIR=$(MODVERDIR) O=$(PWD)/tmp modules - endif - - install: modules diff --git a/net-wireless/ipw2100/files/ipw2100-1.2.1-essid.patch b/net-wireless/ipw2100/files/ipw2100-1.2.1-essid.patch deleted file mode 100644 index a8504c3f0c59..000000000000 --- a/net-wireless/ipw2100/files/ipw2100-1.2.1-essid.patch +++ /dev/null @@ -1,42 +0,0 @@ ---- ipw2100-1.2.1.orig/ipw2100.c 2006-02-22 05:46:17.000000000 +1100 -+++ ipw2100-1.2.1-essid/ipw2100.c 2006-12-12 16:47:54.000000000 +1100 -@@ -7462,6 +7462,12 @@ - return 0; - } - -+#if WIRELESS_EXT > 20 -+#define IW_ESSID_FIX 0 -+#else -+#define IW_ESSID_FIX 1 -+#endif -+ - static int ipw2100_wx_set_essid(struct net_device *dev, - struct iw_request_info *info, - union iwreq_data *wrqu, char *extra) -@@ -7478,7 +7484,7 @@ - } - - if (wrqu->essid.flags && wrqu->essid.length) { -- length = wrqu->essid.length - 1; -+ length = wrqu->essid.length - IW_ESSID_FIX; - essid = extra; - } - -@@ -7528,7 +7534,7 @@ - IPW_DEBUG_WX("Getting essid: '%s'\n", - escape_essid(priv->essid, priv->essid_len)); - memcpy(extra, priv->essid, priv->essid_len); -- wrqu->essid.length = priv->essid_len; -+ wrqu->essid.length = priv->essid_len + IW_ESSID_FIX; - wrqu->essid.flags = 1; /* active */ - } else { - IPW_DEBUG_WX("Getting essid: ANY\n"); -@@ -7571,7 +7577,7 @@ - - struct ipw2100_priv *priv = ieee80211_priv(dev); - -- wrqu->data.length = strlen(priv->nick) + 1; -+ wrqu->data.length = strlen(priv->nick) + IW_ESSID_FIX; - memcpy(extra, priv->nick, wrqu->data.length); - wrqu->data.flags = 1; /* active */ - diff --git a/net-wireless/ipw2100/files/ipw2100-1.2.1-kernel-2.6.19.patch b/net-wireless/ipw2100/files/ipw2100-1.2.1-kernel-2.6.19.patch deleted file mode 100644 index 1116bb86cea2..000000000000 --- a/net-wireless/ipw2100/files/ipw2100-1.2.1-kernel-2.6.19.patch +++ /dev/null @@ -1,26 +0,0 @@ -Index: ipw2100-1.2.1/Makefile -=================================================================== ---- ipw2100-1.2.1.orig/Makefile -+++ ipw2100-1.2.1/Makefile -@@ -143,9 +143,6 @@ ifdef ($(KSRC_OUTPUT)/.tmp_versions) - -cp $(KSRC_OUTPUT)/.tmp_versions/*.mod $(MODVERDIR) - endif - ifeq ($(KSRC),$(KSRC_OUTPUT)) # We're not outputting elsewhere --ifdef ($(KSRC)/.tmp_versions) -- -cp $(KSRC)/.tmp_versions/*.mod $(MODVERDIR) --endif - $(MAKE) -C $(KSRC) M=$(PWD) MODVERDIR=$(MODVERDIR) modules - else # We've got a kernel with seperate output, copy the config, and use O= - mkdir -p $(TMP) -Index: ipw2100-1.2.1/ipw2100.c -=================================================================== ---- ipw2100-1.2.1.orig/ipw2100.c -+++ ipw2100-1.2.1/ipw2100.c -@@ -134,7 +134,6 @@ that only one external action is invoked - */ - - #include <linux/compiler.h> --#include <linux/config.h> - #include <linux/errno.h> - #include <linux/if_arp.h> - #include <linux/in6.h> |