Tweak tweak..

This commit is contained in:
Jordan K. Hubbard 1994-11-06 01:16:30 +00:00
parent 6831597a60
commit feec7965b6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4190
2 changed files with 11 additions and 11 deletions

View File

@ -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);

View File

@ -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);