kmod - Linux kernel module handling
Go to file
Lucas De Marchi ddbda02286 Add implementation of modprobe's insertion
Treat module insertion as modprobe does: look for (soft-)dependencies, run
install commands, apply blacklist.

The difference with the blacklist is that it's applied to all modules,
including the dependencies. If you want to apply a blacklist only on the
module it's better to call the filter function by yourself.

This implementation detects loops caused by poorly written
soft-dependencies and fail gracefully, printing the loop to the log.
2011-12-27 11:55:22 -02:00
libkmod Add implementation of modprobe's insertion 2011-12-27 11:55:22 -02:00
m4 beef compile flags. 2011-12-11 20:58:22 -02:00
test elf: implement kmod_module_get_dependency_symbols() 2011-12-24 01:44:31 -02:00
tools tools: kmod: show wrong command in err message 2011-12-23 11:44:28 -02:00
.gitignore gitignore: ignore dist files 2011-12-21 11:44:25 -02:00
autogen.sh build-sys: enable debug by default in autogen.sh 2011-12-12 17:26:47 -02:00
CODING-STYLE Add file with details regarding coding style 2011-12-15 00:43:54 -02:00
configure.ac Support for loading Xz-compressed modules 2011-12-24 20:26:22 +01:00
COPYING Change licenses 2011-12-12 18:24:35 -02:00
Makefile.am build-sys: remove unneeded _SOURCES var 2011-12-27 02:49:46 -02:00
NEWS kmod 2 2011-12-20 23:48:46 -02:00
README Rename project from libkmod to kmod 2011-12-12 16:54:18 -02:00
TODO TODO: add task in modprobe's compatibility 2011-12-26 16:05:55 -02:00

kmod - Linux kernel module handling

OVERVIEW
========

kmod is a set of tools to handle common tasks with Linux kernel modules like
insert, remove, list, check properties, resolve dependencies and aliases.

These tools are designed on top of libkmod, a library that is shipped with
kmod. See libkmod/README for more details on this library and how to use it.
The aim is to be compatible with tools, configurations and indexes from
module-init-tools project.