From d5ebbcdf85ca3eb09326519de3fb2d6e54da1430 Mon Sep 17 00:00:00 2001 From: Garrett Wollman Date: Thu, 22 Sep 1994 22:36:57 +0000 Subject: [PATCH] Pass -q and -u flags to modload so that it shuts up and doesn't leave modules lying around. --- lib/libc/gen/getvfsent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/gen/getvfsent.c b/lib/libc/gen/getvfsent.c index fb86a84f2b1..80b7555720c 100644 --- a/lib/libc/gen/getvfsent.c +++ b/lib/libc/gen/getvfsent.c @@ -233,7 +233,7 @@ vfsload(const char *name) snprintf(name_mod, sizeof name_mod, "%s%s", name, "_mod"); status = execlp("modload", "modload", "-e", name_mod, "-o", name_mod, - path, (const char *)0); + "-u", "-q", path, (const char *)0); exit(status ? errno : 0); }