Complete the pre-built BSP after flashing the tarball.

After flashing new devices with our pre-built tarball, you may need to use the following script to complete the overall installation, from acpid to CUDA.

File Path: usr/src/nru/install.sh

#!/bin/bash
sudo apt-get update

# To prevent from the CH340 driver confliction
sudo apt remove -y brltty

# For IGN control
sudo apt-get install -y acpid

# Install CUDA
sudo apt-get install -y nvidia-jetpack

Last updated