1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-26 22:52:34 +02:00

print.c: Print B (block-protect) test status of the chips

This also expands the column for test status by 1 more char, since
now maximum status is longer, PREWB vs PREW.

print.c runs when command line option `flashrom -L` is invoked.

Change-Id: If697fe3ba93dbe34bb8f7a9a4b1686fdb8b3ee58
Signed-off-by: Anastasia Klimchuk <aklm@flashrom.org>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/83131
Reviewed-by: Sergii Dmytruk <sergii.dmytruk@3mdeb.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Anastasia Klimchuk 2024-06-19 18:36:54 +10:00
parent d32b487564
commit f8e618606a

12
print.c
View File

@ -151,7 +151,7 @@ static int print_supported_chips(void)
msg_ginfo(" ");
msg_gdbg("range [V]");
msg_ginfo("\n\n");
msg_ginfo("(P = PROBE, R = READ, E = ERASE, W = WRITE, - = N/A)\n\n");
msg_ginfo("(P = PROBE, R = READ, E = ERASE, W = WRITE, B = block-protect, - = N/A)\n\n");
for (chip = flashchips; chip->name != NULL; chip++) {
/* Don't print generic entries. */
@ -242,6 +242,12 @@ static int print_supported_chips(void)
msg_ginfo("-");
else
msg_ginfo(" ");
if (chip->tested.wp == OK)
msg_ginfo("B");
else if (chip->tested.wp == NA)
msg_ginfo("-");
else
msg_ginfo(" ");
for (i = 0; i < border; i++)
msg_ginfo(" ");
@ -261,6 +267,10 @@ static int print_supported_chips(void)
msg_ginfo("W");
else
msg_ginfo(" ");
if (chip->tested.wp == BAD)
msg_ginfo("B");
else
msg_ginfo(" ");
for (i = 0; i < border + 1; i++)
msg_ginfo(" ");