1999-04-22 13:06:24 +00:00
|
|
|
Managing Modules
|
|
|
|
================
|
|
|
|
|
1998-12-02 18:31:21 +00:00
|
|
|
The hardcore way is to insmod each of them by hand. This is not very
|
|
|
|
practical, though. It is better to install them in a subdirectory that
|
|
|
|
modprobe examines. /lib/modules/current/extra/misc comes to mind.
|
|
|
|
You need to add this path to your /etc/modules.conf (or /etc/conf.modules,
|
|
|
|
which file is used depends on your distribution):
|
|
|
|
(modules-2.0.0):
|
|
|
|
path[misc]=/lib/modules/current/extra/misc
|
|
|
|
(modutils-2.1.x):
|
|
|
|
path=/lib/modules/current/extra
|
1999-04-22 13:06:24 +00:00
|
|
|
Do always a 'depmod -a' after changing either your configuration file or
|
|
|
|
changing a module in one of the module directories; you also need to do
|
|
|
|
a 'killall -HUP kerneld' if you still use kerneld (kernel 2.2.x usually
|
1999-09-20 15:28:44 +00:00
|
|
|
uses kmod).
|
1998-12-02 18:31:21 +00:00
|
|
|
|
|
|
|
Now you can do 'modprobe lm78', and all dependent modules are loaded
|
|
|
|
automatically. You could, of course, add this statement (and related
|
|
|
|
statements for other drivers) somewhere in your rc files. But, most
|
|
|
|
distributions are set up to load automatically all files in the
|
|
|
|
'boot' directories on system start, so why not use this? The best
|
|
|
|
way to do this is to create directory /lib/modules/boot, and to
|
|
|
|
put *links* to the real modules in there. Why links? Well, by linking
|
|
|
|
to /lib/modules/current/whatever, this will function for any kernel
|
|
|
|
(provided /lib/modules/current is correctly set up to point to the
|
|
|
|
current kernel). So:
|
|
|
|
mkdir -p /lib/modules/boot
|
|
|
|
ln -s ../current/extra/misc/lm78.o /lib/modules/boot/lm78.o
|
|
|
|
# etc.
|
|
|
|
|
|
|
|
It is also possible to specify default options, that you would normally
|
|
|
|
enter at the insmod command, in the configuration file. The syntax is
|
|
|
|
as follows:
|
|
|
|
options i2c-core debug=2
|
|
|
|
|
|
|
|
With the above, the managing of all those modules is suddenly no problem
|
|
|
|
at all!
|
|
|
|
|
|
|
|
|