Lines Matching full:boards
37 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,
79 print arg, ': %d boards' % len(why_selected[arg])
82 print ('Total boards to build for each commit: %d\n' %
110 def DoBuildman(options, args, toolchains=None, make_func=None, boards=None, argument
123 board: Boards() object to use, containing a list of available
124 boards. If this is None it will be created and scanned.
202 # Work out what subset of the boards we are building
203 if not boards:
204 board_file = os.path.join(options.git, 'boards.cfg')
208 sys.exit("Failed to generate boards.cfg")
210 boards = board.Boards()
211 boards.ReadBoards(os.path.join(options.git, 'boards.cfg'))
219 if options.boards:
221 for b in options.boards:
225 why_selected, board_warnings = boards.SelectBoards(args, exclude,
227 selected = boards.GetSelected()
229 sys.exit(col.Color(col.RED, 'No matching boards found'))
316 # Work out which boards to build
317 board_selected = boards.GetSelectedDict()