1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-02 14:33:18 +02:00

A bunch of output beautifications and improvements, as well as doc fixes

- Update manpage, we now report supported boards via -L.
 
 - Add some missing escaping for '-' characters in the manpage.

Corresponding to flashrom svn r543.

 - Shorten some of the really long device names, so that -L output looks
   nicer.
   
 - Display a "table header" for all entries/columns in -L output.
 
 - Make -L output tabular for all lists for better readability.
 
 - Do not print "unknown XXXX SPI chip" entries in -L output.
 
 - And random other cosmetics...
 
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
This commit is contained in:
Uwe Hermann
2009-05-22 11:37:27 +00:00
committed by Patrick Georgi
parent 690bcbaf7f
commit e8ba538d03
5 changed files with 56 additions and 44 deletions

View File

@ -822,7 +822,9 @@ void print_supported_boards(void)
int i, j;
struct board_pciid_enable *b = board_pciid_enables;
printf("\nSupported boards which need write-enable code:\n\n");
printf("\nSupported boards which need write-enable code:\n\nVendor: "
" Board: Required option:\n\n");
for (i = 0; b[i].vendor_name != NULL; i++) {
printf("%s", b[i].vendor_name);
for (j = 0; j < 25 - strlen(b[i].vendor_name); j++)
@ -831,9 +833,9 @@ void print_supported_boards(void)
for (j = 0; j < 25 - strlen(b[i].board_name); j++)
printf(" ");
if (b[i].lb_vendor != NULL)
printf("(-m %s:%s)\n", b[i].lb_vendor, b[i].lb_part);
printf("-m %s:%s\n", b[i].lb_vendor, b[i].lb_part);
else
printf("(autodetected)\n");
printf("(none, board is autodetected)\n");
}
printf("\nSupported boards which don't need write-enable code:\n\n");