pmaports/modem/qrtr/qrtr.initd
Bhushan Shah 17e3e1ae53 modem/qrtr: make it possible to start QRTR services (#1485)
- Instead of just libqrtr, build all targets of qrtr
- install the qrtr.initd which starts qrtr services before rmtfs is
started
- in post-install enable qrtr service at boot
2018-05-16 23:13:07 +02:00

11 lines
146 B
Text

#!/sbin/runscript
depend() {
before qcom_rmtfs
}
start() {
ebegin "Starting QRTR service"
/usr/bin/qrtr-cfg 1 && /usr/bin/qrtr-ns
eend $?
}