Lines Matching full:maintainers
9 Converter from Kconfig and MAINTAINERS to a board database.
39 # Status, Arch, CPU, SoC, Vendor, Board, Target, Options, Maintainers
64 *_defconfig, MAINTAINERS and Kconfig*. False otherwise.
87 not filename == 'MAINTAINERS'):
277 """The database of board status and maintainers."""
310 """Return the maintainers of the given board.
313 Maintainers of the board. If the board has two or more maintainers,
317 print >> sys.stderr, "WARNING: no maintainers for '%s'" % target
323 """Parse a MAINTAINERS file.
325 Parse a MAINTAINERS file and accumulates board status and
326 maintainers information.
329 file: MAINTAINERS file to be parsed
332 maintainers = []
335 # Check also commented maintainers
340 maintainers.append(rest)
353 self.database[target] = (status, maintainers)
355 maintainers = []
359 self.database[target] = (status, maintainers)
362 """Add Status and Maintainers information to the board parameters list.
369 if 'MAINTAINERS' in filenames:
370 database.parse_file(os.path.join(dirpath, 'MAINTAINERS'))
375 params['maintainers'] = database.get_maintainers(target)
389 'options', 'maintainers')