2020-01-15 18:26:28 +00:00
|
|
|
# Maintainer: Minecrell <minecrell@minecrell.net>
|
2021-09-18 18:31:04 +00:00
|
|
|
# Co-Maintainer: Nikita Travkin <nikita@trvn.ru>
|
2020-04-20 10:07:28 +00:00
|
|
|
pkgname=soc-qcom-msm8916
|
2019-06-23 10:58:45 +00:00
|
|
|
pkgdesc="Common package for Qualcomm MSM8916 devices"
|
2021-10-24 10:15:55 +00:00
|
|
|
pkgver=13
|
2021-09-18 18:31:04 +00:00
|
|
|
pkgrel=0
|
2019-06-23 10:58:45 +00:00
|
|
|
url="https://postmarketos.org"
|
2020-01-15 18:26:28 +00:00
|
|
|
license="BSD-3-Clause"
|
2019-12-07 14:00:39 +00:00
|
|
|
arch="aarch64 armv7"
|
2020-04-20 10:07:28 +00:00
|
|
|
options="!check !archcheck !tracedeps pmb:cross-native"
|
2021-06-10 03:36:40 +00:00
|
|
|
depends="mesa-dri-gallium $pkgname-ucm swclock-offset"
|
2021-10-24 10:15:55 +00:00
|
|
|
subpackages="
|
|
|
|
$pkgname-ucm
|
|
|
|
$pkgname-rproc-none:rproc_none
|
|
|
|
$pkgname-rproc-no-modem:rproc_no_modem
|
|
|
|
$pkgname-rproc-all:rproc_all
|
|
|
|
"
|
2019-06-23 10:58:45 +00:00
|
|
|
|
2021-08-23 15:33:10 +00:00
|
|
|
_ucm_commit="d9c15108e4301e0dc0192fa15fddc83f623bca97"
|
2020-05-13 20:26:38 +00:00
|
|
|
source="$pkgname-$_ucm_commit.tar.gz::https://github.com/msm8916-mainline/alsa-ucm-conf/archive/$_ucm_commit.tar.gz
|
|
|
|
q6voiced.conf
|
|
|
|
"
|
2019-06-23 10:58:45 +00:00
|
|
|
|
|
|
|
package() {
|
2020-10-28 11:12:32 +00:00
|
|
|
# parent package is empty
|
|
|
|
mkdir -p "$pkgdir"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Upstream keeps making breaking changes to UCM in patch releases.
|
|
|
|
# My last upstreaming efforts failed without ever getting a reply,
|
|
|
|
# since then UCM was entirely reworked like 3 times already...
|
|
|
|
# I don't want to fix this up every few months, so let's package a stable
|
|
|
|
# version for now. Once all the UCM refactoring upstream has settled down a bit
|
|
|
|
# we can investigate how to integrate it properly for upstreaming.
|
|
|
|
ucm() {
|
|
|
|
provides="alsa-ucm-conf"
|
|
|
|
|
|
|
|
cd "$srcdir/alsa-ucm-conf-$_ucm_commit"
|
|
|
|
mkdir -p "$subpkgdir"/usr/share/alsa
|
|
|
|
cp -r ucm2 "$subpkgdir"/usr/share/alsa
|
2019-06-23 10:58:45 +00:00
|
|
|
}
|
|
|
|
|
2021-10-24 10:15:55 +00:00
|
|
|
rproc_none() {
|
|
|
|
pkgdesc="Disable all remote processors (no WiFi/BT/modem, ~90 MiB more RAM)"
|
|
|
|
provides="soc-qcom-msm8916-rproc=$pkgver-r$pkgrel"
|
|
|
|
|
|
|
|
mkdir -p "$subpkgdir"/boot
|
|
|
|
echo none > "$subpkgdir"/boot/lk2nd_rproc_mode
|
|
|
|
}
|
|
|
|
|
|
|
|
rproc_no_modem() {
|
|
|
|
pkgdesc="Disable only modem (audio bypasses modem, ~80 MiB more RAM)"
|
|
|
|
provides="soc-qcom-msm8916-rproc=$pkgver-r$pkgrel"
|
|
|
|
provider_priority=50
|
|
|
|
|
|
|
|
mkdir -p "$subpkgdir"/boot
|
|
|
|
echo no-modem > "$subpkgdir"/boot/lk2nd_rproc_mode
|
|
|
|
}
|
|
|
|
|
|
|
|
rproc_all() {
|
|
|
|
pkgdesc="Enable all remote processors (audio goes through modem)"
|
|
|
|
provides="soc-qcom-msm8916-rproc=$pkgver-r$pkgrel"
|
|
|
|
provider_priority=100
|
|
|
|
|
2021-09-18 18:31:04 +00:00
|
|
|
depends="msm-modem msm-modem-uim-selection q6voiced"
|
2020-05-13 20:26:38 +00:00
|
|
|
install="$subpkgname.post-install"
|
2021-10-24 10:15:55 +00:00
|
|
|
replaces="soc-qcom-msm8916-modem"
|
2020-05-13 20:26:38 +00:00
|
|
|
|
2021-10-24 10:15:55 +00:00
|
|
|
mkdir -p "$subpkgdir"/boot
|
|
|
|
echo all > "$subpkgdir"/boot/lk2nd_rproc_mode
|
2020-05-13 20:26:38 +00:00
|
|
|
install -Dm644 q6voiced.conf "$subpkgdir"/etc/conf.d/q6voiced
|
2020-01-18 11:33:38 +00:00
|
|
|
}
|
|
|
|
|
2021-06-30 05:01:33 +00:00
|
|
|
sha512sums="
|
2021-08-23 15:33:10 +00:00
|
|
|
274ef82a949ea51ec1a1628e4793f99d22982d34165cffb8cdfabb3247f3797987652c43ad81d29f49071d184241d873362a17a1694331f402b69a8dbda42aea soc-qcom-msm8916-d9c15108e4301e0dc0192fa15fddc83f623bca97.tar.gz
|
2021-06-30 05:01:33 +00:00
|
|
|
3a4a9322839d4b3ef9d79668a37840a9f444954759ae3c512e694051d2f9a2573db42ad6c4c1a5c75eeb861232a27ba1a8cef9b503decd54ead25a96e3dd6f98 q6voiced.conf
|
|
|
|
"
|