You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.
Great tutorial, but I think this could be missing a key item, make tegra18_defconfig before doing the menu config. While the built image works fine, adding this line will build all of the necessary drivers for things like the libargus SDK, CUDA, etc.
e.g.
`
sudo apt-install pkg-config qt5-default -y
cd /usr/src/kernel/kernel-4.4
make tegra18_defconfig
make xconfig
'
The text was updated successfully, but these errors were encountered:
When the scripts get the kernel sources, they also get the system configuration of the currently running system, ie.:
# Go get the default config file; this becomes the new system configuration
zcat /proc/config.gz > .config
This is the equivalent of the defconfig, but includes any changes to the kernel configuration that may already exist. You could the defconfig if you feel more comfortable with that, but most developers rely on the current running system as a starting point.
I do not understand the comment about libargus and CUDA as they are stand alone libraries that tend not to rely on the Linux kernel configuration.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello,
Great tutorial, but I think this could be missing a key item, make tegra18_defconfig before doing the menu config. While the built image works fine, adding this line will build all of the necessary drivers for things like the libargus SDK, CUDA, etc.
e.g.
`
sudo apt-install pkg-config qt5-default -y
cd /usr/src/kernel/kernel-4.4
make tegra18_defconfig
make xconfig
'
The text was updated successfully, but these errors were encountered: