1
0
mirror of https://github.com/ARM-software/devlib.git synced 2024-10-05 18:30:50 +01:00

target: Make default modules list empty

Default modules are a recurrent source of errors as they fail to
initialize (cgroups particularly) on any recent target. This leads to
error in basically any workload-automation setup on Android 12 and
above targets.

Since modules can now be lazily loaded upon Target attribute access,
there is no reason to preload those anymore.
This commit is contained in:
Douglas Raillard 2023-06-26 16:17:30 +01:00 committed by Marc Bonnici
parent 6939e5660e
commit 7276097d4e

View File

@ -130,13 +130,7 @@ class Target(object):
os = None
system_id = None
default_modules = [
'hotplug',
'cpufreq',
'cpuidle',
'cgroups',
'hwmon',
]
default_modules = []
@property
def core_names(self):