Skip to content

Commit

Permalink
Update index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Seshpenguin committed Apr 30, 2024
1 parent 60cb70e commit a20f9be
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ocs2-prolinuxd/src/modules/pl2/index.ts
Expand Up @@ -32,7 +32,8 @@ async function startDeviceSpecificServices() {
// making sure it doesn't already exist
await runCmd("/usr/bin/bash", ["-c", String.raw`if ! grep -q "test-quick-suspend-resume" /usr/lib/systemd/system/ModemManager.service; then sed -i 's/ExecStart=\/usr\/bin\/ModemManager/ExecStart=\/usr\/bin\/ModemManager --test-quick-suspend-resume/g' /usr/lib/systemd/system/ModemManager.service; fi`]);

await runCmd("systemctl", ["start", "qrtr-ns"]);
//qrtr-ns replaced with in-kernel?
//await runCmd("systemctl", ["start", "qrtr-ns"]);
await runCmd("systemctl", ["start", "rmtfs"]);
await runCmd("systemctl", ["start", "msm-modem-uim-selection"]);
await runCmd("systemctl", ["start", "pd-mapper"]);
Expand Down Expand Up @@ -116,4 +117,4 @@ export async function loadPL2Module() {
log.info("Cleaning up PL2 Module...");
await stopSecureSwichRole();
}
}
}

0 comments on commit a20f9be

Please sign in to comment.