mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-02 06:23:18 +02:00
Introduce msg_*warn
Also, unify all outputs of "Warning:" and "Error:" to use normal capitalization instead of mixing it with all capitals. Corresponding to flashrom svn r1643. Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Idwer Vollering <vidwer@gmail.com>
This commit is contained in:
@ -96,9 +96,9 @@ int cb_check_image(uint8_t *image, int size)
|
||||
if (!strcasecmp(image_vendor, cb_vendor) && !strcasecmp(image_model, cb_model)) {
|
||||
msg_pdbg2("This coreboot image matches this mainboard.\n");
|
||||
} else {
|
||||
msg_pinfo("WARNING: This coreboot image (%s:%s) does not appear to\n"
|
||||
" be correct for the detected mainboard (%s:%s).\n",
|
||||
image_vendor, image_model, cb_vendor, cb_model);
|
||||
msg_perr("This coreboot image (%s:%s) does not appear to\n"
|
||||
"be correct for the detected mainboard (%s:%s).\n",
|
||||
image_vendor, image_model, cb_vendor, cb_model);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user