coreboot: Make sure to print the SeaBIOS version in cbmem debug output.

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
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 @@
     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);
     }