Hi, I’m trying to install jetpack r39.2.0 on two new Thor Developer kits. Installation media works fine and the install process starts but I have issues installing:
+ detect_board_type
++ cat /sys/firmware/devicetree/base/model/ai/jetsoniso_setup.bash: line 233: warning: command substitution: ignored nullbyte in input
+ board='NVIDIA Jetson Thor Developer Kit'
+ case $board in
+ echo 'Unsupported board!'
Unsupported board!
+ exit 1
Upon examination of the script “jetsoniso_setup.bash” it contains the following:
board=$(cat /sys/firmware/devicetree/base/model)
case $board in
"NVIDIA Jetson AGX Thor Developer Kit")
FAMILY="thor"
CHIPID="0x26"
;;
"NVIDIA Jetson AGX Orin Developer Kit")
FAMILY="orin"
CHIPID="0x23"
CMDLINE_PARAMS="mminit_loglevel=4 console=ttyTCU0,115200 console=ttyAMA0,115200 firmware_class.path=/etc/firmware fbcon=map:0 video=efifb:off efi_pstore.pstore_disable=1 pstore.backend=ramoops efi=runtime nvme.use_threaded_interrupts=1"
;;
"NVIDIA Jetson Orin NX"|"NVIDIA Jetson Orin Nano")
FAMILY="orin"
CHIPID="0x23"
CMDLINE_PARAMS="mminit_loglevel=4 console=ttyTCU0,115200 firmware_class.path=/etc/firmware fbcon=map:0 video=efifb:off efi_pstore.pstore_disable=1 pstore.backend=ramoops efi=runtime pci=pcie_bus_perf nvme.use_threaded_interrupts=1"
;;
*)
echo "Unsupported board!"
exit 1
;;
This suggests that my board is reporting itself as NVIDIA Jetson Thor Developer Kit but the script requires it to be NVIDIA Jetson AGX Thor Developer Kit so installation is failing. Why is my board not matching what the script requires?
Thanks for any help!