Closed ranrubin closed 3 years ago
Thank you for this. This seems to be one of the differences between the official NVIDIA Ubuntu 16.04 and 18.04 support and Ubuntu 20.04. I added: export LDK_ROOTFS_DIR=$PWD Which should point at the current working directory.
Putting this here as it might be useful. I am using ubuntu 22.04 and I faced the same issue. This is how I solved it. At the end of ./get_jetson_files.sh I replaced
if [[ $(lsb_release -rs) == "20.04" ]] ; then
export LDK_ROOTFS_DIR=$PWD
fi
with
ubuntu_version=$(lsb_release -rs)
if [[ ${ubuntu_version%%.*} -ge 20 ]] ; then
export LDK_ROOTFS_DIR=$PWD
fi
This should work for newer versions of ubuntu as well
Describe the issue Script fails with errors.
To Reproduce
./get_jetson_files.sh
Ubuntu 20Expected behavior Successful finish of the script
Solution Solved by adding "export LDK_ROOTFS_DIR="/home/$USER/bootFromExternalStorage/R32.6.1/Linux_for_Tegra" to the ./get_jetson_files.sh script. Linux_for_Tegra/apply_binaries.sh expects it