diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2014-01-15 13:52:14 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-01-22 17:30:30 -0500 |
commit | bb1fcb4507095d47f504fab344e589f67e87854b (patch) | |
tree | 83b9901751179bb33721b991616ff2d68adb5ae6 /src/post.c | |
parent | 940fc1fc58b4f2a1c3baa8a5bb907f7b22ba0a31 (diff) | |
download | seabios-bb1fcb4507095d47f504fab344e589f67e87854b.tar.gz |
debug: Unify the SeaBIOS debug version banner.
Introduce debug_banner() and use it in all the places SeaBIOS version
is displayed for debugging purposes.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/post.c')
-rw-r--r-- | src/post.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -319,7 +319,7 @@ handle_post(void) return; serial_debug_preinit(); - dprintf(1, "Start bios (version %s)\n", VERSION); + debug_banner(); // Check if we are running under Xen. xen_preinit(); |