2020-05-27 00:15:46 +00:00
|
|
|
# Maintainer: Caleb Connolly (kalube) <caleb@connolly.tech>
|
2022-10-08 19:58:21 +00:00
|
|
|
# Co-Maintainer: Joel Selvaraj <joelselvaraj.oss@gmail.com>
|
2020-05-27 00:15:46 +00:00
|
|
|
pkgname=soc-qcom-sdm845
|
|
|
|
pkgdesc="Common package for Qualcomm SDM845 devices"
|
2022-12-09 00:42:02 +00:00
|
|
|
pkgver=14
|
2023-02-04 07:21:06 +00:00
|
|
|
pkgrel=1
|
2020-05-27 00:15:46 +00:00
|
|
|
url="https://postmarketos.org"
|
|
|
|
license="BSD-3-Clause"
|
|
|
|
arch="aarch64"
|
|
|
|
options="!check !archcheck !tracedeps"
|
2021-07-24 02:58:23 +00:00
|
|
|
depends="
|
|
|
|
swclock-offset
|
|
|
|
"
|
2022-08-15 14:39:41 +00:00
|
|
|
replaces="upower"
|
2021-02-18 19:40:58 +00:00
|
|
|
subpackages="
|
|
|
|
$pkgname-nonfree-firmware:nonfree_firmware
|
2022-06-04 15:45:55 +00:00
|
|
|
$pkgname-qbootctl
|
2022-08-15 13:26:47 +00:00
|
|
|
$pkgname-ucm
|
2022-10-04 22:14:34 +00:00
|
|
|
$pkgname-vulkan
|
2021-02-18 19:40:58 +00:00
|
|
|
"
|
|
|
|
|
2022-12-09 00:42:02 +00:00
|
|
|
_ucm_commit="9ed12836b269764c4a853411d38ccb6abb70b383"
|
2021-02-18 19:40:58 +00:00
|
|
|
source="
|
|
|
|
alsa-ucm-conf-$_ucm_commit.tar.gz::https://gitlab.com/sdm845-mainline/alsa-ucm-conf/-/archive/$_ucm_commit/alsa-ucm-conf-$_ucm_commit.tar.gz
|
|
|
|
90-feedbackd-pmi8998.rules
|
2021-07-24 02:58:23 +00:00
|
|
|
modemmanager.conf
|
2022-07-16 09:46:20 +00:00
|
|
|
UPower.conf
|
2022-11-21 01:04:27 +00:00
|
|
|
call_audio_idle_suspend_workaround.sh
|
|
|
|
call_audio_idle_suspend_workaround.initd
|
2023-02-04 07:21:06 +00:00
|
|
|
call_audio_idle_suspend_workaround.confd
|
2021-02-18 19:40:58 +00:00
|
|
|
"
|
2020-05-27 00:15:46 +00:00
|
|
|
|
|
|
|
package() {
|
|
|
|
mkdir -p "$pkgdir"
|
2021-03-02 00:59:22 +00:00
|
|
|
install -Dm644 "$srcdir"/90-feedbackd-pmi8998.rules \
|
|
|
|
"$pkgdir"/usr/lib/udev/rules.d/90-feedbackd-pmi8998.rules
|
2022-08-15 14:39:41 +00:00
|
|
|
|
|
|
|
# Shutdown when battery is critical instead of sleep
|
|
|
|
install -Dm644 "$srcdir"/UPower.conf \
|
|
|
|
"$pkgdir"/etc/UPower/UPower.conf
|
2020-05-27 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nonfree_firmware() {
|
|
|
|
pkgdesc="Modem, WiFi and GPU Firmware"
|
2022-10-09 02:03:01 +00:00
|
|
|
depends="
|
|
|
|
pd-mapper
|
|
|
|
pd-mapper-openrc
|
|
|
|
tqftpserv
|
|
|
|
tqftpserv-openrc
|
|
|
|
q6voiced
|
|
|
|
q6voiced-openrc
|
|
|
|
msm-modem
|
|
|
|
msm-modem-uim-selection
|
|
|
|
bootmac
|
2022-11-21 01:04:27 +00:00
|
|
|
alsa-utils
|
2022-10-09 02:03:01 +00:00
|
|
|
"
|
2022-03-17 07:56:22 +00:00
|
|
|
install="$subpkgname.post-install $subpkgname.post-upgrade"
|
2020-05-27 00:15:46 +00:00
|
|
|
mkdir "$subpkgdir"
|
2022-03-17 07:56:22 +00:00
|
|
|
|
|
|
|
install -Dm644 "$srcdir"/modemmanager.conf \
|
|
|
|
"$subpkgdir"/etc/conf.d/modemmanager
|
2022-11-21 01:04:27 +00:00
|
|
|
|
|
|
|
# Call Audio idle suspend workaround code
|
|
|
|
install -Dm755 "$srcdir"/call_audio_idle_suspend_workaround.sh \
|
|
|
|
"$subpkgdir"/usr/sbin/call_audio_idle_suspend_workaround
|
|
|
|
|
|
|
|
# Call Audio idle suspend workaround init script
|
|
|
|
install -Dm755 "$srcdir"/call_audio_idle_suspend_workaround.initd \
|
|
|
|
"$subpkgdir"/etc/init.d/call_audio_idle_suspend_workaround
|
2023-02-04 07:21:06 +00:00
|
|
|
|
|
|
|
install -Dm644 "$srcdir"/call_audio_idle_suspend_workaround.confd \
|
|
|
|
"$subpkgdir"/etc/conf.d/call_audio_idle_suspend_workaround
|
2020-06-21 13:07:32 +00:00
|
|
|
}
|
2021-03-02 00:59:22 +00:00
|
|
|
|
2021-02-18 19:40:58 +00:00
|
|
|
ucm() {
|
|
|
|
provides="alsa-ucm-conf"
|
2022-10-30 13:02:00 +00:00
|
|
|
provider_priority=1
|
2021-02-18 19:40:58 +00:00
|
|
|
|
|
|
|
# install audio config files
|
|
|
|
mkdir -p "$subpkgdir"/usr/share/alsa/ucm2
|
|
|
|
cp -r "$srcdir/alsa-ucm-conf-$_ucm_commit"/ucm2 "$subpkgdir"/usr/share/alsa/
|
|
|
|
}
|
|
|
|
|
2022-06-04 15:45:55 +00:00
|
|
|
qbootctl() {
|
|
|
|
pkgdesc="Enable qbootctl mark-boot-successful service"
|
|
|
|
depends="qbootctl"
|
|
|
|
install="$subpkgname.post-install $subpkgname.post-upgrade"
|
|
|
|
mkdir "$subpkgdir"
|
|
|
|
}
|
|
|
|
|
2022-10-04 22:14:34 +00:00
|
|
|
vulkan() {
|
|
|
|
pkgdesc="Vulkan support for freedreno"
|
|
|
|
install_if="$pkgname vulkan-loader"
|
2022-10-05 12:38:20 +00:00
|
|
|
depends="mesa-vulkan-freedreno"
|
2022-10-04 22:14:34 +00:00
|
|
|
mkdir "$subpkgdir"
|
|
|
|
}
|
|
|
|
|
2021-05-28 15:27:54 +00:00
|
|
|
sha512sums="
|
2022-12-09 00:42:02 +00:00
|
|
|
e55545b0b319bb0cb7e8c6ca961828f7e8c389f97b45492e0c432b9bbd5d3158359828e852ceac68cbead4f850c19e06ac565dac2dcae11d40486ba641e3e7ec alsa-ucm-conf-9ed12836b269764c4a853411d38ccb6abb70b383.tar.gz
|
2021-07-24 02:58:23 +00:00
|
|
|
4f2c22a3a3fc7d380e200ad977578107d81f0e7ade7918e03bdb15b60a564e8db5f47e13cce22f636d38fd3722696bb46076b8872dae0ca2d8a3838522a1f025 90-feedbackd-pmi8998.rules
|
|
|
|
e33f41360ccc4900bb76a26cc7b46bde1fb90facdf45c4fbcebc80499386939948401cacd6df9f779eafab10f4ee77ee1fef3e7bd06f483f8c2a4a644c84f327 modemmanager.conf
|
2022-07-16 09:46:20 +00:00
|
|
|
9d455b56558d453d501a1ad869ffa79f9952ed43485a9847d506db6a78bfcd9f9c9d855660ee1d368eb74f4429385ec166addc30d802261c75562e785fe84c52 UPower.conf
|
2022-11-21 01:04:27 +00:00
|
|
|
aa5cdb138a3cdd0b15d2bbb60c7f67ae0280ddc7d0488cfe2fc44680095a43c1cdacc54d70a689f2117538e9bf1e42758d8c3ac542c9cb8e8dc6d6f3161b7577 call_audio_idle_suspend_workaround.sh
|
2023-02-04 07:21:06 +00:00
|
|
|
5a58475b6e2ee1d655f3f23d8dc19e1cb2f32f1dfff3b9a9337d9c5baad1ec24bfaec0fb9cc03f00e5a291bee27c6b8bffbc65157e2bee5d65ef6d1adcb0910b call_audio_idle_suspend_workaround.initd
|
|
|
|
6fb4c0bd8b7ed534d855a6732ccff783960e3cfa0e0cc7effcbb93afa00798dec15361a37a3200081bc114c8d266b7a0851cc4e819ad36eabdb47a50c72620d9 call_audio_idle_suspend_workaround.confd
|
2021-05-28 15:27:54 +00:00
|
|
|
"
|