[How to] build a whole image and flash it to jeston-tx2 in recovery mode?

We want to give a binary image(firmware) to factory to flash tx2 needed not plug sd card. Is this possible? and how?

thanks in advance.

hello garretzou,

you could backup the image locally, and deliver the image to factory for flashing,
please check below steps to clone APP partitions:

  1. Backup the system.img from golden board.
    $ sudo ./flash.sh -r -k APP -G system.img jetson-tx2 mmcblk0p1
  2. Copy the backup raw image to flashing directory.
    $ sudo cp system.img.raw bootloader/system.img
  3. Restore APP image to new board.
    $ sudo ./flash -r -k APP jetson-tx2 mmcblk0p1

please also check similar issue, Topic 1028867 for reference.
thanks