kmod - Linux kernel module handling
Go to file
Lucas De Marchi 9bf60d21f3 kmod_modprobe: fix handling of remove commands
The check for remove/install commands must be before the ignore_loaded
check because we will actually run something instead of
removing/inserting a module and the modname might not correspond to a
real module. Otherwise a fake module like "remove removeme echo 'bla'"
would not work.

This also keeps compatibility with modprobe.
2011-12-19 09:35:43 -02:00
libkmod Fix wrong name len when converting path to modname 2011-12-18 15:12:57 -02:00
m4 beef compile flags. 2011-12-11 20:58:22 -02:00
test Fix leak of kmod_module 2011-12-18 01:35:30 -02:00
tools kmod_modprobe: fix handling of remove commands 2011-12-19 09:35:43 -02:00
.gitignore Add cscope.out and .swp files to gitignore 2011-11-25 00:32:28 -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 implement zlib module loading. 2011-12-17 19:43:11 -02:00
COPYING Change licenses 2011-12-12 18:24:35 -02:00
Makefile.am implement zlib module loading. 2011-12-17 19:43:11 -02:00
NEWS kmod 1 2011-12-15 15:43:58 -02:00
README Rename project from libkmod to kmod 2011-12-12 16:54:18 -02:00
TODO kmod-modprobe: implement softdeps. 2011-12-17 20:03:44 -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.