aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2013-12-22 10:42:26 -0500
committerKevin O'Connor <kevin@koconnor.net>2013-12-22 10:42:26 -0500
commit96917a8ed761f017fc8c72ba3b9181fbac03ac59 (patch)
tree16ccb62d3c8d9535fd5e1260d8871866a115bc18
parent1cc809fe0d6ed0af4f91a6d187ae463d06e7d47a (diff)
downloadseabios-hppa-rel-1.7.4.zip
seabios-hppa-rel-1.7.4.tar.gz
seabios-hppa-rel-1.7.4.tar.bz2
coreboot: Make sure to print the SeaBIOS version in cbmem debug output.rel-1.7.4
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r--src/fw/coreboot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fw/coreboot.c b/src/fw/coreboot.c
index cc316df..01a6fcd 100644
--- a/src/fw/coreboot.c
+++ b/src/fw/coreboot.c
@@ -182,7 +182,7 @@ coreboot_preinit(void)
struct cb_cbmem_ref *cbref = find_cb_subtable(cbh, CB_TAG_CBMEM_CONSOLE);
if (cbref) {
cbcon = (void*)(u32)cbref->cbmem_addr;
- dprintf(1, "----- [ seabios log starts here ] -----\n");
+ dprintf(1, "----- [ SeaBIOS %s ] -----\n", VERSION);
dprintf(1, "Found coreboot cbmem console @ %llx\n", cbref->cbmem_addr);
}