How to update driver(Not tested)

NVIDIA Tegra Linux Driver Package is not updated with "apt-get upgrade".
You need to download and install it.
This is how to do that.

Requirement:

Instruction:

  1. Log in to your Jetson TK1
  2. Download NVIDIA Tegra Linux Driver Package and extract it
  3. $ wget http://developer.download.nvidia.com/mobile/tegra/l4t/r21.1.0/Tegra124_Linux_R21.1.0_armhf.tbz2
    $ sudo tar -vxjf Tegra124_Linux_R21.1.0_armhf.tbz2
  4. Change directory and run the script
  5. $ cd Linux_for_Tegra
    $ sudo ./apply_binaries.sh -r /
    If the apply_binaries.sh script installs the binaries correctly, the last message output from the script is "Success!".
  6. Check driver files
  7. $ sha1sum -c /etc/nv_tegra_release
    Next step is updating kernel.
  8. Login to your host PC
  9. Download NVIDIA Tegra Linux Driver Package and extract it in host PC
  10. $ wget http://developer.download.nvidia.com/mobile/tegra/l4t/r21.1.0/Tegra124_Linux_R21.1.0_armhf.tbz2
    sudo tar -vxjf Tegra124_Linux_R21.1.0_armhf.tbz2
  11. Change directory to "Linux_for_Tegra"
  12. $ cd Linux_for_Tegra
  13. Connect Jetson TK1 to host PC and boot Jetson TK1 in recovery mode
  14. Flash kernel
  15. Execute following command in host PC.
    If you installed OS in internal storage:
    $ sudo ./flash.sh -k 6 jetson-tk1 mmcblk0p1
    If you installed OS in external storage:(Not tested)
    $ sudo ./flash.sh jetson-tk1 <rootdev>
    If target storage is
    USB or SATA: <rootdev> = sda1
    SD card: <rootdev> = mmcblk1p1
  16. Reset Jetson TK1
  17. Login to Jetson TK and check kernel version
  18. $ uname -a
    

Top