Lines Matching full:boards
38 str = '%s %s for %d boards' % (
51 provided by the user, and the value is the list of boards
53 in 400 boards, so in this case the key would be 'arm' and
55 boards_selected: Dict of selected boards, key is target name,
78 print arg, ': %d boards' % len(why_selected[arg])
81 print ('Total boards to build for each commit: %d\n' %
84 def DoBuildman(options, args, toolchains=None, make_func=None, boards=None, argument
97 board: Boards() object to use, containing a list of available
98 boards. If this is None it will be created and scanned.
176 # Work out what subset of the boards we are building
177 if not boards:
178 board_file = os.path.join(options.git, 'boards.cfg')
182 sys.exit("Failed to generate boards.cfg")
184 boards = board.Boards()
185 boards.ReadBoards(os.path.join(options.git, 'boards.cfg'))
192 why_selected = boards.SelectBoards(args, exclude)
193 selected = boards.GetSelected()
195 sys.exit(col.Color(col.RED, 'No matching boards found'))
280 # Work out which boards to build
281 board_selected = boards.GetSelectedDict()