diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2012-12-21 22:52:50 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2012-12-21 22:52:50 -0500 |
commit | 57174c7276a3ae87ca5cbdc7c2aca4812a4fac0a (patch) | |
tree | 770c521c14b03d0a5aa2f867bc7fee675ab828b0 /src | |
parent | 9c6fb72b852dbeea752caa05bbdc4236dbb08d40 (diff) | |
download | seabios-hppa-57174c7276a3ae87ca5cbdc7c2aca4812a4fac0a.zip seabios-hppa-57174c7276a3ae87ca5cbdc7c2aca4812a4fac0a.tar.gz seabios-hppa-57174c7276a3ae87ca5cbdc7c2aca4812a4fac0a.tar.bz2 |
Minor: Separate UUID display from F12 boot prompt.
Place the extra newline as part of the F12 prompt instead of the
SeaBIOS version banner so that a UUID report (when present) is still
visually separated from the boot menu prompt.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/boot.c | 2 | ||||
-rw-r--r-- | src/bootsplash.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -400,7 +400,7 @@ interactive_bootmenu(void) while (get_keystroke(0) >= 0) ; - printf("Press F12 for boot menu.\n\n"); + printf("\nPress F12 for boot menu.\n\n"); u32 menutime = romfile_loadint("etc/boot-menu-wait", DEFAULT_BOOTMENU_WAIT); enable_bootsplash(); diff --git a/src/bootsplash.c b/src/bootsplash.c index 78023a5..3aac459 100644 --- a/src/bootsplash.c +++ b/src/bootsplash.c @@ -45,7 +45,7 @@ enable_vga_console(void) call16_int10(&br); // Write to screen. - printf("SeaBIOS (version %s)\n\n", VERSION); + printf("SeaBIOS (version %s)\n", VERSION); } static int |