mirror of
https://github.com/AuxXxilium/kmod.git
synced 2024-11-23 15:00:52 +07:00
man: add some extra bold/italic annotations
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Signed-off-by: Lucas De Marchi <lucas.de.marchi@gmail.com>
This commit is contained in:
parent
fa715f8c8b
commit
134bf30e74
@ -21,7 +21,7 @@ dependencies can get quite complex.
|
||||
|
||||
*depmod* creates a list of module dependencies by reading each module under
|
||||
@MODULE_DIRECTORY@/_version_ and determining what symbols it exports and what
|
||||
symbols it needs. By default, this list is written to modules.dep, and a binary
|
||||
symbols it needs. By default, this list is written to *modules.dep*, and a binary
|
||||
hashed version named modules.dep.bin, in the same directory. If filenames are
|
||||
given on the command line, only those modules are examined (which is rarely
|
||||
useful unless all modules are listed). * depmod* also creates a list of symbols
|
||||
@ -41,20 +41,20 @@ rather than the current kernel version (as returned by *uname -r*).
|
||||
|
||||
*-A*, *--quick*
|
||||
This option scans to see if any modules are newer than the
|
||||
modules.dep file before any work is done: if not, it silently exits
|
||||
*modules.dep* file before any work is done: if not, it silently exits
|
||||
rather than regenerating the files.
|
||||
|
||||
*-b* _basedir_, *--basedir* _basedir_
|
||||
If your modules are not currently in the (normal) directory
|
||||
@MODULE_DIRECTORY@/_version_, but in a staging area, you can specify a
|
||||
_basedir_ which is prepended to the directory name. This _basedir_ is
|
||||
stripped from the resulting modules.dep file, so it is ready to be moved
|
||||
into the normal location. Use this option if you are a distribution
|
||||
vendor who needs to pre-generate the meta-data files rather than running
|
||||
depmod again later.
|
||||
stripped from the resulting *modules.dep* file, so it is ready to be
|
||||
moved into the normal location. Use this option if you are a
|
||||
distribution vendor who needs to pre-generate the meta-data files rather
|
||||
than running *depmod* again later.
|
||||
|
||||
*-o* _outdir_, *--outdir* _outdir_
|
||||
Set the output directory where depmod will store any generated file.
|
||||
Set the output directory where *depmod* will store any generated file.
|
||||
_ outdir_ serves as a root to that location, similar to how _basedir_ is
|
||||
used. Also this setting takes precedence and if used together with
|
||||
_basedir_ it will result in the input being that directory, but the output
|
||||
@ -75,11 +75,11 @@ rather than the current kernel version (as returned by *uname -r*).
|
||||
*-E*, *--symvers*
|
||||
When combined with the *-e* option, this reports any symbol versions
|
||||
supplied by modules that do not match with the symbol versions provided
|
||||
by the kernel in its Module.symvers. This option is mutually
|
||||
by the kernel in its _Module.symvers_. This option is mutually
|
||||
incompatible with *-F*.
|
||||
|
||||
*-F*, *--filesyms* _System.map_
|
||||
Supplied with the System.map produced when the kernel was built, this
|
||||
Supplied with the _System.map_ produced when the kernel was built, this
|
||||
allows the *-e* option to report unresolved symbols. This option is
|
||||
mutually incompatible with *-E*.
|
||||
|
||||
@ -87,7 +87,7 @@ rather than the current kernel version (as returned by *uname -r*).
|
||||
Print the help message and exit.
|
||||
|
||||
*-n*, *--show*, *--dry-run*
|
||||
This sends the resulting modules.dep and the various map files to
|
||||
This sends the resulting *modules.dep* and the various map files to
|
||||
standard output rather than writing them into the module directory.
|
||||
|
||||
*-P*
|
||||
|
@ -6,7 +6,7 @@ kmod - Program to manage Linux Kernel modules
|
||||
|
||||
# SYNOPSIS
|
||||
|
||||
*kmod* [*OPTIONS*...] [_COMMAND_] [*COMMAND_OPTIONS*...]
|
||||
*kmod* [*OPTIONS...*] [_COMMAND_] [*COMMAND_OPTIONS...*]
|
||||
|
||||
# DESCRIPTION
|
||||
|
||||
|
@ -29,14 +29,14 @@ architecture.
|
||||
# OPTIONS
|
||||
|
||||
*-V*, *--version*
|
||||
Print the modinfo version.
|
||||
Print the *modinfo* version.
|
||||
|
||||
*-F*, *--field*
|
||||
Only print this field value, one per line. This is most useful for
|
||||
scripts. Field names are case-insensitive. Common fields (which may not
|
||||
be in every module) include author, description, license, parm, depends,
|
||||
and alias. There are often multiple parm, alias and depends fields. The
|
||||
special field filename lists the filename of the module.
|
||||
special _field_ filename lists the filename of the module.
|
||||
|
||||
*-b* _basedir_, *--basedir* _basedir_
|
||||
Root directory for modules, / by default.
|
||||
@ -50,9 +50,9 @@ architecture.
|
||||
image prior to booting.
|
||||
|
||||
*-0*, *--null*
|
||||
Use the ASCII zero character to separate field values, instead of a new
|
||||
Use the ASCII zero character to separate _field_ values, instead of a new
|
||||
line. This is useful for scripts, since a new line can theoretically
|
||||
appear inside a field.
|
||||
appear inside a _field_.
|
||||
|
||||
*-a* *--author*, *-d* *--description*, *-l* *--license*, *-p* *--parameters*,
|
||||
*-n* *--filename*
|
||||
|
@ -9,11 +9,11 @@ modprobe - Add and remove modules from the Linux Kernel
|
||||
*modprobe* [*-v*] [*-V*] [*-C *_config-file_] [*-n*] [*-i*] [*-q*] [*-b*] [_modulename_]
|
||||
\ \ \ \ \ \ \ \ \ \[_module parameters_...]
|
||||
|
||||
*modprobe* [-r] [*-v*] [*-n*] [*-i*] [_modulename_...]
|
||||
*modprobe* [*-r*] [*-v*] [*-n*] [*-i*] [_modulename_...]
|
||||
|
||||
*modprobe* [-c]
|
||||
*modprobe* [*-c*]
|
||||
|
||||
*modprobe* [--dump-modversions] [_filename_]
|
||||
*modprobe* [*--dump-modversions*] [_filename_]
|
||||
|
||||
# DESCRIPTION
|
||||
|
||||
@ -42,7 +42,7 @@ If any arguments are given after the _modulename_, they are passed to the kernel
|
||||
|
||||
When loading modules, _modulename_ can also be a path to the module. If the path
|
||||
is relative, it must explicitly start with "./". Note that this may fail when
|
||||
using a path to a module with dependencies not matching the installed depmod
|
||||
using a path to a module with dependencies not matching the installed *depmod*
|
||||
database.
|
||||
|
||||
# OPTIONS
|
||||
@ -78,7 +78,7 @@ database.
|
||||
module which is already present or to remove a module which isn't
|
||||
present. This is ideal for simple scripts; however, more complicated
|
||||
scripts often want to know whether *modprobe* really did something: this
|
||||
option makes modprobe fail in the case that it actually didn't do
|
||||
option makes *modprobe* fail in the case that it actually didn't do
|
||||
anything.
|
||||
|
||||
*--force-vermagic*
|
||||
@ -97,7 +97,7 @@ database.
|
||||
detailing the versions of every interfaced used by (or supplied by) the
|
||||
module is created. If a module fails to load and the kernel complains
|
||||
that the module disagrees about a version of some interface, you can use
|
||||
"--force-modversion" to remove the version information altogether.
|
||||
*--force-modversion* to remove the version information altogether.
|
||||
Naturally, this check is there for your protection, so using this option
|
||||
is dangerous unless you know what you're doing.
|
||||
|
||||
|
@ -12,13 +12,14 @@ modules.dep, modules.dep.bin - Module dependency information
|
||||
|
||||
# DESCRIPTION
|
||||
|
||||
modules.dep.bin is a binary file generated by *depmod* listing the dependencies
|
||||
for every module in the directories under @MODULE_DIRECTORY@/_version_. It is
|
||||
used by kmod tools such as *modprobe* and libkmod.
|
||||
*modules.dep.bin* is a binary file generated by *depmod* listing the
|
||||
dependencies for every module in the directories under
|
||||
@MODULE_DIRECTORY@/_version_. It is used by *kmod* tools such as *modprobe* and
|
||||
libkmod.
|
||||
|
||||
Its text counterpart is located in the same directory with the name
|
||||
modules.dep. The text version is maintained only for easy of reading by humans
|
||||
and is in no way used by any kmod tool.
|
||||
*modules.dep*. The text version is maintained only for easy of reading by humans
|
||||
and is in no way used by any *kmod* tool.
|
||||
|
||||
These files are not intended for editing or use by any additional utilities as
|
||||
their format is subject to change in the future. You should use the *modinfo*(8)
|
||||
|
@ -29,7 +29,7 @@ is provided) from the kernel. Most users will want to use *modprobe*(8) with the
|
||||
*-s*, *--syslog*
|
||||
Send errors to syslog instead of standard error.
|
||||
|
||||
*-V --version*
|
||||
*-V*, *--version*
|
||||
Show version of program and exit.
|
||||
|
||||
# COPYRIGHT
|
||||
|
Loading…
Reference in New Issue
Block a user