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
21 lines
613 B
Text
21 lines
613 B
Text
#!/sbin/runscript
|
|
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Purpose License v2
|
|
# $Header: ./gentoo-x86-cvsroot/net-misc/ofono/files/ofono.initd,v 1.1 2009/08/24 13:20:40 dagger Exp $
|
|
|
|
depend() {
|
|
need dbus
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting oFono"
|
|
# libsmdpkt_wrapper.so may not exist, if this device doesn't need it
|
|
start-stop-daemon --start --quiet --exec /usr/bin/env LD_PRELOAD=/usr/lib/preload/libsmdpkt_wrapper.so /usr/sbin/ofonod
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping oFono"
|
|
start-stop-daemon --stop --quiet --exec /usr/sbin/ofonod
|
|
eend $?
|
|
}
|