Fixup:
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:
parent
d9f612f5ab
commit
295acba8ba
@ -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;
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user