cro3

[!NOTE] This guide is automatically generated from doc comments in src/cmd/*.rs. To update the contents, please edit the source files and rebuild cro3.

Variables used in this guide

Execute a shell command on a DUT

cro3 dut shell –dut ${DUT} – uname -a

Add a DUT to the list

cro3 dut list –add ${IP}

Show the list of DUTs registered

cro3 dut list

Check connection and remove DUTs that have reused IP addresses

cro3 dut list –update

Show DUT info

cro3 dut info –dut ${DUT}

Show specific DUT info (e.g. ipv6_addr)

cro3 dut info –dut ${DUT} ipv6_addr

Scan DUTs on the same network where --remote is connected.

cro3 dut discover –remote ${IP} | tee /tmp/dut_discovered.json

Monitor DUTs and keep them accessible via local port forwarding

cro3 dut monitor ${DUT}

## Flash images (cros flash wrapper)

Flash an image into a remote DUT

cro3 flash –cros ${CROS} –dut ${DUT}

Flash an image into a USB stick

cro3 flash –cros ${CROS} –usb –board ${BOARD}

## Controlling a Servo (Hardware debugging tool)
Note: the official document is [here](https://chromium.googlesource.com/chromiumos/third_party/hdctools/+/HEAD/docs/servo.md)

Show list of Servo / Cr50 devices

cro3 servo list

Do the same thing in JSON format

cro3 servo list –json

Reset Servo USB ports (useful when cro3 servo list does not work)

sudo which cro3 servo reset

## Get / update a ChromiumOS source checkout (similar to `git clone` or `git pull`)

cro3 sync –cros /work/chromiumos_stable/ –version 14899.0.0 cro3 sync –cros /work/chromiumos_stable/ –version R110-15263.0.0

following command needs a mirror repo which has cloned with –mirror option

cro3 sync –cros /work/chromiumos_versions/R110-15248.0.0/ –version R110-15248.0.0 –reference /work/chromiumos_mirror/ cro3 sync –cros /work/chromiumos_versions/R110-15248.0.0/ –version R110-15248.0.0 # you can omit –reference if the config is set ```