Lines Matching full:board
23 ## Same as above except only do it for board daisy - no bootstrapping involved.
25 --chromeos_root=/chromeos/dir --board=daisy
59 board=None,
81 self._board = board
456 board.
471 """Build a specific tool for a specific board.
493 for board in boards_to_build:
494 if board == 'host':
497 target = misc.GetCtargetFromBoard(board, self._chromeos_root)
500 'Unsupported board "{0}", skip.'.format(board))
501 failed.append(board)
503 # Skip this board if we have already built for a board that has the
507 'Skipping toolchain for board "{}"'.format(board))
517 tool_name, board))
518 failed.append(board)
520 self._logger.LogOutput('Successfully built {0} for board {1}.'.format(
521 tool_name, board))
538 'Failed to build {0} for the following board(s): "{1}"'.format(
582 cmd = ('cd {0} && cros_sdk -- -- ./setup_board --board=amd64-host '
707 parser.add_argument('--board',
708 dest='board',
710 help=('Only build toolchain for specific board(s). '
823 if not options.board and not options.bootstrap:
824 parser.error('You must specify either "--board" or "--bootstrap".')
827 if (options.board and options.bootstrap and
829 parser.error('You must specify only one of "--board" and "--bootstrap".')
844 board=options.board,