Pass -q and -u flags to modload so that it shuts up and doesn't leave

modules lying around.
This commit is contained in:
Garrett Wollman 1994-09-22 22:36:57 +00:00
parent 9d1275ccf4
commit d5ebbcdf85
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3001

View File

@ -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);
}