Lines Matching full:boards
7 """A single regular expression for matching boards to build"""
99 class Boards: class
100 """Manage a list of boards."""
116 """Read a list of boards from a board file.
121 fname: Filename of boards.cfg file
143 """Return a list of available boards.
151 """Build a dictionary containing all the boards.
164 """Return a dictionary containing the selected boards
176 """Return a list of selected boards
184 """Return a list of selected boards
240 def SelectBoards(self, args, exclude=[], boards=None): argument
241 """Mark boards selected based on args
243 Normally either boards (an explicit list of boards) or args (a list of
247 If boards and args are both empty, all boards are selected.
250 args: List of strings specifying boards to include, either named,
252 empty, all boards are selected.
253 exclude: List of boards to exclude, regardless of 'args'
254 boards: List of boards to build
258 Dictionary which holds the list of boards which were selected
285 elif boards:
286 if board.target in boards:
304 if boards:
305 remaining = set(boards) - set(found)
307 warnings.append('Boards not found: %s\n' % ', '.join(remaining))