Lines Matching full:remote

35   --image-2=IMAGE_2 --board-1=BOARD_1 --board-2=BOARD_2 --remote-1=REMOTE_1 \
36 --remote-2=REMOTE_2
43 the IP addresses of the 2 remote devices on which to run crosperf (if you have
44 only a single device available, specify it with --remote=REMOTE). Run with -h to
93 remote: {remote}
191 def output_image_info(f, label, image, board, remote): argument
198 @param remote: The string IP address on which to install the image.
201 label=label, image=image, board=board, remote=remote))
215 @param remote_1: The string IP address/name of the first remote device.
216 @param remote_2: The string IP address/name of the second remote device.
397 parser, 'Specifying the remote devices (required)')
398 remote_group.add_option('--remote', metavar='IP', type='string',
400 help='IP address/name of remote device to use, if '
402 'using two devices, use options --remote-1 '
403 'and --remote-2 instead.')
404 remote_group.add_option('--remote-1', metavar='IP', type='string',
407 remote_group.add_option('--remote-2', metavar='IP', type='string',
484 if not options.remote and (not options.remote_1 or not options.remote_2):
485 logging.error('You must specify the remote device(s) to use: either a '
486 'single device with --remote, or else two devices with '
487 '--remote-1 and --remote-2.')
489 if options.remote and options.remote_1 and options.remote_2:
490 logging.error('Specify either one remote device with --remote, or two '
491 'devices with --remote-1 and --remote-2, but not both.')
529 if options.remote:
530 remote_1, remote_2 = options.remote, options.remote