summaryrefslogtreecommitdiffstats
path: root/sbin/sysinstall/stage5.c
blob: 218233a76464f3abb53463472fe7ff950081f6db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
 * ----------------------------------------------------------------------------
 * "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: stage5.c,v 1.17 1994/12/27 23:26:57 jkh Exp $
 *
 */

#include <stdio.h>
#include <stdlib.h>
#include <dialog.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>

#include <sys/param.h>
#include <sys/mount.h>
#include <sys/stat.h>

#include "sysinstall.h"

static unsigned char msg[] = "
You are now done with the initial phase of the installation that
gets FreeBSD onto your hard disk.  At this point, we need to go on
to use FTP, NFS, Tape, CD or DOS floppies to get a bindist onto your
system so that it's actually usable.  Select Yes to proceed with this
phase, or No to simply drop into a shell.";

void
stage5()
{
	int exec_sh = 1;

	setenv("PATH","/stand",1);
	for(;;) {
		exec_sh = dialog_yesno("End of initial installation", 
			msg, -1, -1);
		end_dialog();
		dialog_active=0;
		if (exec_sh)
			exec (2, "/stand/sh", "/stand/-sh", 0);
		else
			exec (3, "/stand/scripts/bininst.sh",
			      "/stand/scripts/-bininst.sh", 0);
		dialog_active=1;
	}
}
OpenPOWER on IntegriCloud