File: depmod.conf.sgml

package info (click to toggle)
module-init-tools 3.4-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,208 kB
  • ctags: 900
  • sloc: sh: 7,980; ansic: 5,036; makefile: 204
file content (135 lines) | stat: -rw-r--r-- 4,793 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
  <!ENTITY debian  "<productname>Debian GNU/Linux</productname>">
  <!ENTITY docbook "<productname>DocBook</productname>">
  <!ENTITY sgml    "<abbrev>SGML</abbrev>">
]>

<!-- Stolen from manual page for docbook-to-man, DocBook source file
     (C) 1999 W. Borgert debacle@debian.org

     $Id: docbook-to-man.sgml,v 1.8 2002/04/27 15:28:02 debacle Exp $ -->

<refentry>
  <refentryinfo>
    <address>
      <email>jcm@jonmasters.org</email>
    </address>
    <author>
      <firstname>Jon</firstname>
      <surname>Masters</surname>
    </author>
    <date>2005-09-23</date>
  </refentryinfo>
  <refmeta>
    <refentrytitle>depmod.d</refentrytitle>
    <manvolnum>5</manvolnum>
    <refentrytitle>depmod.conf</refentrytitle>
    <manvolnum>5</manvolnum>
  </refmeta>
  <refnamediv>
    <refname>depmod.conf</refname><refname>depmod.d</refname> <refpurpose>Configuration file/directory for depmod</refpurpose>
  </refnamediv>
  <refsect1>
    <title>DESCRIPTION</title>

    <para>The order in which modules are processed by the
      <command>depmod</command> command can be altered on a global or
      per-module basis. This is typically useful in cases where built-in
      kernel modules are complemented by custom built versions of the
      same and the user wishes to affect the priority of processing in
      order to override the module version supplied by the kernel.
    </para>
    <para>
      The format of <filename>depmod.conf</filename> and files under <filename>depmod.d</filename> is simple: one
      command per line, with blank lines and lines starting with #
      ignored (useful for adding comments).  A \ at the end of a line
      causes it to continue on the next line, which makes the file a
      bit neater.
    </para>
  </refsect1>
  <refsect1>
    <title>COMMANDS</title>
    <variablelist>
      <varlistentry>
        <term>search <replaceable>subdirectory...</replaceable>
        </term>
	<listitem>
	  <para>
	    This allows you to specify the order in which /lib/modules
	    (or other configured module location) subdirectories will
	    be processed by <command>depmod</command>. Directories are
	    listed in order, with the highest priority given to the
	    first listed directory and the lowest to the last. The
	    special keyword <command>built-in</command> refers to
	    the standard module directories installed by the kernel.
	  </para>
	  <para>
	    By default, depmod will give a higher priority to 
	    a directory with the name <command>updates</command>
	    using this built-in search string: "updates built-in"
	    but more complex arrangements are possible and are
	    used in several popular distributions.
	  </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>override <replaceable>modulename</replaceable> <replaceable>kernelversion</replaceable> <replaceable>modulesubdirectory</replaceable>
        </term>
	<listitem>
	  <para>
	    This command allows you to override which version of a
	    specific module will be used when more than one module
	    sharing the same name is processed by the
	    <command>depmod</command> command. It is possible to
	    specify one kernel or all kernels using the * wildcard.
	    <replaceable>modulesubdirectory</replaceable> is the
	    name of the subdirectory under /lib/modules (or other
	    module location) where the target module is installed.
	  </para>
	  <para>
	    For example, it is possible to override the priority of
	    an updated test module called <command>kmp</command> by
	    specifying the following command: "override kmp * extra".
	    This will ensure that any matching module name installed
	    under the <command>extra</command> subdirectory within
	    /lib/modules (or other module location) will take priority
	    over any likenamed module already provided by the kernel.
	  </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>include <replaceable>filename</replaceable>
        </term>
	<listitem>
	  <para>
	    Using this command, you can include other configuration
	    files, or whole directories, which is occasionally useful.
	  </para>
        </listitem>
      </varlistentry>
    </variablelist>
  </refsect1>
  <refsect1>
    <title>COPYRIGHT</title>
    <para>
      This manual page Copyright 2006, Jon Masters, Red Hat, Inc.
    </para>
  </refsect1>
</refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->