Home | History | Annotate | Download | only in site_utils

Lines Matching refs:BOARD

35   --image-2=IMAGE_2 --board-1=BOARD_1 --board-2=BOARD_2 --remote-1=REMOTE_1 \
42 have the same board, you can specify that single board with --board=BOARD); and
92 board: {board}
191 def output_image_info(f, label, image, board, remote):
197 @param board: The string board associated with the image.
201 label=label, image=image, board=board, remote=remote))
213 @param board_1: The string board associated with the first image.
214 @param board_2: The string board associated with the second image.
382 board_group.add_option('--board', metavar='BOARD', type='string',
384 help='Name of the board associated with the images, '
385 'if both images have the same board. If each '
386 'image has a different board, use '
387 'options --board-1 and --board-2 instead.')
388 board_group.add_option('--board-1', metavar='BOARD', type='string',
390 help='Board associated with the first image.')
391 board_group.add_option('--board-2', metavar='BOARD', type='string',
393 help='Board associated with the second image.')
475 if not options.board and (not options.board_1 or not options.board_2):
476 logging.error('You must specify the board name(s): either a single '
477 'board with --board, or else two board names with '
478 '--board-1 and --board-2.')
480 if options.board and options.board_1 and options.board_2:
481 logging.error('Specify either one board with --board, or two boards '
482 'with --board-1 and --board-2, but not both.')
534 if options.board:
535 board_1, board_2 = options.board, options.board