kernel-headers.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-tools-kernel-headers" role="wrap">
  7. <title>Linux-&linux-version; headers</title>
  8. <?dbhtml filename="kernel-headers.html"?>
  9. <indexterm zone="ch-tools-kernel-headers">
  10. <primary sortas="a-Linux">Linux</primary>
  11. <secondary>tools, headers</secondary></indexterm>
  12. <sect2 role="package"><title/>
  13. <segmentedlist>
  14. <segtitle>&buildtime;</segtitle>
  15. <segtitle>&diskspace;</segtitle>
  16. <seglistitem><seg>0.1 SBU</seg><seg>186 MB</seg></seglistitem>
  17. </segmentedlist>
  18. </sect2>
  19. <sect2 role="installation">
  20. <title>Installation of the kernel headers</title>
  21. <para>As some packages need to refer to the kernel header files, we're going
  22. to unpack the kernel archive now, set it up, and copy the required files to a
  23. place where <command>gcc</command> can later find them.</para>
  24. <para>Prepare for the header installation with:</para>
  25. <screen><userinput>make mrproper</userinput></screen>
  26. <para>This ensures that the kernel tree is absolutely clean. The kernel team
  27. recommends that this command be issued prior to <emphasis>each</emphasis>
  28. kernel compilation. You shouldn't rely on the source tree being clean after
  29. un-tarring.</para>
  30. <para>Create the <filename>include/linux/version.h</filename> file:</para>
  31. <screen><userinput>make include/linux/version.h</userinput></screen>
  32. <para>Create the platform-specific <filename class="symlink">include/asm</filename>
  33. symlink:</para>
  34. <screen><userinput>make include/asm</userinput></screen>
  35. <para>Install the platform-specific header files:</para>
  36. <screen><userinput>mkdir /tools/glibc-kernheaders
  37. cp -HR include/asm /tools/glibc-kernheaders
  38. cp -R include/asm-generic /tools/glibc-kernheaders</userinput></screen>
  39. <para>Finally, install the cross-platform kernel header files:</para>
  40. <screen><userinput>cp -R include/linux /tools/glibc-kernheaders</userinput></screen>
  41. </sect2>
  42. </sect1>