SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

BotDetect - Real-Time Bot Detection API
 
 

MAN page from Old RedHat 6.X modutils-2.3.9-6.i386.rpm

MODULES.CONF

Section: File Formats (5)
Updated: 07 December 1999
Index 

NAME

modules.conf - configuration file for loading kernel modules 

DESCRIPTION

The behaviour ofmodprobe(8)(anddepmod(8))can be modified by the (optional) configuration file/etc/modules.conf.

The configuration file consists of a set of lines.
All empty lines, and all text on a line after a '#', will be ignored.
Lines may be continued by ending the line with a '\'.
The remaining lines should all conform to one of the following formats:

  [add] above module module_list  alias alias_name real_name  [add] below module module_list  define VARIABLE WORD  depfile=A_PATH  else  elseif EXPRESSION  endif  if EXPRESSION  include PATH_TO_CONFIG_FILE  insmod_opt=GENERIC_OPTIONS_TO_INSMOD  install module command ...  keep  [add] options module MODULE_SPECIFIC_OPTIONS  path=A_PATH  path[TAG]=A_PATH  [add] probe name module_list  [add] probeall name module_list  post-install module command ...  post-remove module command ...  pre-install module command ...  pre-remove module command ...  remove module command ...

All arguments to a directive will be processed to handleshell meta-characters,which means that "shell tricks" like wild-cardsand commands enclosed in back-quotes can be used:

  path[misc]=/lib/modules/1.1.5?/local  path[net]=/lib/modules/`uname -r`/net
Directives may be repeated multiple times.Note that some directives can have an optional prefix:add.When this prefix is used, the new module_list will beaddedto the previous module_list instead of replacing it. 

SEMANTICS

A_PATHis the fully qualified path to the target.It is possible to use shell meta-characters inA_PATHincluding command output, such as`uname -r`and`kernelversion`.
These two commands are also understood internally in these utilitiesas meaning the version number of the current kernel and the currentkernel version respectively (e.g.: 2.2.3 and 2.2).

WORDis a sequence if non-white characters.If ' " or ` is found in the string, all characters up to thematching ' " or ` will also be included, even whitespace.EveryWORDwill then be expanded w.r.t. meta-characters.If the expanded result gives more than one word then onlythe first word of the result will be used.

EXPRESSION below can be:

WORD compare_op WORD
where compare_op is one of ==, !=, <, <=, >= or >.The string values of the WORDs are compared.
-n WORD compare_op WORD
where compare_op is one of ==, !=, <, <=, >= or >.The numeric values of the WORDs are compared.
WORD
If the expansion of WORD fails, or if theexpansion is "0" (zero), "false" or "" (empty)then the expansion has the value FALSE.Otherwise the expansion has the value TRUE
-f FILENAME
Test if the file FILENAME exists.
-k
Test if "autoclean" is enabled (i.e. called from the kernel).
! EXPRESSION
A negated expression is also an expression.
 

SYNTAX

This is a description of the legal directives.
define VARIABLE WORD
Do aputenv(VARIABLE=WORD).Variables can be created and modified by this directive.The variables will be available in the environment, which makes themusable for all commands executed in the current session.
depfile=A_PATH
This is the path to the dependency file that will be created bydepmodand used bymodprobeto find the modules and their dependent modules.Normally the default value should be used, see below.
if EXPRESSION
If the expression is evaluated to beTRUEthen all directives up to the matchingelse, elseiforendifare processed. Otherwise they are ignored.ifdirectives may be nested up to an internal maximum of 20.
Note: please avoid having anypathdirectives conditionally processed.Sincemodprobehas enough built-in "smarts", a conditionally processedpathdirective will gain you nothing but confusion. Really.
else
If the previous matchingiforelseifdirective evaluated its expression to beFALSEthen the directives enclosed by the (optional)elsedirective and its matchingendifdirective will be processed.
elseif EXPRESSION
If the previous matchingiforelseifdirectives evaluated their expression to beFALSEand if the expression for this directive evaluates toTRUEthen the directives up to the next matchingelseif, elseorendifdirective will be processed.
endif
This directive ends the chain of matchingif, elseiforelsedirective(s) controlling the conditional processing of configurationfile directives.
  if EXPRESSION      any config lines  elseif EXPRESSION      any config lines  else      any config lines  endif
