kmod/test
Gustavo Sverzut Barbieri bd3f553526 export module's options and commands.
This will be required to implement modprobe later. The implementation
follows "man modprobe.conf" and allows options to be specified for
alias as well, thus the need for kmod_resolve_alias_options().

Example mod-a.conf:

    options mod-a a=1 b=2
    options mod-a c=3
    alias mymod-a mod-a
    options mymod-a d=4

Results in:
    options mod-a a=1 b=2 c=3
    options mymod-a a=1 b=2 c=3 d=4

Install commands are being concatenated with ";", but manpage is not
clean about this behavior.
2011-12-11 20:58:21 -02:00
..
.gitignore add kmod_module_get_filtered_blacklist() 2011-12-08 11:17:16 -02:00
test-blacklist.c add kmod_module_get_filtered_blacklist() 2011-12-08 11:17:16 -02:00
test-get-dependencies.c test: add test to get dependencies of a module 2011-12-06 03:34:51 -02:00
test-init.c Accept dir where we should lookup for modules 2011-11-24 23:20:42 -02:00
test-insmod.c test-insmod: show the path libkmod is using 2011-12-08 11:15:24 -02:00
test-loaded.c no more kmod_loaded and kmod_loaded_module. 2011-12-04 17:24:08 -02:00
test-lookup.c export module's options and commands. 2011-12-11 20:58:21 -02:00
test-mod-double-ref.c test: add test for modules' hash 2011-12-06 03:49:30 -02:00
test-path-from-name.c test: add test to convert name to path 2011-12-06 03:34:51 -02:00
test-rmmod2.c tests: release memory before error exits. 2011-12-05 01:45:21 -02:00
test-rmmod.c tests: release memory before error exits. 2011-12-05 01:45:21 -02:00