dchvs 2021-03-04 05:04:41 +00:00
parent 4a5f5c6865
commit b7749dc1a4
1 changed files with 3 additions and 5 deletions

@ -98,14 +98,12 @@ Once the Kernel it's compiled, the output binaries should get installed on the J
```
```
# Backup the default Kernel
cp -r ../../kernel/dtb/ ../../kernel/backup_dtb/
cp ../../kernel/Image ../../kernel/backup_Image
sudo mv ../../rootfs/lib/modules/4.9.140-tegra/ ../../rootfs/lib/modules/backup_4.9.140-tegra/
# Add the Kernel files for full image installation
# Install the Kernel Image
make -C ~/work/devdirs/project_spiri/spiri-project/source/Jetpack/kernel/kernel-4.9/ ARCH=arm64 O=$PWD/build/ kernel_install INSTALL_PATH=$PWD/../../kernel/dtb/
# Install the DTBs
make -C ../../spiri-project/source/Jetpack/kernel/kernel-4.9/ ARCH=arm64 O=$PWD/build/ dtbs_install INSTALL_DTBS_PATH=$PWD/../../kernel/dtb/
# Install the Drivers modules
sudo make -C ../../spiri-project/source/Jetpack/kernel/kernel-4.9/ ARCH=arm64 O=$PWD/build/ modules_install INSTALL_MOD_PATH=$PWD/../../rootfs/
```