-
looks like Problem installing a built image for Orin Nano on nvme. i build the image and flash the broad . setup-env --machine jetson-orin-nano-devkit-nvme
bitbake demo-image-base
tar -zxvf ~/Documents/tegra-demo-distro/build/tmp/deploy/images/jetson-orin-nano-devkit-nvme/demo-image-base-jetson-orin-nano-devkit-nvme.tegraflash.tar.gz
sudo ./doflash here the internal part flash log:
at the output in UART console:
i'm not success to flash the rootfs, beacause it's hang on Setp3, the script can't found the board. the local.conf just add:
in my case, my board has been fused. i fuse my do_install:append:tegra234() {
# Remove the existing eks.img installation
rm ${D}${datadir}/tegraflash/eks.img
# Install the custom eks_t234.img file
install -m 0644 /home/ubuntu/Documents/tegra-demo-distro/build/conf/eks_t234.img ${D}${datadir}/tegraflash/eks.img
} i use |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Hi @imoyakin |
Beta Was this translation helpful? Give feedback.
-
the uart log may not complete
|
Beta Was this translation helpful? Give feedback.
-
I have fixed this issue by follow this article case $chip_sku in
00)
;;
D3|D4)
BPF_FILE=$(echo "$BPF_FILE" | sed -e"s,T.*-A1,TE980M-A1,")
;;
D5|D6)
BPF_FILE=$(echo "$BPF_FILE" | sed -e"s,T.*-A1,TE950M-A1,")
;;
*)
echo "ERR: unrecognized chip SKU: $chip_sku" >&2
exit 1
;; just modify I don't know why, my board's sku is 003, but it can't be started by 980M, but only by 950M. Maybe there's some confusion in the nvidia factory. |
Beta Was this translation helpful? Give feedback.
I have fixed this issue by follow this article
in
/meta-tegra/recipes-bsp/tegra-binaries/tegra-helper-scripts/tegra234-flash-helper.sh
file,just modify
TE980M
toTE950M
.I don't know why, my board's sku is 003, but it can't be started by 980M, but only by 950M. Maybe there's some confusion in the nvidia factory.