diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2003-12-20 16:35:51 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2003-12-20 16:35:51 +0000 |
| commit | b86ef4fe5dcdcb39bee4368b306c58bd9bcb89d4 (patch) | |
| tree | c58863f0615dafb89abf22c93b4fad4c67f647d3 /usr.sbin | |
| parent | 9bef3237d9b1fe0534241611427f85240921779e (diff) | |
Notes
Diffstat (limited to 'usr.sbin')
| -rw-r--r-- | usr.sbin/sysinstall/system.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/system.c b/usr.sbin/sysinstall/system.c index 25ab8b1f6135d..906dec2060615 100644 --- a/usr.sbin/sysinstall/system.c +++ b/usr.sbin/sysinstall/system.c @@ -19,13 +19,15 @@ #include "sysinstall.h" #include <signal.h> #include <termios.h> +#include <sys/param.h> #include <sys/reboot.h> #include <sys/consio.h> #include <sys/fcntl.h> #include <sys/ioctl.h> +#include <sys/mount.h> #include <sys/stat.h> -#include <sys/types.h> #include <sys/sysctl.h> +#include <ufs/ufs/ufsmount.h> /* Where we stick our temporary expanded doc file */ @@ -144,6 +146,7 @@ systemInitialize(int argc, char **argv) /* Are we running as init? */ if (getpid() == 1) { + struct ufs_args ufs_args; int fd; RunningAsInit = 1; @@ -191,6 +194,8 @@ systemInitialize(int argc, char **argv) #if 0 signal(SIGCHLD, reap_children); #endif + memset(&ufs_args, 0, sizeof(ufs_args)); + mount("ufs", "/", MNT_UPDATE, &ufs_args); } else { char hname[256]; |
