modprobe: fix typo in config dump: option->options
authorElan Ruusamäe <glen@delfi.ee>
Thu, 22 Mar 2012 15:00:16 +0000 (12:00 -0300)
committerLucas De Marchi <lucas.demarchi@profusion.mobi>
Thu, 22 Mar 2012 15:00:16 +0000 (12:00 -0300)
kmod uses "option MODNAME", not "options MODNAME"

--- modprobe-sorted.kmod 2012-03-21 22:31:03.751754042 +0200
+++ modprobe-sorted.module-init-tools 2012-03-21 22:30:49.561753089 +0200
@@ -1,6 +1,23 @@
[...]
-option uvesafb mode_option=1024x786-32 mtrr=4 scroll=ywrap
+options uvesafb mode_option=1024x786-32 mtrr=4 scroll=ywrap

This breaks scripts that depend in modprobe -c output grepping

tools/kmod-modprobe.c

index 4760682..f6d47dc 100644 (file)
@@ -218,7 +218,7 @@ static int show_config(struct kmod_ctx *ctx)
                { "install", kmod_config_get_install_commands },
                { "remove", kmod_config_get_remove_commands },
                { "alias", kmod_config_get_aliases },
-               { "option", kmod_config_get_options },
+               { "options", kmod_config_get_options },
                { "softdep", kmod_config_get_softdeps },
        };
        size_t i;