Home | History | Annotate | Download | only in site_utils

Lines Matching full:board

40     """Get the board of the remote host.
44 @return: A string representing the board of the remote host.
46 logging.info('Board unspecified, attempting to determine board from host.')
49 board = host.get_board().replace(constants.BOARD_PREFIX, '')
52 'Cannot determine board, please specify a --board option.')
53 logging.info('Detected host board: %s', board)
54 return board
74 if not arguments.board or not arguments.build:
75 raise ValueError('--board and --build are both required when '
119 parser.add_argument('-b', '--board', metavar='BOARD', default=default_board,
121 help='Board for which the test will run. Default: %s' %
134 help='Use AUTOTEST_DIR instead of normal board sysroot '
199 command = [_QUICKMERGE_SCRIPTNAME, '--board='+arguments.board]
249 # If the board has not been specified through --board, and is not set in the
250 # default_board file, determine the board by ssh-ing into the host. Also
253 if arguments.board is None:
254 arguments.board = _get_board_from_host(arguments.remote)
255 argv = ['--board=%s' % (arguments.board,)] + argv
261 sysroot_path = os.path.join('/build', arguments.board, '')
292 build=arguments.build, board=arguments.board,
315 '--board=%s' % (arguments.board,),