0a2dbea03d
* Qualcomm MSM modem: 'rmtfs' support packages * qcom_rmtfs: Server that talks to modem over IPC to allow it read/write data for its persistent storage. This is needed for it to boot, as well as periodically during usage. Added a patch that it expects the storage path symlinks in /etc instead of /boot. * qrtr: IPC library for rmtfs * libqipcrtr4msmipc: adapter library to make qrtr work on kernels with AF_MSM_IPC support. AF_QIPCRTR is the mainline equivalent since Linux ~4.7. * msmipc-dev: Header files for qrtr and libqipcrtr4msmipc. Thanks to Bjorn Andersson <https://github.com/andersson> for rmtfs and qrtr. * libsmdpkt_wrapper: adapter lib for QMI clients The SMD serial packet driver in Qualcomm kernels has, AFAICT, a bug in poll(); this works around it so that qmicli et al can work. * i9195: firmware (modem only right now) * add ofono (with patch for MSM devices) Based on Alpine's package. * i9195: add modem support * move all modem related packages to aports/modem
41 lines
1.2 KiB
Text
41 lines
1.2 KiB
Text
# Reference: <https://postmarketos.org/devicepkg>
|
|
pkgname="device-samsung-i9195"
|
|
pkgdesc="Samsung Galaxy S4 Mini"
|
|
pkgver=0.3
|
|
pkgrel=0
|
|
url="https://postmarketos.org"
|
|
license="MIT"
|
|
arch="noarch"
|
|
options="!check"
|
|
depends="postmarketos-base linux-samsung-i9195 mkbootimg"
|
|
subpackages="$pkgname-nonfree-firmware:nonfree_firmware $pkgname-rmtfs"
|
|
makedepends="devicepkg-dev"
|
|
source="deviceinfo"
|
|
|
|
build() {
|
|
devicepkg_build $startdir $pkgname
|
|
}
|
|
|
|
package() {
|
|
devicepkg_package $startdir $pkgname
|
|
}
|
|
|
|
nonfree_firmware() {
|
|
pkgdesc="Modem firmware"
|
|
# Non-firmware packages placed here, because they aren't useful without firmware
|
|
depends="firmware-samsung-i9195-modem qcom_rmtfs libqipcrtr4msmipc libsmdpkt_wrapper"
|
|
mkdir "$subpkgdir"
|
|
}
|
|
|
|
rmtfs() {
|
|
install_if="$pkgname qcom_rmtfs"
|
|
|
|
local _linkpath="$subpkgdir"/etc/qcom_rmtfs/partition-symlinks
|
|
mkdir -p $_linkpath
|
|
cd $_linkpath
|
|
ln -s /dev/disk/by-partlabel/modemst1 modem_fs1
|
|
ln -s /dev/disk/by-partlabel/modemst2 modem_fs2
|
|
ln -s /dev/disk/by-partlabel/fsg modem_fsg
|
|
}
|
|
|
|
sha512sums="8e4ff08c7f2a7e7c55370be0547908b088bdb96e1d51d45e8d2840958bacb31fab0b9774b29332509270b2e18d8b569a159ed96fc9c6c2ed2f360fbb9b5cb26e deviceinfo"
|