Jetson AGX ORIN Developer Kit - SDKmanager flashing error

SDKM_logs_JetPack_5.1.3_Linux_for_Jetson_AGX_Orin_[32GB_developer_kit_version]_2025-08-09_22-18-19.zip (8.7 MB)

Hello,

For jetson agx orin-devkit, I’m trying to install JetPack5.1.3 on nvme.

I’m working at a university research institute on two AGX ORINs

On one AGX ORIN, NVMe - JetPack5.1.3 Flashing is successful.
also, I succeeded in flashing both emmc and Nvme without any specific settings.

But the problem is, on the other device..
The EMMC partition has JetPack installed, but
in NVMe flashing, [INSTALLATION FAILED] The phrase comes out in sdkmanager.

I was wondering if the NVMe setting was wrong,
so I tried initializing NVME, but after initializing, JetPack installation failed again.

I will attach the error log of sdk manager.
Can you tell me how to resolve this error?

Hi,

Please apply below patch in Linux_for_Tegra/p3701.conf.common

And flash again to check whether the issue exists.

diff --git a/p3701.conf.common b/p3701.conf.common
--- .a/p3701.conf.common
+++ .b/p3701.conf.common
@@ -157,8 +157,8 @@
 	# Update "num_sectors" in local cfgfile for the device
 	# with FAB=501 and BOARDSKU=0004/0005
 	local local_cfgfile="${1}"
-	if [ "${board_FAB}" == "501" ] && [[ "${board_sku}" == "0004" || "${board_sku}" == "0005" ]]; then
-		sed -i 's/num_sectors=\"124321792\"/num_sectors=\"124190720\"/' "${local_cfgfile}"
+	if (( board_FAB >= 501 )) && [[ "${board_sku}" == "0004" || "${board_sku}" == "0005" ]]; then
+		sed -i 's/num_sectors=\"124321792\"/num_sectors=\"119537664\"/' "${local_cfgfile}"
 	fi
 }

Thanks

I had patched you mentioned. but same error [INSTALLATION FAILED] was appeared.

There is no update from you for a period, assuming this is not an issue anymore.
Hence, we are closing this topic. If need further support, please open a new one.
Thanks
~0910

Hi,

Please help record the serial console log during flashing process.

Thanks