From 725b5a387a392f6282756c649adf411e30535eb5 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sun, 10 Jan 2010 04:52:45 +0100 Subject: modprobe: it's not an error if module is already loaded. Closes bug 833 Signed-off-by: Denys Vlasenko --- modutils/modprobe.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'modutils/modprobe.c') diff --git a/modutils/modprobe.c b/modutils/modprobe.c index ca85ee76b..2860ae05d 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c @@ -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", -- cgit v1.2.3