mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 14:11:15 +02:00
Mark the following boards as OK
- ASUS M3A78-EM (reported by Christian Heinz <christian.ch.heinz@gmail.com>) http://www.flashrom.org/pipermail/flashrom/2009-September/000629.html - MSI MS-7368 (K9AG Neo2-Digital) (reported by Joshua Roys <roysjosh@gmail.com>) http://www.flashrom.org/pipermail/flashrom/2009-September/000632.html - GIGABYTE GA-MA770T-UD3P (reported by Kevin Sopp <baraclese@googlemail.com>) http://www.flashrom.org/pipermail/flashrom/2009-September/000529.html - Elitegroup P6VAP-A+ Tested by Uwe Hermann <uwe@hermann-uwe.de> on hardware. Maximum supported chip size in this board is 256 KB. Small changes in print.c were required to adjust for longer board names. Corresponding to flashrom svn r734. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
This commit is contained in:
6
print.c
6
print.c
@ -181,7 +181,7 @@ void print_supported_boards_helper(const struct board_info *b, const char *msg)
|
||||
for (j = 0; j < 25 - strlen(b[i].vendor); j++)
|
||||
printf(" ");
|
||||
printf("%s", b[i].name);
|
||||
for (j = 0; j < 23 - strlen(b[i].name); j++)
|
||||
for (j = 0; j < 28 - strlen(b[i].name); j++)
|
||||
printf(" ");
|
||||
printf("\n");
|
||||
}
|
||||
@ -196,7 +196,7 @@ void print_supported_boards(void)
|
||||
boardcount++;
|
||||
|
||||
printf("\nSupported boards which need write-enable code (total: %d):"
|
||||
"\n\nVendor: Board: "
|
||||
"\n\nVendor: Board: "
|
||||
"Required option:\n\n", boardcount);
|
||||
|
||||
for (i = 0; b[i].vendor_name != NULL; i++) {
|
||||
@ -204,7 +204,7 @@ void print_supported_boards(void)
|
||||
for (j = 0; j < 25 - strlen(b[i].vendor_name); j++)
|
||||
printf(" ");
|
||||
printf("%s", b[i].board_name);
|
||||
for (j = 0; j < 25 - strlen(b[i].board_name); j++)
|
||||
for (j = 0; j < 30 - 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);
|
||||
|
Reference in New Issue
Block a user