firmware: add aport for lg-hammerhead proprietary firmware (#1485)
This includes the firmware files for the Nexus 5 modem and adsp subsystem. It is currently hosted on my personal server.
This commit is contained in:
parent
e911489338
commit
492c5b46a0
1 changed files with 37 additions and 0 deletions
37
firmware/firmware-lg-hammerhead/APKBUILD
Normal file
37
firmware/firmware-lg-hammerhead/APKBUILD
Normal file
|
@ -0,0 +1,37 @@
|
|||
pkgname=firmware-lg-hammerhead
|
||||
pkgver=1
|
||||
pkgrel=1
|
||||
pkgdesc="Firmware for LG hammerhead (Nexus 5)"
|
||||
subpackages="$pkgname-modem $pkgname-adsp"
|
||||
url="https://github.com/TheMuppets/proprietary_vendor_lge"
|
||||
arch="noarch"
|
||||
license="proprietary"
|
||||
options="!check !strip !archcheck"
|
||||
|
||||
# Sources
|
||||
source="https://bshah.in/hammerhead-firmware.tar.gz"
|
||||
|
||||
package() {
|
||||
# parent package is empty
|
||||
mkdir -p "$pkgdir"
|
||||
}
|
||||
|
||||
modem() {
|
||||
pkgdesc="LG Nexus 5 modem firmware"
|
||||
|
||||
cd "$srcdir"
|
||||
for _i in modem.* mba.*; do
|
||||
install -Dm644 $_i "$subpkgdir"/lib/firmware/$_i
|
||||
done
|
||||
}
|
||||
|
||||
adsp() {
|
||||
pkgdesc="LG Nexus 5 adsp firmware"
|
||||
|
||||
cd "$srcdir"
|
||||
for _i in adsp.*; do
|
||||
install -Dm644 $_i "$subpkgdir"/lib/firmware/$_i
|
||||
done
|
||||
}
|
||||
|
||||
sha512sums="ae8cd5ad7bd6486117131b407454be79df9e8b092d7eabfcb0eec029867d6aa037f52ec0a15dd2bf268a9d9eb74e01dca7e8a4b779eb1564a95ab19457402f64 hammerhead-firmware.tar.gz"
|
Loading…
Reference in a new issue