Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a74e73fb812a0529a3519341376e79b72a364b99
commit a74e73fb812a0529a3519341376e79b72a364b99 Author: Miklos Vajna <[EMAIL PROTECTED]> Date: Mon Jan 28 03:01:22 2008 +0100 adm8211-20060111-34-i686 removed, it's in kernel-2.6.24 diff --git a/source/network-extra/adm8211/FrugalBuild b/source/network-extra/adm8211/FrugalBuild deleted file mode 100644 index 57a169e..0000000 --- a/source/network-extra/adm8211/FrugalBuild +++ /dev/null @@ -1,30 +0,0 @@ -# Compiling Time: 0.01 SBU -# Maintainer: VMiklos <[EMAIL PROTECTED]> - -pkgname=adm8211 -pkgver=20060111 -pkgrel=34 -pkgdesc="IEEE 802.11 wireless LAN driver for adm8211 based cards" -url="http://aluminum.sourmilk.net/adm8211/" -Finclude kernel-module -groups=('network-extra') -archs=('i686' 'x86_64') -up2date="lynx -dump $url|grep bz2$|sed -n 's/.*-\(.*\)\.t.*/\1/;$ p'" -source=($url/$pkgname-$pkgver.tar.bz2 adm8211-20060111-linux26{20,22}.patch) -sha1sums=('69658563c465c5c40d803d528ac3834d81d2cd0a' \ - '553e345e276a6981f21da4fd2d3ac5521bab370c' \ - '3cc4e06831cdd6deaf8af201dc8166a4f08daa9e') - -build() -{ - # no Fcheckkernel, crosscompilation verified - Fcd $pkgname - Fpatchall - Fsed '$(shell uname -r)' "$_F_kernelmod_uname" Makefile - Fsed '\([^=]\) /lib' "\1 $Fdestdir/lib" Makefile - # we'll do this, dude - Fsed 'depmod' "#depmod" Makefile - Fmake - Fmakeinstall - Fbuild_kernelmod_scriptlet -} diff --git a/source/network-extra/adm8211/adm8211-20060111-linux2620.patch b/source/network-extra/adm8211/adm8211-20060111-linux2620.patch deleted file mode 100644 index 159c4a6..0000000 --- a/source/network-extra/adm8211/adm8211-20060111-linux2620.patch +++ /dev/null @@ -1,52 +0,0 @@ -diff -Naur adm8211.orig/adm8211_hw.c adm8211/adm8211_hw.c ---- adm8211.orig/adm8211_hw.c 2005-10-07 08:26:04.000000000 +0200 -+++ adm8211/adm8211_hw.c 2007-02-05 17:18:38.000000000 +0100 -@@ -26,7 +26,6 @@ - */ - - --#include <linux/config.h> - #include <linux/version.h> - #include <linux/module.h> - #include <linux/moduleparam.h> -@@ -2712,6 +2711,7 @@ - printk(version); - printk(KERN_INFO "adm8211: release " RELEASE_DATE "\n"); - #endif -+ return -EINVAL; - - return pci_register_driver(&adm8211_driver); - } -diff -Naur adm8211.orig/ieee80211_sta.c adm8211/ieee80211_sta.c ---- adm8211.orig/ieee80211_sta.c 2006-01-11 13:08:19.000000000 +0100 -+++ adm8211/ieee80211_sta.c 2007-02-05 17:18:38.000000000 +0100 -@@ -30,7 +30,7 @@ - #define IEEE80211_MONITORING_INTERVAL (30 * HZ) - #define IEEE80211_LINKCHECK_INTERVAL (3 * HZ) - --static void ieee80211_timer(void *ptr); -+static void ieee80211_timer(struct work_struct *work); - - ParseRes ieee802_11_parse_elems(struct ieee80211_info_element *start, size_t len, - struct ieee802_11_elems *elems) -@@ -823,7 +823,7 @@ - - void ieee80211_init(struct ieee80211_data *data) - { -- INIT_WORK(&data->work, ieee80211_timer, data); -+ INIT_WORK(&data->work, ieee80211_timer); - - data->listen_interval = 10; - data->ieee->state = IEEE80211_UNINITIALIZED; -@@ -1188,9 +1188,9 @@ - } - - --static void ieee80211_timer(void *ptr) -+static void ieee80211_timer(struct work_struct *work) - { -- struct ieee80211_data *data = (struct ieee80211_data *) ptr; -+ struct ieee80211_data *data = container_of(work, struct ieee80211_data, work); - - switch (data->ieee->state) { - case IEEE80211_INITIALIZED: diff --git a/source/network-extra/adm8211/adm8211-20060111-linux2622.patch b/source/network-extra/adm8211/adm8211-20060111-linux2622.patch deleted file mode 100644 index 630a8b3..0000000 --- a/source/network-extra/adm8211/adm8211-20060111-linux2622.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- adm8211/adm8211_hw.c.orig 2007-07-10 15:43:39.000000000 +0200 -+++ adm8211/adm8211_hw.c 2007-07-10 15:44:47.000000000 +0200 -@@ -516,7 +516,7 @@ - ieee->stats.rx_packets++; - - skb->pkt_type = PACKET_OTHERHOST; -- skb->mac.raw = skb->data; -+ skb_reset_mac_header(skb); - - netif_rx(skb); - dev->last_rx = jiffies; -@@ -734,7 +734,7 @@ - #endif - stat->rssi = rssi; - stat->rate = rate; -- skb->mac.raw = skb->data; -+ skb_reset_mac_header(skb); - skb->protocol = __constant_htons(ETH_P_802_2); - skb_queue_tail(&priv->rx_queue, skb); - tasklet_schedule(&priv->rx_tasklet); -@@ -2392,7 +2392,7 @@ - - int adm8211_80211_header_parse(struct sk_buff *skb, unsigned char *haddr) - { -- memcpy(haddr, skb->mac.raw + 10 + sizeof(struct avs_caphdr), ETH_ALEN); /* addr2 */ -+ memcpy(haddr, skb->mac_header + 10 + sizeof(struct avs_caphdr), ETH_ALEN); /* addr2 */ - return ETH_ALEN; - } - _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
