From 61eb992fc225d77045694f9feebf17e6cc2f7192 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Wed, 3 Nov 2004 09:07:44 +0000 Subject: [PATCH] Stop printing the VGA registers during verbose boot, in order to not needlessly overflow the msgbuffer. Can be reenabled if somebody ever takes an interest in syscons again. --- sys/isa/vga_isa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/isa/vga_isa.c b/sys/isa/vga_isa.c index e1538f810e1..968ee56cea9 100644 --- a/sys/isa/vga_isa.c +++ b/sys/isa/vga_isa.c @@ -149,7 +149,7 @@ isavga_attach(device_t dev) return error; #endif /* FB_INSTALL_CDEV */ - if (bootverbose) + if (0 && bootverbose) (*vidsw[sc->adp->va_index]->diag)(sc->adp, bootverbose); #if experimental