aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sysinstall/system.c
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2003-12-20 16:34:45 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2003-12-20 16:34:45 +0000
commite5d1715e5e132539160ea1a54f774bbcc5c887e5 (patch)
tree259c35f9c7cd1369061030b43fb279ee3ca6fe88 /usr.sbin/sysinstall/system.c
parent670c524f0837065f289cd5120e87be908dd5e3b2 (diff)
downloadsrc-e5d1715e5e132539160ea1a54f774bbcc5c887e5.tar.gz
src-e5d1715e5e132539160ea1a54f774bbcc5c887e5.zip
Do an update mount operation to mount the mfsroot as read/write rather
than read/only when sysinstall is running as init. This fixes several install issues.
Notes
Notes: svn path=/head/; revision=123686
Diffstat (limited to 'usr.sbin/sysinstall/system.c')
-rw-r--r--usr.sbin/sysinstall/system.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/system.c b/usr.sbin/sysinstall/system.c
index 25ab8b1f6135..906dec206061 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];