summaryrefslogtreecommitdiff
path: root/layout.c
diff options
context:
space:
mode:
authorstefanct <stefanct@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2011-05-18 01:31:53 +0000
committerstefanct <stefanct@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2011-05-18 01:31:53 +0000
commit3f8619dedaadf01c978b1f6d92928bceaee72802 (patch)
tree093bf37ae152b957729978137e28e3f87a339aec /layout.c
parent7a3e9f3ca43da994e785e3026048cb75f5465230 (diff)
downloadflashrom-3f8619dedaadf01c978b1f6d92928bceaee72802.tar.gz
explain better what checks are disabled in case we detect a legacy BIOS
Signed-off-by: Stefan Tauner <stefan.tauner@student.tuwien.ac.at> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@1310 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'layout.c')
-rw-r--r--layout.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/layout.c b/layout.c
index 92fe852..d719a05 100644
--- a/layout.c
+++ b/layout.c
@@ -76,7 +76,8 @@ int show_id(uint8_t *bios, int size, int force)
mb_vendor_offset = *(walk - 2);
if ((*walk) == 0 || ((*walk) & 0x3ff) != 0 || (*walk) > size ||
mb_part_offset > size || mb_vendor_offset > size) {
- msg_pinfo("Flash image seems to be a legacy BIOS. Disabling checks.\n");
+ msg_pinfo("Flash image seems to be a legacy BIOS. "
+ "Disabling coreboot-related checks.\n");
return 0;
}