Hi shinichiro.adachi,
Please refer to the BOARDSKU difference between Orin NX 16GB and 8GB.
- Jetson Orin NX 16GB (P3767-0000)
- Jetson Orin NX 8GB (P3767-0001)
Do you distinguish them in your board config (dx-u2200+3767-0000.conf)?
You could refer to the following line in p3768-0000+p3767-0000.conf.
if [ "${board_sku}" = "0000" ] || [ "${board_sku}" = "0002" ]; then
# use default DTB and CFG files except for TS1 & EB1 revisions
if [ "${board_FAB}" = "TS1" ] || [ "${board_FAB}" = "EB1" ]; then
PINMUX_CONFIG="tegra234-mb1-bct-pinmux-p3767-dp-a01.dtsi";
PMC_CONFIG="tegra234-mb1-bct-padvoltage-p3767-dp-a01.dtsi";
BPFDTB_FILE="tegra234-bpmp-3767-0000-a00-3509-a02.dtb";
fi
elif [ "${board_sku}" = "0001" ]; then
BPFDTB_FILE="tegra234-bpmp-3767-0001-3509-a02.dtb";
DTB_FILE="tegra234-p3767-0001-p3768-0000-a0.dtb";
elif [ "${board_sku}" = "0003" ] || [ "${board_sku}" = "0005" ]; then
BPFDTB_FILE="tegra234-bpmp-3767-0003-3509-a02.dtb";
DTB_FILE="tegra234-p3767-0003-p3768-0000-a0.dtb";
elif [ "${board_sku}" = "0004" ]; then
BPFDTB_FILE="tegra234-bpmp-3767-0004-3509-a02.dtb";
DTB_FILE="tegra234-p3767-0004-p3768-0000-a0.dtb";
fi