summaryrefslogtreecommitdiff
path: root/libre/linux-libre-firmware
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-06-29 04:32:46 -0300
committerAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-06-29 04:32:46 -0300
commitfac2009605dfcb3aec1d99cad2d91c267a819f1b (patch)
treefdee5aa59fc571fe4910540699a91557a674d5cb /libre/linux-libre-firmware
parent9bc5c973f9df0a9faaccd47a0babc32701eb4fa4 (diff)
linux-libre-firmware-3.9-2: include new free firmware file called ath9k_htc inside linux-libre-firmware
Diffstat (limited to 'libre/linux-libre-firmware')
-rw-r--r--libre/linux-libre-firmware/PKGBUILD52
1 files changed, 44 insertions, 8 deletions
diff --git a/libre/linux-libre-firmware/PKGBUILD b/libre/linux-libre-firmware/PKGBUILD
index 99c54a1b2..fc555c7b9 100644
--- a/libre/linux-libre-firmware/PKGBUILD
+++ b/libre/linux-libre-firmware/PKGBUILD
@@ -3,11 +3,13 @@
pkgname=linux-libre-firmware
pkgver=3.9
-pkgrel=1
+pkgrel=2
pkgdesc='Free firmware files for Linux-libre'
arch=('any')
-url='http://linux-libre.fsfla.org/'
-license=('GPL2')
+url=('http://linux-libre.fsfla.org/'
+ 'http://wireless.kernel.org/en/users/Drivers/ath9k_htc')
+license=('GPL2' 'BSD')
+makedepends=('git' 'wget')
provides=('linux-firmware'
'kernel26-firmware=2.6.34.99')
conflicts=('linux-firmware'
@@ -35,15 +37,49 @@ replaces=('linux-firmware'
'rt2870usb-fw'
'rt2x00-rt61-fw'
'rt2x00-rt71w-fw')
-source=("http://linux-libre.fsfla.org/pub/linux-libre/releases/$pkgver-gnu/linux-libre-$pkgver-gnu.tar.xz")
-md5sums=('120df29f88622dabf7015a22c7cc8e25')
+source=("http://linux-libre.fsfla.org/pub/linux-libre/releases/$pkgver-gnu/linux-libre-$pkgver-gnu.tar.xz"
+ "git://github.com/qca/open-ath9k-htc-firmware")
+md5sums=('120df29f88622dabf7015a22c7cc8e25'
+ 'SKIP')
+
+prepare() {
+
+ cd $srcdir/open-ath9k-htc-firmware
+
+ # prepare toolchain to compile ath9k-htc firmware
+ make toolchain
+
+}
+
+build() {
+
+ cd $srcdir/open-ath9k-htc-firmware
+
+ # create firmware folder to put the free firmware files there
+ mkdir -p $pkgdir/usr/lib/firmware
+
+ # compile ath9k-htc-firmware
+ make -C target_firmware
+
+ mv htc_{7010,9271}.fw $pkgdir/usr/lib/firmware
-package() {
cd $srcdir/linux-$pkgver
-
+
+ # compile free firmware files of linux-libre source code
make INSTALL_FW_PATH=$pkgdir/usr/lib/firmware firmware_install
- # move WHENCE file to linux-firmware license folder
+}
+
+package() {
+
install -d -m755 $pkgdir/usr/share/licenses/$pkgname
+
+ # move LICENSE.TXT from ath9k-htc firmware to linux-firmware license folder
+ cd $srcdir/open-ath9k-htc-firmware-1.3.2
+ mv LICENSE.TXT $pkgdir/usr/share/licenses/$pkgname/LICENCE.atheros_firmware
+
+ # move WHENCE file to linux-firmware license folder
+ cd $srcdir/linux-$pkgver
mv firmware/WHENCE $pkgdir/usr/share/licenses/$pkgname
+
}