Set RB_VERBOSE into boothowto (provide proper layering from boot loader

(eventually) settings to kernel settings).

Prototype read_random to quiesce a warning.
This commit is contained in:
Matt Jacob 1999-12-03 07:20:22 +00:00
parent 7e35bc405b
commit b06e7af6dd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=54060

View file

@ -1058,6 +1058,7 @@ alpha_init(pfn, ptb, bim, bip, biv)
case 'v':
case 'V':
boothowto |= RB_VERBOSE;
bootverbose = 1;
break;
@ -2113,8 +2114,9 @@ alpha_fpstate_switch(struct proc *p)
/*
* dummy version of read_random() until the random driver is ported.
*/
int read_random __P((void));
int
read_random()
read_random(void)
{
return (0);
}