mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-11-04 00:52:08 +00:00 
			
		
		
		
	target/descriptor: Do not convert the module list to strings
Change the type of the `modules` to `list` so that additional configuration can be supplied to individual modules as a dict of values.
This commit is contained in:
		@@ -166,7 +166,7 @@ COMMON_TARGET_PARAMS = [
 | 
			
		||||
              *not* need to be writable by unprivileged users or rooted devices
 | 
			
		||||
              (WA will install with elevated privileges as necessary).
 | 
			
		||||
              '''),
 | 
			
		||||
    Parameter('modules', kind=list_of_strings,
 | 
			
		||||
    Parameter('modules', kind=list,
 | 
			
		||||
              description='''
 | 
			
		||||
              A list of additional modules to be installed for the target.
 | 
			
		||||
 | 
			
		||||
@@ -222,7 +222,7 @@ COMMON_PLATFORM_PARAMS = [
 | 
			
		||||
              Hardware model of the platform. If not specified, an attempt will
 | 
			
		||||
              be made to read it from target.
 | 
			
		||||
              '''),
 | 
			
		||||
    Parameter('modules', kind=list_of_strings,
 | 
			
		||||
    Parameter('modules', kind=list,
 | 
			
		||||
              description='''
 | 
			
		||||
              An additional list of modules to be loaded into the target.
 | 
			
		||||
              '''),
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user