Hi Team,
Using this Link:- GitHub - OE4T/tegra-demo-distro: Reference/demonstration distro for meta-tegra · GitHub
We have build the image (demo-image-full) using yocto-build system for the “Jetson Orin Nano Super Developer Kit” using steps mentioned in above link.
During Image-Building i have selected machine type is “p3768-0000-p3767-0003” based on EVK information.
(Command:- . ./setup-env --machine p3768-0000-p3767-0003 build-0003)
In final package below files created in build path:- “build/tmp/deploy/images/p3768-0000-p3767-0003/”
“demo-image-full-p3768-0000-p3767-0003.rootfs-20260605013044.tegraflash-tar.zst”
Using below command:-
unzstd demo-image-full-jetson-orin-nano-devkit.rootfs-20260603190504.tegraflash-tar.zst
tar xf demo-image-full-jetson-orin-nano-devkit.rootfs-20260603190504.tegraflash-tar
Now untar folder having below script for flashing:-
==================
boardvars.sh
doexternal.sh
doflash.sh
generate_bup_payload.sh
l4t_sign_image.sh
tegra-flash-helper.sh
==================
We have put the device in recovery-mode and using “doflash.sh” & “doexternal.sh” script try to flash the EVK-Kit (SSD-attached) but not get any success in it.
Please check below script file:-
cat doexternal.sh
#!/bin/sh
MACHINE=p3768-0000-p3767-0003 BOARDID=${BOARDID:-3767} FAB=${FAB:-300} CHIPREV=${CHIPREV:-0} BOARDSKU=${BOARDSKU:-0003} ./tegra-flash-helper.sh --sdcard -B 4096 -b demo-image-full --external-device external-flash.xml.in tegra234-p3768-0000+p3767-0003-nv-super.dtb tegra234-p3767-0001-sdram-l4t.dts gbe-uphy-config-8,hsstp-lane-map-3,hsio-uphy-config-0 boot.img demo-image-full.ext4 “$@”
============================================================
cat doflash.sh
#!/bin/sh
MACHINE=p3768-0000-p3767-0003 ./tegra-flash-helper.sh flash.xml.in tegra234-p3768-0000+p3767-0003-nv-super.dtb tegra234-p3767-0001-sdram-l4t.dts gbe-uphy-config-8,hsstp-lane-map-3,hsio-uphy-config-0 boot.img demo-image-full.ext4 “$@”
============================================================
Kindly let us know how to flash the EVK for SSD using Yocto-Based compiled Images. Let us know if we need to configure during compile time or flashing time. Please help us on this.