0b269a5601
Squash the packaged venus firmware blobs using pil-squasher so only one file needs to be loaded rather than many small ones. Linux detects squashed (.mbn) vs non-squashed (.mdt + .b*) based on file contents (not file name) so it is fine to install venus.mbn to venus.mdt.
42 lines
1.4 KiB
Text
42 lines
1.4 KiB
Text
# Maintainer: Ruby Iris Juric <ruby@srxl.me>
|
|
pkgname=firmware-motorola-harpia
|
|
pkgver=3
|
|
pkgrel=0
|
|
pkgdesc="Firmware for Motorola Moto G4 Play"
|
|
url="https://github.com/Sorixelle/vendor_motorola_harpia"
|
|
subpackages="$pkgname-wcnss-nv:wcnss_nv $pkgname-venus"
|
|
arch="aarch64"
|
|
license="proprietary"
|
|
options="!check !strip !archcheck !tracedeps pmb:cross-native"
|
|
makedepends="pil-squasher"
|
|
|
|
_commit="a81be710b0ff4ee7e5fd1962184dcd882cc13efc"
|
|
source="$pkgname-$_commit.tar.gz::$url/archive/$_commit.tar.gz"
|
|
builddir="$srcdir/vendor_motorola_harpia-$_commit"
|
|
|
|
_fwdir="/lib/firmware/postmarketos"
|
|
|
|
build() {
|
|
# venus.mbn exists already but seems a bit different
|
|
pil-squasher venus2.mbn venus.mdt
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
wcnss_nv() {
|
|
pkgdesc="Motorola Moto G4 Play WiFi/BT firmware configuration"
|
|
replaces="firmware-motorola-harpia-wcnss"
|
|
install -Dm644 "$builddir"/wlan/prima/WCNSS_qcom_wlan_nv.bin -t "$subpkgdir/$_fwdir/wlan/prima"
|
|
}
|
|
|
|
venus() {
|
|
pkgdesc="Motorola Moto G4 Play video firmware"
|
|
|
|
# Linux detects squashed (.mbn) vs non-squashed (.mdt + .b*) based on
|
|
# file contents, so it is fine to install venus.mbn to venus.mdt
|
|
install -Dm644 "$builddir"/venus2.mbn "$subpkgdir/$_fwdir"/qcom/venus-1.8/venus.mdt
|
|
}
|
|
|
|
sha512sums="56a7f815bea3d20a5ef0241ae109ac3823c6ac433e2a05389035b7005c7966d7a0a7719dbf5a562c6cf53c18cebd6893d31d27a6efc1a50c307565f873b1aa54 firmware-motorola-harpia-a81be710b0ff4ee7e5fd1962184dcd882cc13efc.tar.gz"
|