summaryrefslogtreecommitdiffstats
path: root/sbin/sysinstall/stage3.c
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/sysinstall/stage3.c')
-rw-r--r--sbin/sysinstall/stage3.c74
1 files changed, 0 insertions, 74 deletions
diff --git a/sbin/sysinstall/stage3.c b/sbin/sysinstall/stage3.c
deleted file mode 100644
index c08cccb..0000000
--- a/sbin/sysinstall/stage3.c
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * ----------------------------------------------------------------------------
- * "THE BEER-WARE LICENSE" (Revision 42):
- * <phk@login.dknet.dk> wrote this file. As long as you retain this notice you
- * can do whatever you want with this stuff. If we meet some day, and you think
- * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
- * ----------------------------------------------------------------------------
- *
- * $Id: stage3.c,v 1.9.2.1 1994/11/21 03:12:18 phk Exp $
- *
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <dialog.h>
-#include <string.h>
-#include <fcntl.h>
-#include <unistd.h>
-#include <errno.h>
-#include <fstab.h>
-
-#include <sys/param.h>
-#include <sys/mount.h>
-#include <sys/stat.h>
-
-#include "sysinstall.h"
-
-void
-stage3()
-{
- char pbuf[90],*p;
- int mountflags;
- struct fstab *fs;
-
- /*
- * Mount things in /etc/fstab we like.
- */
-
- mountflags = MNT_UPDATE;
- while((fs = getfsent()) != NULL) {
- p = fs->fs_spec;
- if (*p++ != '/') continue;
- if (*p++ != 'd') continue;
- if (*p++ != 'e') continue;
- if (*p++ != 'v') continue;
- if (*p++ != '/') continue;
-
- if (!strcmp(fs->fs_type, "sw")) {
- if (swapon(fs->fs_spec) == -1)
- AskAbort("Unable to swap to %s - are you sure it's right?",
- fs->fs_spec);
- continue;
- }
-
- if (strcmp(fs->fs_vfstype, "ufs")) continue;
-
- if (!strcmp(fs->fs_type, "ro"))
- mountflags |= MNT_RDONLY;
- else if (!strcmp(fs->fs_type, "rw"))
- ;
- else
- continue;
- strcpy(pbuf, "/dev/r");
- strcat(pbuf,p);
- TellEm("fsck -y %s",pbuf);
- if (exec(0, "/stand/fsck",
- "/stand/fsck", "-y", pbuf, 0) == -1)
- Fatal("exec(fsck) failed");
-
- MountUfs(p, fs->fs_file, 0, mountflags);
- mountflags = 0;
- }
- endfsent();
-}
OpenPOWER on IntegriCloud