diff options
author | mjacob <mjacob@FreeBSD.org> | 1999-12-03 07:20:22 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 1999-12-03 07:20:22 +0000 |
commit | d7c9e9ad5f8564f402794c5a8175fffea1a5376e (patch) | |
tree | 408068d8c487c2e7df3bb8eaec833c2512b2cbe5 | |
parent | 7cc44d2aca1252a7b08b1cff3a6e7b0df12a4138 (diff) | |
download | FreeBSD-src-d7c9e9ad5f8564f402794c5a8175fffea1a5376e.zip FreeBSD-src-d7c9e9ad5f8564f402794c5a8175fffea1a5376e.tar.gz |
Set RB_VERBOSE into boothowto (provide proper layering from boot loader
(eventually) settings to kernel settings).
Prototype read_random to quiesce a warning.
-rw-r--r-- | sys/alpha/alpha/machdep.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/alpha/alpha/machdep.c b/sys/alpha/alpha/machdep.c index dd35742..04707f9 100644 --- a/sys/alpha/alpha/machdep.c +++ b/sys/alpha/alpha/machdep.c @@ -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); } |