Theelseandelseifdirectives are optional.
include PATH_TO_CONFIG_FILE
To handle different platforms or configurations with asingle configuration file can be quite complex.With the use of theincludedirective, conditionally processed byifdirectives, this is now easier to handle.
insmod_opt=GENERIC_OPTIONS_TO_INSMOD
If insmod should need some special options, not specified elsewhere,this directive makes it possible to add such an option,to be used for every invocation.The standard default options to insmod does normally not have tobe modified unless some special situation needs to be handled.
keep
If this word is found on a linebeforeany lines that contain thepathdescriptions, the default set of paths will be saved, and thus added to.Otherwise the normal behaviour is that the default set will bereplacedby the set of paths in the configuration file.
path=A_PATH
path[TAG]=A_PATH
TheA_PATHargument specifies an additional directory to search for modules.Thepathdirective can carry an optional tag.This tells us a little more about the purpose of the modules inthis directory and allows some automated operations bymodprobe.The tag is appended to the "path" keyword enclosed in square brackets.If the tag is missing, the tag "misc" is assumed.
One very useful tag isboot,which can be used to mark all directories containing modulesthat should be loaded at boot-time.
alias alias_name real_name
The "alias" directive can be used to give alias names to modules.A line in /etc/modules.conf that looks like this:
  alias iso9660 isofs
makes it possible to writemodprobe iso9660although there is no object file for such a module available.
Note that the line:
  alias some_module off
will make modprobe ignore requests to load that module.Another special alias is:
  alias some_module null
which will make requests for some_module always succeed, but nomodule will actually be installed.This can be used as a base for stacks created via theaboveandbelowdirectives.
It is possible to have an unlimited number of levels ofaliasdirectives, since all aliases will be recursively expanded inorder to find the physical module actually referred to.
It is legal for an alias to map module A to module B and for moduleA to exist at the same time but this construct is ambiguous and isnotrecommended.  For historical reasons, the kernel sound system has amodule called sound.o but the sound developers also want an alias fromsound to the module for the user's sound card, e.g. "alias sound sb".In an attempt to support this requirement but still maintain thedefined behaviour where options can be applied to aliases, modprobebypasses alias expansion when processing a module name if the name wasobtained via modules.dep, otherwise aliases are expanded.  This is notguaranteed to give the expected behaviour on all combinations ofaliases and real modules, you should avoid using an alias with the samename as a real module.
[add] probe name module_list
[add] probeall name module_list
These directives can only be used whennameis the name of the module requested on the command line ofmodprobe.The effect is that when a request fornameis made, the modules in module_list will be tried, in the specified order.The difference between the directives is thatprobewill continue until the first successful module insertion, whileprobeallwill continue until the end of the list.The exit status reflects whether any module has been successfullyinstalled or not.The optionaladdprefix adds the new list to the previous list instead of replacing it.
[add] options [-k] module [MODULE_SPECIFIC_OPTIONS]
All module names, including aliased names, can have their ownoptionsdirectives.Options specified for an alias have higher priority than the optionsspecified for more "basic" names. This rule is used to resolveconflictingoptionsdirectives.Options given on the command line have the highest priority.If there is-kbefore the module name, then the module won't be autocleaned even ifmodprobehas been invoked with the-kautoclean option.The optionaladdprefix adds the new list to the previous list instead of replacing it.
[add] above module module_list
This directive makes it possible for one module to "pull in"another set of modules on top of itself in a module stack,as seen in the output of thelsmod(8)command.Theabovedirective is useful for those circumstances when the dependenciesare more complex than what can be described in themodules.depdependency file.This is an optimized case of thepost-installandpre-removedirectives.Note that failure of installing the module will not influence theexit status ofmodprobe.The optionaladdprefix adds the new list to the previous list instead of replacing it.
[add] below module module_list
This directive makes it possible for one module to "push"another set of modules below itself in a module stack,as seen in the output of thelsmod(8)command.Thebelowdirective is useful for those circumstances when the dependenciesare more complex than what can be described in themodules.depdependency file.This is an optimized case of thepre-installandpost-removedirectives.Note that failure of installing the module will not influence theexit status ofmodprobe.The optionaladdprefix adds the new list to the previous list instead of replacing it.

The following directives are useful for (optionally) executing specificcommands when loading and unloading a module. Note that even aliasedmodule names can have these directives,which will be executed in the proper order together with anydirectives for the unaliased module name.

pre-install module command
Executecommandbefore installing the specified module.See thebelowdirective as well.
install module command
Executecommandinstead of the defaultinsmodwhen installing the specified module.
post-install module command
Executecommandafter installing the specified module.See theabovedirective as well.
pre-remove module command
Executecommandbefore removing the specified module.See theabovedirective as well.
remove module command
Executecommandinstead of the default (built-in)rmmodwhen removing the specified module.
post-remove module command
Executecommandafter removing the specified module.See thebelowdirective as well.

 

DEFAULT CONFIGURATION

