Hello,
I’m currently using the Nvidia Jetson Orin Developer Kit and encountered an issue regarding CPU isolation.
In my previous work with the Jetson Orin 32GB kit, I modified the /boot/extlinux/extlinux.conf file as follows to isolate all CPU cores except for the first one (index 0):
APPEND ${cbootargs} root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 mminit_loglevel=4 console=ttyTCU0,115200 console=ttyAMA0,115200 console=tty0 firmware_class.path=/etc/firmware fbcon=map:0 net.ifnames=0 nv-auto-config isolcpus=1-11
This configuration worked without any issues on the Jetson Orin 32GB kit.
However, when I tried the same setup with the Jetson Orin 64GB kit, the device failed to boot.
It only successfully boots and operates normally if I leave two cores (index 0 and 1) unisolated.
My question is, does the Nvidia Jetson Orin 64GB kit require a minimum of two CPU cores to operate correctly?
Any insights or suggestions would be greatly appreciated.Thank you.