summaryrefslogtreecommitdiff
path: root/libre/linux-libre-lts-kmod-alx/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'libre/linux-libre-lts-kmod-alx/PKGBUILD')
-rw-r--r--libre/linux-libre-lts-kmod-alx/PKGBUILD38
1 files changed, 38 insertions, 0 deletions
diff --git a/libre/linux-libre-lts-kmod-alx/PKGBUILD b/libre/linux-libre-lts-kmod-alx/PKGBUILD
new file mode 100644
index 000000000..ffda9f21f
--- /dev/null
+++ b/libre/linux-libre-lts-kmod-alx/PKGBUILD
@@ -0,0 +1,38 @@
+# Maintainer: André Silva <emulatorman@lavabit.com>
+
+_kernver=3.0.50
+_kernrel=1
+pkgname=('linux-libre-lts-kmod-alx')
+_pkgver=2012-10-03
+pkgver=20121003
+pkgrel=5
+pkgdesc='Atheros alx ethernet device driver for linux-libre-lts kernel'
+arch=('i686' 'x86_64')
+url='http://linuxwireless.org/'
+license=('GPL2')
+depends=("linux-libre-lts=$_kernver")
+makedepends=("linux-libre-lts-headers=$_kernver")
+install=linux-libre-lts-kmod-alx.install
+source=(http://linuxwireless.org/download/compat-wireless-2.6/compat-wireless-$_pkgver-pc.tar.bz2)
+
+md5sums=('7d541af2ae06eeaaadaba5b4fbcbfb13')
+
+
+build() {
+ # current extramodules version
+ _extraver=extramodules-3.0-LIBRE-LTS
+
+ cd ${srcdir}/compat-wireless-$_pkgver-pc
+
+ # replacing to specific linux-libre-lts kernel version
+ sed -i -e "s/lib\/modules\/\$(shell uname -r)/usr\/lib\/modules\/$_kernver-$_kernrel-LIBRE-LTS/" Makefile
+
+ ./scripts/driver-select alx
+ make
+ cd $srcdir/compat-wireless-$_pkgver-pc/compat
+ gzip -9 compat.ko
+ install -D -m 0644 compat.ko.gz $pkgdir/lib/modules/$_extraver/compat.ko.gz
+ cd $srcdir/compat-wireless-$_pkgver-pc/drivers/net/ethernet/atheros/alx
+ gzip -9 alx.ko
+ install -D -m 0644 alx.ko.gz $pkgdir/lib/modules/$_extraver/alx.ko.gz
+}