Jump to content

Compiling Jetson TX1/TX2 source code: Difference between revisions

no edit summary
No edit summary
Line 26: Line 26:
Check which is [https://developer.nvidia.com/embedded/jetpack the most recent JetPack release].
Check which is [https://developer.nvidia.com/embedded/jetpack the most recent JetPack release].


=== JetPack 3.1 ===
'''1.''' Download Jetpack 3.1 from: https://developer.nvidia.com/embedded/dlc/jetpack-l4t-3_1


1. Download jetpack from:
'''2.''' Move binary into installation directory, we recommend '''/home/$USER/JetPack-L4T-3.1'''


https://developer.nvidia.com/embedded/dlc/jetpack-l4t-3_1
<pre>
 
mkdir -p /home/$USER/JetPack-L4T-3.1
2. Move binary into installation directory, we recommend $HOME/JetPack-L4T-3.1
mv JetPack-L4T-3.0-linux-x64.run /home/$USER/JetPack-L4T-3.1/
 
</pre>
<pre style="background:#d6e4f1">
mkdir -p $HOME/JetPack-L4T-3.1
mv JetPack-L4T-3.1-linux-x64.run $HOME/JetPack-L4T-3.1
</pre>  


3. Set the JetPack binary as executable and set correct permissions.
'''3.''' Set the Jetpack binary as executable and set correct permissions.  


<pre style="background:#d6e4f1">
<pre>
cd /home/$USER/JetPack-L4T-3.1
cd /home/$USER/JetPack-L4T-3.1
chmod +x JetPack-L4T-3.1-linux-x64.run
chmod +x JetPack-L4T-3.1-linux-x64.run
</pre>  
</pre>


4. Install JetPack.
'''4.''' Install Jetpack.  


<pre style="background:#d6e4f1">
<pre>
./JetPack-L4T-3.1-linux-x64.run
./JetPack-L4T-3.1-linux-x64.run
</pre>
</pre>


A GUI will appear. Move through the logic installing all components. You can skip the step to modify the code on your Jetson hardware.
'''5.''' Follow the instructions. You'll be prompted for a devkit to build for (TX1, TX2, TK1) just select the one you want.


=== JetPack 3.0 ===
1. Download jetpack from:
https://developer.nvidia.com/embedded/dlc/jetpack-l4t-3_0
2. Move binary into installation directory, we recommend /home/$USER/JetPack-L4T-3.0
<pre style="background:#d6e4f1">
mkdir -p $HOME/JetPack-L4T-3.0
mv JetPack-L4T-3.0-linux-x64.run $HOME/JetPack-L4T-3.0
</pre>
3. Set the Jetpack binary as executable and set correct permissions.
<pre style="background:#d6e4f1">
cd $HOME/JetPack-L4T-3.0
chmod +x JetPack-L4T-3.0-linux-x64.run
</pre>
4. Install Jetpack.
<pre style="background:#d6e4f1">
./JetPack-L4T-3.0-linux-x64.run
</pre>


== Getting bootloader and kernel ==
== Getting bootloader and kernel ==
Cookies help us deliver our services. By using our services, you agree to our use of cookies.