Author: stefanct Date: Wed May 18 03:31:53 2011 New Revision: 1310 URL: http://flashrom.org/trac/flashrom/changeset/1310
Log: 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
Modified: trunk/layout.c
Modified: trunk/layout.c ============================================================================== --- trunk/layout.c Wed May 18 03:31:46 2011 (r1309) +++ trunk/layout.c Wed May 18 03:31:53 2011 (r1310) @@ -76,7 +76,8 @@ 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; }