Lines Matching full:board
43 that it is called by such as the name of its board, or a public name,
49 board: The name of the hardware board in a device.
51 board.
68 # android product `zzz` has following board name.
74 # A dict of product:board for product board names, can be defined in global
84 bat has a board name of bat_land. Therefore the product name bat
98 """Get the board name of a product.
100 The board name of an android device is what the hardware is named.
105 @returns: The board name of the given product.
134 # regex pattern for CLIENT/android_standalone_images_[board]. For example,
136 # android board `xyz` has following standalone images.
141 # A dict of board:images for standalone images, can be defined in global
142 # config CLIENT/android_standalone_images_[board]
146 # regex pattern for CLIENT/android_standalone_images_[board]. For example,
148 # android board `xyz` has following standalone images.
153 # A dict of board:images for zipped images, can be defined in global
154 # config CLIENT/android_zipped_images_[board]
158 def get_standalone_images(cls, board):
159 """Get a list of standalone image files for given board.
161 @param board: Name of the board.
165 if board in cls.standalone_images_map:
166 logging.debug('Found override of standalone image files for board '
167 '%s: %s', board, cls.standalone_images_map[board])
168 return cls.standalone_images_map[board]
174 def get_zipped_images(cls, board):
175 """Get a list of image files from zip_images artifact for given board.
177 @param board: Name of the board.
181 if board in cls.zipped_images_map:
182 logging.debug('Found override of zip image files for board '
183 '%s: %s', board, cls.zipped_images_map[board])
184 return cls.zipped_images_map[board]
200 # (os, board) = 'artifacts'
211 # regex pattern for CLIENT/android_artifacts_[board]. For example, global
213 # android board `xyz` needs to stage artifacts
218 # A dict of board:artifacts, can be defined in global config
219 # CLIENT/android_artifacts_[board]
223 def get_artifacts_for_reimage(cls, board, os='android'):
224 """Get artifacts need to be staged for reimage for given board.
226 @param board: Name of the board.
230 logging.debug('artifacts for %s %s', os, board)
231 if board in cls.artifacts_map:
232 logging.debug('Found override of artifacts for board %s: %s', board,
233 cls.artifacts_map[board])
234 artifacts = cls.artifacts_map[board]
235 elif (os, board) in cls.DEFAULT_ARTIFACTS_MAP:
236 artifacts = cls.DEFAULT_ARTIFACTS_MAP[(os, board)]