1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-08-15 19:40:19 +02:00

Also print the chip vendor name in --list-supported output

Cosmetic changes in some files, partly bending the 80-characters-per-line
rule in this special case, as the 80-character-limited version looks
equally crappy even in an 80x25 console/xterm, so let's make it at least
look good in a high-resolution xterm.

Corresponding to flashrom svn r203 and coreboot v2 svn r3139.

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
This commit is contained in:
Uwe Hermann
2008-03-13 18:52:51 +00:00
parent 23c3d951b7
commit eac1016437
4 changed files with 151 additions and 244 deletions

View File

@@ -200,7 +200,7 @@ void print_supported_chips(void)
printf("Supported ROM chips:\n\n");
for (i = 0; flashchips[i].name != NULL; i++)
printf("%s\n", flashchips[i].name);
printf("%s %s\n", flashchips[i].vendor, flashchips[i].name);
}
void usage(const char *name)