From 147a7593e7bf36acb9c811c0eb9e370468864c46 Mon Sep 17 00:00:00 2001 From: Rick Lan Date: Sun, 29 Dec 2019 23:23:55 +1000 Subject: [PATCH] fix unable to launch app issue --- selfdrive/dragonpilot/appd/appd.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/selfdrive/dragonpilot/appd/appd.py b/selfdrive/dragonpilot/appd/appd.py index 8c669b51f..d2262a111 100644 --- a/selfdrive/dragonpilot/appd/appd.py +++ b/selfdrive/dragonpilot/appd/appd.py @@ -77,12 +77,12 @@ def main(gctx=None): put_nonblocking('DragonRunWaze', '0') # we want to disable all app when boot - system("pm uninstall %s" % tomtom) - system("pm uninstall %s" % autonavi) - system("pm uninstall %s" % mixplorer) + system("pm disable %s" % tomtom) + system("pm disable %s" % autonavi) + system("pm disable %s" % mixplorer) system("pm disable %s" % gpsservice) - system("pm uninstall %s" % aegis) - system("pm uninstall %s" % waze) + system("pm disable %s" % aegis) + system("pm disable %s" % waze) thermal_sock = messaging.sub_sock('thermal')