Xavier/JetPack 5.0.2/Compiling Code: Difference between revisions

From RidgeRun Developer Wiki
mNo edit summary
mNo edit summary
Line 35: Line 35:


<noinclude>
<noinclude>
{{Xavier/Foot|JetPack 4.1‎/Components/VisionWorks|JetPack 4.1‎/Compiling Code/Toolchain}}
{{Xavier/Foot|JetPack 4.1‎/Components/VisionWorks|JetPack 4.1‎/Compiling Code/Kernel}}
</noinclude>
</noinclude>

Revision as of 19:18, 18 November 2018




  Index  





This wiki will guide you through the process of building the kernel for the NVIDIA Jetson Xavier. The process is divided in three different steps:

  1. Install the toolchain (set of tools required to build the kernel)
  2. Build the actual kernel
  3. Build the bootloader

These steps were tested in a fresh installation of Ubuntu 16.04.

Dependencies

Make sure the following dependencies are installed on your system:

  • wget
  • lbzip2
  • build-essential
  • bc
  • zip
  • libgmp-dev
  • libmpfr-dev
  • libmpc-dev
  • vim-common # For xxd

In Debian based systems you can run the following:

sudo apt install wget lbzip2 build-essential bc zip libgmp-dev libmpfr-dev libmpc-dev vim-common



Previous: JetPack 4.1‎/Components/VisionWorks Index Next: JetPack 4.1‎/Compiling Code/Kernel