mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-18 15:30:21 +00:00
More miscellaneous changes. Clear the screen in some appropriate spots.
This commit is contained in:
parent
d8c4842296
commit
eae3147757
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4080
@ -98,11 +98,11 @@ alloc_memory()
|
||||
return(-1);
|
||||
}
|
||||
|
||||
mbr = (struct mbr *) malloc(sizeof(struct mbr));
|
||||
mbr = (struct mbr *)malloc(sizeof(struct mbr));
|
||||
if (!mbr)
|
||||
return(-1);
|
||||
|
||||
bootblocks = (char *) malloc(BBSIZE);
|
||||
bootblocks = (char *)malloc(BBSIZE);
|
||||
if (!bootblocks)
|
||||
return(-1);
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
||||
* ----------------------------------------------------------------------------
|
||||
*
|
||||
* $Id: stage4.c,v 1.3 1994/10/29 10:01:37 phk Exp $
|
||||
* $Id: stage4.c,v 1.4 1994/11/02 06:19:49 jkh Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
@ -43,6 +43,7 @@ stage4()
|
||||
if (ffd > 0)
|
||||
break;
|
||||
}
|
||||
dialog_clear();
|
||||
TellEm("cd /stand ; gunzip < /dev/fd0 | cpio -idum");
|
||||
pipe(pfd);
|
||||
zpid = fork();
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user