Lines Matching +full:- +full:- +full:target +full:- +full:list

3 # SPDX-License-Identifier:	GPL-2.0+
24 props: List of properties to check
37 """A list of expressions each of which must match with properties.
39 This provides a list of 'AND' expressions, meaning that each must
47 """Add an Expr object to the list to check.
50 expr: New Expr object to add to the list of those that must
65 props: List of properties to check
76 def __init__(self, status, arch, cpu, soc, vendor, board_name, target, options): argument
86 target: Target name (use make <target>_defconfig to configure)
87 options: board-specific options (e.g. integratorcp:CM1136)
89 self.target = target
96 self.props = [self.target, self.arch, self.cpu, self.board_name,
102 """Manage a list of boards."""
104 # Use a simple list here, sinc OrderedDict requires Python 2.7
108 """Add a new board to the list.
110 The board's target member must not already exist in the board list.
118 """Read a list of boards from a board file.
120 Create a board object for each and add it to our _boards list.
133 if fields[upto] == '-':
145 """Return a list of available boards.
148 List of Board objects
157 key is board.target
162 board_dict[board.target] = board
169 List of Board objects that are marked selected
174 board_dict[board.target] = board
178 """Return a list of selected boards
181 List of Board objects that are marked selected
186 """Return a list of selected boards
189 List of board names that are marked selected
191 return [board.target for board in self._boards if board.build_it]
194 """Convert command line arguments to a list of terms.
211 args: List of command line arguments
213 A list of Term objects
223 syms += sym_build[:-1]
246 args: List of strings specifying boards to include, either named,
247 or by their target, architecture, cpu, vendor or soc. If
249 exclude: List of boards to exclude, regardless of 'args'
252 Dictionary which holds the list of boards which were selected
288 result[matching_term].append(board.target)
289 result['all'].append(board.target)