modprobe: it's not an error if module is already loaded. Closes bug 833

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2010-01-10 04:52:45 +01:00
parent 38d3e64d25
commit 725b5a387a

View File

@ -290,6 +290,8 @@ static int do_modprobe(struct module_entry *m)
options = gather_options_str(options, G.cmdline_mopts);
rc = bb_init_module(fn, options);
DBG("loaded %s '%s', rc:%d", fn, options, rc);
if (rc == EEXIST)
rc = 0;
free(options);
if (rc) {
bb_error_msg("failed to load module %s (%s): %s",