Gentoo Archives: gentoo-doc-cvs

From: "Jan Kundrat (jkt)" <jkt@g.o>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-kernelmodules.xml
Date: Wed, 03 Aug 2011 08:26:10
Message-Id: 20110803082558.344252004C@flycatcher.gentoo.org
1 jkt 11/08/03 08:25:58
2
3 Modified: hb-install-kernelmodules.xml
4 Log:
5 #369841: openrc has changed the way how kernel modules are managed (by swift)
6
7 Revision Changes Path
8 1.3 xml/htdocs/doc/en/handbook/hb-install-kernelmodules.xml
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-kernelmodules.xml?rev=1.3&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-kernelmodules.xml?rev=1.3&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-kernelmodules.xml?r1=1.2&r2=1.3
13
14 Index: hb-install-kernelmodules.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-kernelmodules.xml,v
17 retrieving revision 1.2
18 retrieving revision 1.3
19 diff -u -r1.2 -r1.3
20 --- hb-install-kernelmodules.xml 28 Mar 2009 09:15:34 -0000 1.2
21 +++ hb-install-kernelmodules.xml 3 Aug 2011 08:25:58 -0000 1.3
22 @@ -1,11 +1,11 @@
23 <?xml version='1.0' encoding="UTF-8"?>
24 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-kernelmodules.xml,v 1.2 2009/03/28 09:15:34 neysx Exp $ -->
25 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-kernelmodules.xml,v 1.3 2011/08/03 08:25:58 jkt Exp $ -->
26 <!DOCTYPE included SYSTEM "/dtd/guide.dtd">
27
28 <included>
29
30 -<version>2</version>
31 -<date>2009-03-28</date>
32 +<version>3</version>
33 +<date>2011-08-03</date>
34
35 <section id="kernelmodules">
36 <title>Configuring the Modules</title>
37 @@ -13,7 +13,7 @@
38
39 <p>
40 You should list the modules you want automatically loaded in
41 -<path>/etc/modules.autoload.d/kernel-2.6</path>. You can add extra options to
42 +<path>/etc/conf.d/modules</path>. You can add extra options to
43 the modules too if you want.
44 </p>
45
46 @@ -28,16 +28,14 @@
47 </pre>
48
49 <p>
50 -For instance, to automatically load the <c>3c59x.ko</c> module, edit the
51 -<path>kernel-2.6</path> file and enter the module name in it.
52 +For instance, to automatically load the <c>3c59x.ko</c> module (which is the
53 +driver for a specific 3Com network card family), edit the
54 +<path>/etc/conf.d/modules</path> file and enter the module name in it.
55 </p>
56
57 -<pre caption="Editing /etc/modules.autoload.d/kernel-2.6">
58 -# <i>nano -w /etc/modules.autoload.d/kernel-2.6</i>
59 -</pre>
60 -
61 -<pre caption="/etc/modules.autoload.d/kernel-2.6">
62 -3c59x
63 +<pre caption="Editing /etc/conf.d/modules">
64 +# <i>nano -w /etc/conf.d/modules</i>
65 +modules_2_6="<i>3c59x</i>"
66 </pre>
67
68 <p>