kmod.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-system-kmod" role="wrap">
  8. <?dbhtml filename="kmod.html"?>
  9. <sect1info condition="script">
  10. <productname>kmod</productname>
  11. <productnumber>&kmod-version;</productnumber>
  12. <address>&kmod-url;</address>
  13. </sect1info>
  14. <title>Kmod-&kmod-version;</title>
  15. <indexterm zone="ch-system-kmod">
  16. <primary sortas="a-Kmod">Kmod</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The Kmod package contains libraries and utilities for loading kernel
  21. modules</para>
  22. <segmentedlist>
  23. <segtitle>&buildtime;</segtitle>
  24. <segtitle>&diskspace;</segtitle>
  25. <seglistitem>
  26. <seg>&kmod-fin-sbu;</seg>
  27. <seg>&kmod-fin-du;</seg>
  28. </seglistitem>
  29. </segmentedlist>
  30. </sect2>
  31. <sect2 role="installation">
  32. <title>Installation of Kmod</title>
  33. <para>Prepare Kmod for compilation:</para>
  34. <screen><userinput remap="configure">./configure --prefix=/usr \
  35. --bindir=/bin \
  36. --sysconfdir=/etc \
  37. --with-rootlibdir=/lib \
  38. --with-xz \
  39. --with-zstd \
  40. --with-zlib</userinput></screen>
  41. <variablelist>
  42. <title>The meaning of the configure options:</title>
  43. <varlistentry>
  44. <term><parameter>--with-xz, --with-zlib, --with-zstd</parameter></term>
  45. <listitem>
  46. <para>These options enable Kmod to handle compressed kernel modules.</para>
  47. </listitem>
  48. </varlistentry>
  49. <varlistentry>
  50. <term><parameter>--with-rootlibdir=/lib</parameter></term>
  51. <listitem>
  52. <para>This option ensures different library related files are placed
  53. in the correct directories.</para>
  54. </listitem>
  55. </varlistentry>
  56. </variablelist>
  57. <para>Compile the package:</para>
  58. <screen><userinput remap="make">make</userinput></screen>
  59. <para>This package does not come with a test suite that can be run in the
  60. LFS chroot environment. At a minimum the git program is required and
  61. several tests will not run outside of a git repository. </para>
  62. <para>Install the package and create symlinks for
  63. compatibility with Module-Init-Tools (the package that previously handled
  64. Linux kernel modules):</para>
  65. <screen><userinput remap="install">make install
  66. for target in depmod insmod lsmod modinfo modprobe rmmod; do
  67. ln -sfv ../bin/kmod /sbin/$target
  68. done
  69. ln -sfv kmod /bin/lsmod</userinput></screen>
  70. </sect2>
  71. <sect2 id="contents-kmod" role="content">
  72. <title>Contents of Kmod</title>
  73. <segmentedlist>
  74. <segtitle>Installed programs</segtitle>
  75. <segtitle>Installed library</segtitle>
  76. <seglistitem>
  77. <seg>depmod (link to kmod), insmod (link to kmod), kmod,
  78. lsmod (link to kmod), modinfo (link to kmod), modprobe (link to kmod),
  79. and rmmod (link to kmod)</seg>
  80. <seg>libkmod.so</seg>
  81. </seglistitem>
  82. </segmentedlist>
  83. <variablelist>
  84. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  85. <?dbfo list-presentation="list"?>
  86. <?dbhtml list-presentation="table"?>
  87. <varlistentry id="depmod">
  88. <term><command>depmod</command></term>
  89. <listitem>
  90. <para>Creates a dependency file based on the symbols it finds in the
  91. existing set of modules; this dependency file is used by
  92. <command>modprobe</command> to automatically load the required
  93. modules</para>
  94. <indexterm zone="ch-system-kmod depmod">
  95. <primary sortas="b-depmod">depmod</primary>
  96. </indexterm>
  97. </listitem>
  98. </varlistentry>
  99. <varlistentry id="insmod">
  100. <term><command>insmod</command></term>
  101. <listitem>
  102. <para>Installs a loadable module in the running kernel</para>
  103. <indexterm zone="ch-system-kmod insmod">
  104. <primary sortas="b-insmod">insmod</primary>
  105. </indexterm>
  106. </listitem>
  107. </varlistentry>
  108. <varlistentry id="kmod">
  109. <term><command>kmod</command></term>
  110. <listitem>
  111. <para>Loads and unloads kernel modules</para>
  112. <indexterm zone="ch-system-kmod kmod">
  113. <primary sortas="b-kmod">kmod</primary>
  114. </indexterm>
  115. </listitem>
  116. </varlistentry>
  117. <varlistentry id="lsmod">
  118. <term><command>lsmod</command></term>
  119. <listitem>
  120. <para>Lists currently loaded modules</para>
  121. <indexterm zone="ch-system-kmod lsmod">
  122. <primary sortas="b-lsmod">lsmod</primary>
  123. </indexterm>
  124. </listitem>
  125. </varlistentry>
  126. <varlistentry id="modinfo">
  127. <term><command>modinfo</command></term>
  128. <listitem>
  129. <para>Examines an object file associated with a kernel module and
  130. displays any information that it can glean</para>
  131. <indexterm zone="ch-system-kmod modinfo">
  132. <primary sortas="b-modinfo">modinfo</primary>
  133. </indexterm>
  134. </listitem>
  135. </varlistentry>
  136. <varlistentry id="modprobe">
  137. <term><command>modprobe</command></term>
  138. <listitem>
  139. <para>Uses a dependency file, created by
  140. <command>depmod</command>, to automatically load relevant modules</para>
  141. <indexterm zone="ch-system-kmod modprobe">
  142. <primary sortas="b-modprobe">modprobe</primary>
  143. </indexterm>
  144. </listitem>
  145. </varlistentry>
  146. <varlistentry id="rmmod">
  147. <term><command>rmmod</command></term>
  148. <listitem>
  149. <para>Unloads modules from the running kernel</para>
  150. <indexterm zone="ch-system-kmod rmmod">
  151. <primary sortas="b-rmmod">rmmod</primary>
  152. </indexterm>
  153. </listitem>
  154. </varlistentry>
  155. <varlistentry id="libkmod">
  156. <term><filename class="libraryfile">libkmod</filename></term>
  157. <listitem>
  158. <para>This library is used by other programs to load and unload kernel
  159. modules</para>
  160. <indexterm zone="ch-system-kmod">
  161. <primary sortas="c-libkmod">libkmod</primary>
  162. </indexterm>
  163. </listitem>
  164. </varlistentry>
  165. </variablelist>
  166. </sect2>
  167. </sect1>