1. Don't use kernel name for headers - I'm running 2.0.1-Development,
   not ALPHA, and this messes things up.
2. The last dialog was too big, make it a little smaller.  Just cosmetic,
   while I'm in here.
This commit is contained in:
Jordan K. Hubbard 1994-11-08 03:41:52 +00:00
parent d9f612f5ab
commit 295acba8ba
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4255
2 changed files with 6 additions and 2 deletions

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.11 1994/11/07 09:49:06 jkh Exp $
* $Id: stage5.c,v 1.12 1994/11/07 13:48:53 jkh Exp $
*
*/
@ -36,7 +36,7 @@ stage5()
{
int exec_sh = 1;
if (!dialog_yesno("End of initial installation", msg, 15, 76))
if (!dialog_yesno("End of initial installation", msg, 10, 76))
exec_sh = 0;
end_dialog();
dialog_active=0;

View File

@ -787,10 +787,14 @@ main(int argc, char **argv)
if (alloc_memory() == -1)
fatal("Couldn't allocate memory\n");
#if 0 /* Later. Our kernels don't say the right thing at present anyway */
if (uname(&utsname) == -1) {
/* Fake uname entry */
bcopy("FreeBSD", utsname.sysname, strlen("FreeBSD"));
}
#else
bcopy("FreeBSD-2.0.ALPHA", utsname.sysname, strlen("FreeBSD-2.0.ALPHA"));
#endif
/* XXX - libdialog has particularly bad return value checking */
init_dialog();