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
30 lines
1 KiB
Text
30 lines
1 KiB
Text
pkgname=qrtr
|
|
pkgver=1.0_git20180131
|
|
pkgrel=0
|
|
pkgdesc="Userspace reference for net/qrtr in the Linux kernel"
|
|
url="https://github.com/andersson/qrtr"
|
|
arch="all"
|
|
license="BSD-3-Clause"
|
|
makedepends="msmipc-dev"
|
|
subpackages="$pkgname-doc $pkgname-dev"
|
|
_commit="dbffdd0193996723fdc9456e09736a30a32daf25"
|
|
source="
|
|
qrtr.tgz::https://github.com/andersson/qrtr/archive/"$_commit".tar.gz
|
|
fix-cfg-include.patch
|
|
"
|
|
builddir="$srcdir""/qrtr-"$_commit
|
|
options="!check"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
make C_INCLUDE_PATH=/usr/src/msmipc-dev/include libqrtr.so
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" prefix=/usr "$pkgdir"/usr/lib/libqrtr.so.1.0 "$pkgdir"/usr/include/libqrtr.h
|
|
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/COPYING
|
|
}
|
|
|
|
sha512sums="4fbf9bcb26794a54e9784bafd0ee46a0c628327d6b31a438ca6d907185260cf590fc90a2e22139ebf3b939750277f434d67096396192d1ee3b0542c2feb39075 qrtr.tgz
|
|
fca4a8b886b7bb6a53a83f3a69e3ae03b8fc462f6f6bf6c812af1a1036aa5a8c1f40b6cabf921e91c55423c37309d4e56ac8ccf0d4c5f7db41c1005afaf19382 fix-cfg-include.patch"
|