firmware-samsung-pxa1908: do not install conf files on mainline (MR 5296)

Suggested-by: Karel Balej <balejk@matfyz.cz>
This commit is contained in:
Duje Mihanović 2024-06-29 22:04:12 +02:00 committed by Robert Eckelmann
parent 86c0223e69
commit 3f8e4730d1
No known key found for this signature in database
GPG key ID: 30C0D50BEF63BF54

View file

@ -1,6 +1,6 @@
pkgname=firmware-samsung-pxa1908
pkgver=2
pkgrel=2
pkgrel=3
pkgdesc="Firmware for Samsung PXA1908 devices"
url="https://postmarketos.org"
arch="aarch64"
@ -12,17 +12,16 @@ source="
$pkgname-$_commit.tar.gz::https://github.com/xcover3/$_repo/archive/$_commit.tar.gz
sd8x-wlan.initd
"
_files="sd8777_uapsta.bin WlanCalData_ext.conf txpwrlimit_cfg.bin bt_cal_data.conf"
_fw_file="sd8777_uapsta.bin"
_misc_files="WlanCalData_ext.conf txpwrlimit_cfg.bin bt_cal_data.conf"
builddir="$srcdir/$_repo-$_commit"
subpackages="$pkgname-downstream:downstream"
package() {
cd proprietary/etc/firmware/mrvl/
for _i in $_files; do
install -Dm644 "$_i" \
-t "$pkgdir/lib/firmware/postmarketos/mrvl"
done
install -Dm644 "$_fw_file" \
-t "$pkgdir/lib/firmware/postmarketos/mrvl"
}
downstream() {
@ -31,6 +30,12 @@ downstream() {
install="$subpkgname.post-install"
mkdir "$subpkgdir"
cd "$builddir"/proprietary/etc/firmware/mrvl/
for _i in $_misc_files; do
install -Dm644 "$_i" \
-t "$subpkgdir/lib/firmware/postmarketos/mrvl"
done
install -Dm755 "$srcdir"/sd8x-wlan.initd "$subpkgdir"/etc/init.d/sd8x-wlan
}