From ae6d8a24ce1928baf7fb03f39ec1d2f0f3f7500a Mon Sep 17 00:00:00 2001 From: Aoi Kondo Date: Sun, 24 Dec 2023 22:08:13 +0900 Subject: [PATCH 1/2] Update flash_jetson_external_storage.sh Add a script description about mmcblk1p1 (SD card) --- flash_jetson_external_storage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flash_jetson_external_storage.sh b/flash_jetson_external_storage.sh index 6c26b9f..fee6634 100755 --- a/flash_jetson_external_storage.sh +++ b/flash_jetson_external_storage.sh @@ -51,7 +51,7 @@ function help_func { echo "Usage: ./flash_jetson_external_storage [OPTIONS]" echo " No option flashes to nvme0n1p1 by default" - echo " -s | --storage - Specific storage media to flash; sda1 or nvme0n1p1" + echo " -s | --storage - Specific storage media to flash; sda1, nvme0n1p1 or mmcblk1p1" echo " -h | --help - displays this message" } From 0ce16d7c399ba53303203cb3f7e384ca51cbbea5 Mon Sep 17 00:00:00 2001 From: Aoi Kondo Date: Sun, 24 Dec 2023 22:11:51 +0900 Subject: [PATCH 2/2] Update README.md Add a description of mmcblk1p1 (SD card) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9205ae6..1652c12 100644 --- a/README.md +++ b/README.md @@ -46,11 +46,11 @@ Install dependencies for flashing the Jetson. This script must be run on the hos ### flash_jetson_external_storage.sh Flashes the Jetson attached to the host via a USB cable. This script must be run on the host machine. The Jetson must be in Force Recovery Mode. -The script prepares external storage attached to the Jetson, either NVMe or USB. Default is NVMe as the Orin and Xaviers have M.2 Key M slots which accept NVMe SSDs. The SSDs must be PCIE, SATA does not work. For the Xavier NX and Orin NX and Orin Nano, this flashes the QSPI memory on the Jetson module. +The script prepares external storage attached to the Jetson, either NVMe, USB or SD Card. Default is NVMe as the Orin and Xaviers have M.2 Key M slots which accept NVMe SSDs. The SSDs must be PCIE, SATA does not work. For the Xavier NX and Orin NX and Orin Nano, this flashes the QSPI memory on the Jetson module. ``` Usage: ./flash_jetson_external_storage [OPTIONS] No option flashes to nvme0n1p1 by default - -s | --storage - Specific storage media to flash; sda1 or nvme0n1p1 + -s | --storage - Specific storage media to flash; sda1, nvme0n1p1 or mmcblk1p1 -h | --help - displays this message ```