summaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorPatrick Georgi <patrick.georgi@secunet.com>2011-01-18 14:28:45 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2011-01-18 14:28:45 +0000
commitcef3b896c1593de5a41b57bff4d4600d0c90e06e (patch)
tree4fccdf55b3aa2adc0427472ee496f48a839807f0 /src/arch
parent244793784ce63957f3ba3a1b9dbf2d2cdf0c506a (diff)
downloadcoreboot-cef3b896c1593de5a41b57bff4d4600d0c90e06e.tar.xz
Report if cmos_layout.bin can't be found when it should.
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com> Acked-by: Patrick Georgi <patrick.georgi@secunet.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6269 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/x86/boot/coreboot_table.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/arch/x86/boot/coreboot_table.c b/src/arch/x86/boot/coreboot_table.c
index 3dc8ea612b..dea030b60a 100644
--- a/src/arch/x86/boot/coreboot_table.c
+++ b/src/arch/x86/boot/coreboot_table.c
@@ -549,6 +549,8 @@ unsigned long write_coreboot_table(
memcpy(rec_dest, &option_table, option_table.size);
/* Create cmos checksum entry in coreboot table */
lb_cmos_checksum(head);
+ } else {
+ printk(BIOS_ERR, "cmos_layout.bin could not be found!\n");
}
}
#endif