blob: a0226e39dbe81aa6e3afcc5627ec9c24ed5d60e6 [file] [log] [blame]
Lucas De Marchicb48c9b2011-12-12 16:41:38 -02001kmod - Linux kernel module handling
Gustavo Sverzut Barbieri91b44c72011-12-02 21:05:38 -02002
Lucas De Marchi1dd4ff52014-12-13 11:55:05 -02003Information
4===========
5
Lucas De Marchiad411f72018-12-18 14:11:58 -08006Build Status:
7 https://lucasdemarchi.semaphoreci.com/projects/kmod
Lucas De Marchi0d833712015-06-11 13:59:54 -03008
Lucas De Marchi1dd4ff52014-12-13 11:55:05 -02009Mailing list:
10 linux-modules@vger.kernel.org (no subscription needed)
Lucas De Marchiedc9d812018-11-30 12:37:43 -080011 https://lore.kernel.org/linux-modules/
Lucas De Marchi1dd4ff52014-12-13 11:55:05 -020012
Lucas De Marchif7ed4302016-05-24 11:45:25 -030013Patchwork:
14 https://patchwork.kernel.org/project/linux-modules/
15
Lucas De Marchi1dd4ff52014-12-13 11:55:05 -020016Signed packages:
17 http://www.kernel.org/pub/linux/utils/kernel/kmod/
18
19Git:
20 git://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git
21 http://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git
22 https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git
23
24Gitweb:
25 http://git.kernel.org/?p=utils/kernel/kmod/kmod.git
26
27Irc:
28 #kmod on irc.freenode.org
29
30License:
31 LGPLv2.1+ for libkmod, testsuite and helper libraries
32 GPLv2+ for tools/*
33
34
Gustavo Sverzut Barbieri91b44c72011-12-02 21:05:38 -020035OVERVIEW
36========
37
Lucas De Marchicb48c9b2011-12-12 16:41:38 -020038kmod is a set of tools to handle common tasks with Linux kernel modules like
39insert, remove, list, check properties, resolve dependencies and aliases.
Gustavo Sverzut Barbieri91b44c72011-12-02 21:05:38 -020040
Lucas De Marchicb48c9b2011-12-12 16:41:38 -020041These tools are designed on top of libkmod, a library that is shipped with
42kmod. See libkmod/README for more details on this library and how to use it.
43The aim is to be compatible with tools, configurations and indexes from
44module-init-tools project.
Lucas De Marchidd420602012-01-09 13:15:46 -020045
46Compilation and installation
47============================
48
49In order to compiler the source code you need following software packages:
50 - GCC compiler
51 - GNU C library
52
53Optional dependencies:
54 - ZLIB library
55 - LZMA library
56
57Typical configuration:
58 ./configure CFLAGS="-g -O2" --prefix=/usr \
59 --sysconfdir=/etc --libdir=/usr/lib
60
61Configure automatically searches for all required components and packages.
62
63To compile and install run:
64 make && make install
65
Lucas De Marchi3bf8d4b2012-01-12 18:31:10 -020066Hacking
67=======
68
Lucas De Marchi028d4df2018-12-17 09:52:05 -080069Run 'autogen.sh' script before configure. If you want to accept the recommended
70flags, you just need to run 'autogen.sh c'. Note that the recommended
Laura Abbott4cce76e2015-09-28 15:39:10 -070071flags require cython be installed to compile successfully.
Lucas De Marchi3bf8d4b2012-01-12 18:31:10 -020072
Lucas De Marchi314719c2012-03-21 22:26:03 -030073Make sure to read the CODING-STYLE file and the other READMEs: libkmod/README
74and testsuite/README.
Lucas De Marchi3bf8d4b2012-01-12 18:31:10 -020075
Lucas De Marchicd923112013-07-17 02:26:47 -030076Compatibility with module-init-tools
77====================================
78
79kmod replaces module-init-tools, which is end-of-life. Most of its tools are
80rewritten on top of libkmod so it can be used as a drop in replacements.
81Somethings however were changed. Reasons vary from "the feature was already
82long deprecated on module-init-tools" to "it would be too much trouble to
83support it".
84
85There are several features that are being added in kmod, but we don't
86keep track of them here.
87
88modprobe
89--------
90
91* 'modprobe -l' was marked as deprecated and does not exist anymore
92
93* 'modprobe -t' is gone, together with 'modprobe -l'
94
95* modprobe doesn't parse configuration files with names not ending in
96 '.alias' or '.conf'. modprobe used to warn about these files.
97
98* modprobe doesn't parse 'config' and 'include' commands in configuration
99 files.
100
101* modprobe from m-i-t does not honour softdeps for install commands. E.g.:
102 config:
103
104 install bli "echo bli"
105 install bla "echo bla"
106 softdep bla pre: bli
107
108 With m-i-t, the output of 'modprobe --show-depends bla' will be:
109 install "echo bla"
110
111 While with kmod:
112 install "echo bli"
113 install "echo bla"
114
115* kmod doesn't dump the configuration as is in the config files. Instead it
116 dumps the configuration as it was parsed. Therefore, comments and file names
117 are not dumped, but on the good side we know what the exact configuration
118 kmod is using. We did this because if we only want to know the entire content
119 of configuration files, it's enough to use find(1) in modprobe.d directories
120
121depmod
122------
123
124* there's no 'depmod -m' option: legacy modules.*map files are gone
125
126lsmod
127-----
128
129* module-init-tools used /proc/modules to parse module info. kmod uses
130 /sys/module/*, but there's a fallback to /proc/modules if the latter isn't
131 available