summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--usr.sbin/sade/system.c7
-rw-r--r--usr.sbin/sysinstall/system.c7
2 files changed, 12 insertions, 2 deletions
diff --git a/usr.sbin/sade/system.c b/usr.sbin/sade/system.c
index 25ab8b1..906dec2 100644
--- a/usr.sbin/sade/system.c
+++ b/usr.sbin/sade/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];
diff --git a/usr.sbin/sysinstall/system.c b/usr.sbin/sysinstall/system.c
index 25ab8b1..906dec2 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];
OpenPOWER on IntegriCloud