BSP Setup#

BSP Installation#

Installation Options#

BSP Installation Options BSP Installation Options

Comparison#

πŸš€ Jetson ISO

πŸ› οΈ SDK Manager

πŸ“œ Flash script

πŸ“‹ Short Summary

USB installation disk to flash BSP (plus alpha)

GUI software to flash BSP and install JetPack packages

Ubuntu script to flash BSP

πŸ–₯️ Ubuntu Host PC

❌ Not required

βœ… Required

βœ… Required

⏱️ Flash time

⚑ Less than 15 min

βŒ› About 30 min

βŒ› About 30 min

πŸ”§ Install BSP?

βœ… Yes

βœ… Yes

βœ… Yes

🐳 Install Docker?

βœ… Yes

πŸ’‘ Yes, when chosen in 2nd stage

❌ No

πŸ“¦ Install JetPack components

❌ No

πŸ’‘ Yes, when chosen in 2nd stage

❌ No

πŸ‘₯ Who is this for?

🌟 Everybody including beginner

πŸ§‘β€πŸ’» Who has an Ubuntu PC

πŸ› οΈ Product Developers

Option 1. πŸš€ β€œJetson ISO” Installation USB#

Recommended for everybody.

This method is what’s illustrated in the Quick Start Guide.

Option 2. πŸ› οΈ NVIDIA SDK Manager#

See Jetson section of SDK Manager documentation.

https://docs.nvidia.com/sdk-manager/install-with-sdkm-jetson/index.html

Option 3. πŸ“œ β€œLinux_for_Tegra” flash script#

See Jetson Linux Developer Guide.

https://docs.nvidia.com/jetson/archives/r38.4/DeveloperGuide/IN/QuickStart.html https://docs.nvidia.com/jetson/archives/r38.4/DeveloperGuide/SD/FlashingSupportJetsonThor.html

BSP Upgrade#

This section covers how to upgrade your BSP to a newer L4T revision using APT.

See also

For more details on the update mechanism, see the official Jetson Linux Developer Guide:

Updating to a New Minor Release

Upgrading from r38.2.x to r38.4.x#

Follow these steps to upgrade your Jetson Thor from L4T r38.2.x to r38.4.x.

1. Check the Current L4T Revision#

First, verify your current L4T version:

cat /etc/nv_tegra_release

You should see output indicating R38 (release), REVISION: 2.x.

2. Backup and Update the APT Source List#

Before modifying the source list, create a backup:

sudo cp /etc/apt/sources.list.d/nvidia-l4t-apt-source.list /etc/apt/sources.list.d/nvidia-l4t-apt-source.list.bak

Update the source list to point to r38.4:

sudo sed -i 's/r38\.2/r38.4/g' /etc/apt/sources.list.d/nvidia-l4t-apt-source.list

Verify the change was applied correctly:

tail -n5 /etc/apt/sources.list.d/nvidia-l4t-apt-source.list

3. Perform the Upgrade#

Update the package list and upgrade:

sudo apt update && sudo apt upgrade -y

4. Reboot#

Reboot to apply the changes:

sudo reboot

5. Verify the Upgrade#

After reboot, confirm the upgrade was successful:

cat /etc/nv_tegra_release

You should now see R38 (release), REVISION: 4.x.

Tip

If something goes wrong during the upgrade, you can restore the original source list from the backup:

sudo cp /etc/apt/sources.list.d/nvidia-l4t-apt-source.list.bak /etc/apt/sources.list.d/nvidia-l4t-apt-source.list