From feec7965b6712be0aedd202358c51a34277fcb3e Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Sun, 6 Nov 1994 01:16:30 +0000 Subject: [PATCH] Tweak tweak.. --- sbin/sysinstall/stage2.c | 4 ++-- sbin/sysinstall/stage5.c | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/sbin/sysinstall/stage2.c b/sbin/sysinstall/stage2.c index bfc1c6832b56..dd82392d8276 100644 --- a/sbin/sysinstall/stage2.c +++ b/sbin/sysinstall/stage2.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: stage2.c,v 1.11 1994/11/02 11:00:35 jkh Exp $ + * $Id: stage2.c,v 1.12 1994/11/04 21:38:36 phk Exp $ * */ @@ -113,7 +113,7 @@ stage2() fclose(f1); sync(); - TellEm("Make marker-file"); + TellEm("Make marker file"); i = open("/mnt/stand/need_cpio_floppy",O_CREAT|O_WRONLY|O_TRUNC); close(i); diff --git a/sbin/sysinstall/stage5.c b/sbin/sysinstall/stage5.c index ea7777f557f9..8476c967386a 100644 --- a/sbin/sysinstall/stage5.c +++ b/sbin/sysinstall/stage5.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: stage5.c,v 1.7 1994/11/03 00:30:27 ache Exp $ + * $Id: stage5.c,v 1.8 1994/11/05 07:23:58 jkh Exp $ * */ @@ -25,20 +25,20 @@ #include "sysinstall.h" static unsigned char msg[] = " -You are now done with the second phase of the installation. At this point, -FreeBSD is on your hard disk and now we need to go on to the 3rd level -installation, which is to ftp, SLIP, DOS floppy, parallel port or carrier -pigeon the bindist over. Select OK to proceed with this phase, or CANCEL -to simply drop into the shell."; +You are now done with the initial phase of the installation, which +gets FreeBSD onto your hard disk. At this point, we need to go on +to ftp, SLIP, DOS floppy, parallel port or carrier pigeon a bindist over +so that your system is actually usable. Select Yes to proceed with this +phase, or No to simply drop into a shell."; void stage5() { - int exec_sh = 0; + int exec_sh = 1; - if (!dialog_yesno("End of stage 2", msg, + if (!dialog_yesno("End of initial installation", msg, strheight(msg) + 4, strwidth(msg) + 4)) - exec_sh = 1; + exec_sh = 0; end_dialog(); dialog_active=0; setenv("PATH","/stand",1);