17e3e1ae53
- 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
11 lines
146 B
Text
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 $?
|
|
}
|