diff options
Diffstat (limited to 'acompiler')
-rw-r--r-- | acompiler/madwifi/.footprint | 43 | ||||
-rw-r--r-- | acompiler/madwifi/.md5sum | 1 | ||||
-rwxr-xr-x | acompiler/madwifi/Pkgfile | 27 |
3 files changed, 71 insertions, 0 deletions
diff --git a/acompiler/madwifi/.footprint b/acompiler/madwifi/.footprint new file mode 100644 index 000000000..efe47b0ce --- /dev/null +++ b/acompiler/madwifi/.footprint @@ -0,0 +1,43 @@ +drwxr-xr-x root/root lib/ +drwxr-xr-x root/root lib/modules/ +drwxr-xr-x root/root lib/modules/<kernel-version>/ +drwxr-xr-x root/root lib/modules/<kernel-version>/net/ +-rw-r--r-- root/root lib/modules/<kernel-version>/net/ath_hal.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/ath_pci.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/ath_rate_amrr.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/ath_rate_minstrel.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/ath_rate_onoe.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/ath_rate_sample.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/wlan.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/wlan_acl.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/wlan_ccmp.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/wlan_scan_ap.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/wlan_scan_sta.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/wlan_tkip.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/wlan_wep.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/wlan_xauth.ko +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/80211debug +-rwxr-xr-x root/root usr/bin/80211stats +-rwxr-xr-x root/root usr/bin/ath_info +-rwxr-xr-x root/root usr/bin/athchans +-rwxr-xr-x root/root usr/bin/athctrl +-rwxr-xr-x root/root usr/bin/athdebug +-rwxr-xr-x root/root usr/bin/athkey +-rwxr-xr-x root/root usr/bin/athstats +-rwxr-xr-x root/root usr/bin/madwifi-unload +-rwxr-xr-x root/root usr/bin/wlanconfig +-rwxr-xr-x root/root usr/bin/wpakey +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man8/ +-rw-r--r-- root/root usr/share/man/man8/80211debug.8.gz +-rw-r--r-- root/root usr/share/man/man8/80211stats.8.gz +-rw-r--r-- root/root usr/share/man/man8/ath_info.8.gz +-rw-r--r-- root/root usr/share/man/man8/athchans.8.gz +-rw-r--r-- root/root usr/share/man/man8/athctrl.8.gz +-rw-r--r-- root/root usr/share/man/man8/athdebug.8.gz +-rw-r--r-- root/root usr/share/man/man8/athkey.8.gz +-rw-r--r-- root/root usr/share/man/man8/athstats.8.gz +-rw-r--r-- root/root usr/share/man/man8/wlanconfig.8.gz diff --git a/acompiler/madwifi/.md5sum b/acompiler/madwifi/.md5sum new file mode 100644 index 000000000..454aa1567 --- /dev/null +++ b/acompiler/madwifi/.md5sum @@ -0,0 +1 @@ +39b30df26f32f6cf67cfa76339a497ac madwifi-trunk-r4132-20100921.tar.gz diff --git a/acompiler/madwifi/Pkgfile b/acompiler/madwifi/Pkgfile new file mode 100755 index 000000000..8cd7f93ca --- /dev/null +++ b/acompiler/madwifi/Pkgfile @@ -0,0 +1,27 @@ +# Description: Modules kernel pour les cartes wifi à base de Atheros +# URL: http://madwifi.org +# Maintainer: NuTyX core team +# Packager: guy + +name=madwifi + +version=0.9.4.4132 + +_version=trunk +snapshot=r4132-20100921 +_kernver=`uname -r` +release=1 + +source=(http://nutyx.meticul.eu/files/madwifi-trunk-$snapshot.tar.gz) + +build() { + cd $name-${_version}-$snapshot + + sed -i -e 's/-Werror//g' Makefile.inc + make KERNELPATH=/lib/modules/$_kernver/build KERNELRELEASE=$_kernver modules + make KERNELPATH=/lib/modules/$_kernver/build KERNELRELEASE=$_kernver modules \ + DESTDIR=$SRC/pkg KERNELRELEASE=$_kernver install-modules + + make + make DESTDIR=$PKG BINDIR=/usr/bin MANDIR=/usr/share/man install +} |