If the configuration file '/etc/modules.conf' is missing,or if any directive is not overridden,the following defaults are assumed:


  depfile=/lib/modules/`uname -r`/modules.dep


  path[boot]=/lib/modules/boot
  path[fs]=/lib/modules/`uname -r`/fs
  path[net]=/lib/modules/`uname -r`/net
  path[scsi]=/lib/modules/`uname -r`/scsi
  path[block]=/lib/modules/`uname -r`/block
  path[cdrom]=/lib/modules/`uname -r`/cdrom
  path[ipv4]=/lib/modules/`uname -r`/ipv4
  path[ipv6]=/lib/modules/`uname -r`/ipv6
  path[sound]=/lib/modules/`uname -r`/sound
  path[fc4]=/lib/modules/`uname -r`/fc4
  path[video]=/lib/modules/`uname -r`/video
  path[misc]=/lib/modules/`uname -r`/misc
  path[pcmcia]=/lib/modules/`uname -r`/pcmcia
  path[atm]=/lib/modules/`uname -r`/atm
  path[usb]=/lib/modules/`uname -r`/usb


  path[fs]=/lib/modules/`kernelversion`/fs
  path[net]=/lib/modules/`kernelversion`/net
  path[scsi]=/lib/modules/`kernelversion`/scsi
  path[block]=/lib/modules/`kernelversion`/block
  path[cdrom]=/lib/modules/`kernelversion`/cdrom
  path[ipv4]=/lib/modules/`kernelversion`/ipv4
  path[ipv6]=/lib/modules/`kernelversion`/ipv6
  path[sound]=/lib/modules/`kernelversion`/sound
  path[fc4]=/lib/modules/`kernelversion`/fc4
  path[video]=/lib/modules/`kernelversion`/video
  path[misc]=/lib/modules/`kernelversion`/misc
  path[pcmcia]=/lib/modules/`kernelversion`/pcmcia
  path[atm]=/lib/modules/`kernelversion`/atm
  path[usb]=/lib/modules/`kernelversion`/usb


  path[fs]=/lib/modules/default/fs
  path[net]=/lib/modules/default/net
  path[scsi]=/lib/modules/default/scsi
  path[block]=/lib/modules/default/block
  path[cdrom]=/lib/modules/default/cdrom
  path[ipv4]=/lib/modules/default/ipv4
  path[ipv6]=/lib/modules/default/ipv6
  path[sound]=/lib/modules/default/sound
  path[fc4]=/lib/modules/default/fc4
  path[video]=/lib/modules/default/video
  path[misc]=/lib/modules/default/misc
  path[pcmcia]=/lib/modules/default/pcmcia
  path[atm]=/lib/modules/default/atm
  path[usb]=/lib/modules/default/usb


  path[fs]=/lib/modules/fs
  path[net]=/lib/modules/net
  path[scsi]=/lib/modules/scsi
  path[block]=/lib/modules/block
  path[cdrom]=/lib/modules/cdrom
  path[ipv4]=/lib/modules/ipv4
  path[ipv6]=/lib/modules/ipv6
  path[sound]=/lib/modules/sound
  path[fc4]=/lib/modules/fc4
  path[video]=/lib/modules/video
  path[misc]=/lib/modules/misc
  path[pcmcia]=/lib/modules/pcmcia
  path[atm]=/lib/modules/atm
  path[usb]=/lib/modules/usb

There are also a set of defaultaliasandoptionsdirectives.Since this set is continously extended, no list will be given here.The (current) default set can be viewed by using themodprobe -ccommand with an empty/etc/modules.conffile.

Alloptionsdirectives specify the options needed fora module, as in:

  modprobe de620 bnc=1
These options will be overridden by any options givenin the/etc/modules.conffile, and on themodprobecommand line.

Remember that it is possible to have anoptionsdirective for aliased module names as wellas for the non-aliased name.This is useful for e.g. the dummy module:

  alias dummy0 dummy  options dummy0 -o dummy0

 

ALTERNATIVE CONFIGURATION FILE

For historical reasons, if /etc/modules.conf does not exist, modutilswill read /etc/conf.modules instead.However the use of this historical name is depreciated and it should bereplaced with /etc/modules.conf. 

SEE ALSO

depmod(8), modprobe(8), insmod(8) 

AUTHOR

Bjorn Ekwall <bj0rnAATTblox.se>Keith Owens <kaosAATTocs.com.au>

 

Index

NAME
DESCRIPTION
SEMANTICS
SYNTAX
DEFAULT CONFIGURATION
ALTERNATIVE CONFIGURATION FILE
SEE ALSO
AUTHOR

This document was created byman2html,using the manual pages.
 
ICM Bot detect detector