diff options
author | Paul Menzel <pmenzel@molgen.mpg.de> | 2017-01-20 16:52:44 +0100 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-01-29 14:25:34 -0500 |
commit | 970af16e6e5a6cb8de6b6658663b8adc00d25b8b (patch) | |
tree | dc870206cb11f43ed8c7de5ced8cbe21f168ab6d /vgasrc | |
parent | 106543deb447c4005f9a9845f1f43a72547f6209 (diff) | |
download | seabios-970af16e6e5a6cb8de6b6658663b8adc00d25b8b.tar.gz |
vgasrc: Increase debug level
You only want this information for debugging. As it also slows down the
boot considerably, as, for example, for every character of the GRUB
menu, something is sent over the serial console.
Therefore, increase the debugging level to 9.
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
Diffstat (limited to 'vgasrc')
-rw-r--r-- | vgasrc/vgabios.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vgasrc/vgabios.h b/vgasrc/vgabios.h index 3d5bbfe5..e2edec03 100644 --- a/vgasrc/vgabios.h +++ b/vgasrc/vgabios.h @@ -73,7 +73,7 @@ static inline int vga_emulate_text(void) { // Debug settings #define DEBUG_VGA_POST 1 -#define DEBUG_VGA_10 3 +#define DEBUG_VGA_10 9 // vgabios.c int vga_bpp(struct vgamode_s *vmode_g); |