From 5a317dd9be97303c4aeaf2fbdc162685f45fbe56 Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Tue, 9 Aug 2022 10:23:15 +0100 Subject: [PATCH] lisa.target: Allow mount to work on Android FIX It has been reported that rs.media.module process is necessary for the mount command to work on Android, so add it to the list of critical tasks to not freeze. --- lisa/target.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lisa/target.py b/lisa/target.py index ef1bbbd38..b9db10057 100644 --- a/lisa/target.py +++ b/lisa/target.py @@ -235,6 +235,11 @@ class Target(Loggable, HideExekallID, ExekallTaggable, Configurable): # Similar issue with HiKey960, the board will crash if this is frozen # for too long. 'watchdogd', + # AOSP 'mount' command needs to communicate with 'emulated' + # threads, the threads are spawn by the process 'rs.media.module', + # so need to avoid freezing it to avoid stuck with execute 'mount' + # command. + 'rs.media.module', ] } """ -- GitLab