Linux "modinfo" Command Line Options and Examples
Show information about a Linux Kernel module

modinfo extracts information from the Linux Kernel modules given on the command line. If the module name is not a filename, then the /lib/modules/version directory is searched, as is also done by modprobe(8) when loading kernel modules. modinfo by default lists each attribute of the module in form fieldname : value, for easy reading.


Usage:

modinfo [-0] [-F field] [-k kernel] [modulename|filename...]


    modinfo -V


    modinfo -h




Command Line Options:

-V
Print the modinfo version.
modinfo -V ...
-F
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.
modinfo -F ...
-b
Root directory for modules, / by default.
modinfo -b ...
-k
Provide information about a kernel other than the running one. This is particularly useful for distributions needing to extractinformation from a newly installed (but not yet running) set of kernel modules. For example, you wish to find which firmwarefiles are needed by various modules in a new kernel for which you must make an initrd/initramfs image prior to booting.
modinfo -k ...
-0
Use the ASCII zero character to separate field values, instead of a new line. This is useful for scripts, since a new line cantheoretically appear inside a field.
modinfo -0 ...
-a
These are shortcuts for the --field flag's author, description, license, parm and filename arguments, to ease the transition fromthe old modutils modinfo.COPYRIGHTThis manual page originally Copyright 2003, Rusty Russell, IBM Corporation. Maintained by Jon Masters and others.
modinfo -a ...