Note
The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Funtoo on the Nvidia TK1"
Jump to navigation
Jump to search
Line 7: | Line 7: | ||
== Getting the Sources == | == Getting the Sources == | ||
Use the tools issued by Nvidia to handle kernel sources via git. Checkout the desired kernel version, probably the newest. | |||
{{console|body= | {{console|body= | ||
# wget | # wget http://developer.nvidia.com/embedded/dlc/l4t-Jetson-TK1-Driver-Package-R21-5 -O $TOOLS | ||
# cd $ | # cd $Tools | ||
# tar jxf | # tar jxf l4t-Jetson-TK1-Driver-Package-R21-5 | ||
# ln -s | # rm l4t-Jetson-TK1-Driver-Package-R21-5 | ||
# cd Linux_for_Tegra | |||
# ./source_sync.sh #skip tag selection both times | |||
# cd sources/kernel_source | |||
# git ls-remote | |||
# git checkout tegra-l4t-r24.2.1 | |||
# ln -s $PWD $XC_KERNEL_SRC | |||
}} | }} | ||
Revision as of 20:46, February 24, 2017
Introduction
Read this.
And this
And this.
Getting the Sources
Use the tools issued by Nvidia to handle kernel sources via git. Checkout the desired kernel version, probably the newest.
root # wget http://developer.nvidia.com/embedded/dlc/l4t-Jetson-TK1-Driver-Package-R21-5 -O $TOOLS root # cd $Tools root # tar jxf l4t-Jetson-TK1-Driver-Package-R21-5 root # rm l4t-Jetson-TK1-Driver-Package-R21-5 root # cd Linux_for_Tegra root # ./source_sync.sh #skip tag selection both times root # cd sources/kernel_source root # git ls-remote root # git checkout tegra-l4t-r24.2.1 root # ln -s $PWD $XC_KERNEL_SRC
Kernel Building
You need a working kernel config. You can get one from a running TK1 and get it into your $XC_KERNEL_SRC directory.
root # zcat /proc/config.gz > my_TK1_config root # scp my_TK1_config <xc_user>@<xc_host>:<xc_kernel_src>/.config