Lines Matching +full:- +full:- +full:target +full:- +full:list
5 # SPDX-License-Identifier: GPL-2.0+
13 Run 'tools/genboardscfg.py -h' for available options.
36 # List of boards
39 # Status, Arch, CPU, SoC, Vendor, Board, Target, Options, Maintainers
154 'target': <target_name>,
164 if colon == -1:
180 # Set '-' if the value is empty.
186 params[key] = '-'
189 params['target'], match, rear = defconfig.partition('_defconfig')
192 # fix-up for aarch64
196 # fix-up options field. It should have the form:
198 if params['options'] != '-':
201 elif params['config'] != params['target']:
222 """Read the queues and append the data to the paramers list"""
248 q = multiprocessing.Queue(maxsize=-1)
249 p = multiprocessing.Process(target=scan_defconfigs_for_multiprocess,
255 # The resulting data should be accumulated to this list
283 def get_status(self, target): argument
287 Display a warning message and return '-' if status information
291 'Active', 'Orphan' or '-'.
293 if not target in self.database:
294 print >> sys.stderr, "WARNING: no status info for '%s'" % target
295 return '-'
297 tmp = self.database[target][0]
306 (tmp, target))
307 return '-'
309 def get_maintainers(self, target): argument
316 if not target in self.database:
317 print >> sys.stderr, "WARNING: no maintainers for '%s'" % target
320 return ':'.join(self.database[target][1])
333 status = '-'
352 for target in targets:
353 self.database[target] = (status, maintainers)
356 status = '-'
358 for target in targets:
359 self.database[target] = (status, maintainers)
362 """Add Status and Maintainers information to the board parameters list.
365 params_list: A list of the board parameters
373 target = params['target']
374 params['status'] = database.get_status(target)
375 params['maintainers'] = database.get_maintainers(target)
385 params_list: The list of board parameters
388 FIELDS = ('status', 'arch', 'cpu', 'soc', 'vendor', 'board', 'target',
401 # insert two spaces between fields like column -t would
437 parser.add_option('-f', '--force', action="store_true", default=False,
439 parser.add_option('-j', '--jobs', type='int', default=cpu_count,
441 parser.add_option('-o', '--output', default=OUTPUT_FILE,