I’m trying to flash the Jetson Orin Dev Kit Board by following this tutorial:
I’ve downloaded the Driver Package (BSP) and Sample Root Filesystem from here:
https://developer.nvidia.com/embedded/jetson-linux-r364
I’m entering these commands on the terminal as instructed from the quick start guide:
$ tar xf ${L4T_RELEASE_PACKAGE}
$ sudo tar xpf ${SAMPLE_FS_PACKAGE} -C Linux_for_Tegra/rootfs/
$ cd Linux_for_Tegra/
$ sudo ./tools/l4t_flash_prerequisites.sh
$ sudo ./apply_binaries.sh
I then put my Jetson into Force Recovery Mode by following the steps explained in the quick start, and I can see the device as expected:
Bus 001 Device 052: ID 0955:7523 NVIDIA Corp. APX
According to the Quick Start guide, I should enter this command to flash my Jetson Nano SD card:
Jetson Orin Nano Developer Kit (SD card):
$ sudo ./tools/kernel_flash/l4t_initrd_flash.sh --external-device mmcblk0p1 \
-c tools/kernel_flash/flash_l4t_t234_nvme.xml -p "-c bootloader/generic/cfg/flash_t234_qspi.xml" \
--showlogs --network usb0 jetson-orin-nano-devkit internal
But I get the following output:
...
bl is uefi
Making Boot image... done.
Not signing of boot.img
Making recovery ramdisk for recovery image...
Re-generating recovery ramdisk for recovery image...
/home/nonrootuser/Documents/JetsonBSP/Linux_for_Tegra/bootloader/ramdisk_tmp /home/nonrootuser/Documents/JetsonBSP/Linux_for_Tegra/bootloader /home/nonrootuser/Documents/JetsonBSP/Linux_for_Tegra
72730 blocks
gzip: /home/nonrootuser/Documents/JetsonBSP/Linux_for_Tegra/kernel/Image: not in gzip format
_BASE_KERNEL_VERSION=5.15.148-tegra
command is failed
Error: failed to generate images
Cleaning up...
I can’t see any other errors in the log outside of the “image not in gzip format” error. Here is the full output.
ErrorLog.txt (26.7 KB)
Can anyone tell me what I might be doing wrong?
My goal is to make changes to the kernel, which is why I’d like to build from the source modules and follow this developer guide, but from what I can tell here I’m missing something that doesn’t allow me to flash at all, even if I download the released Linux BSP without any changes.