From 39981fed8268fafa88e853bdf2b39d406b319dca Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Thu, 1 Jul 2004 07:46:29 +0000 Subject: Trim a few things from the dmesg output and stick them under bootverbose to cut down on the clutter including PCI interrupt routing, MTRR, pcibios, etc. Discussed with: USENIX Cabal --- sys/dev/random/randomdev.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sys/dev/random') diff --git a/sys/dev/random/randomdev.c b/sys/dev/random/randomdev.c index a88e4a913b91..7c5434e44626 100644 --- a/sys/dev/random/randomdev.c +++ b/sys/dev/random/randomdev.c @@ -200,7 +200,9 @@ random_modevent(module_t mod __unused, int type, void *data __unused) random_ident_hardware(&random_systat); (*random_systat.init)(); - printf("random: \n", random_systat.ident); + if (bootverbose) + printf("random: \n", + random_systat.ident); random_dev = make_dev(&random_cdevsw, RANDOM_MINOR, UID_ROOT, GID_WHEEL, 0666, "random"); -- cgit v1.3