summaryrefslogtreecommitdiffstats
path: root/print.c
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2009-09-25 01:22:42 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2009-09-25 01:22:42 +0000
commit5714614c7fcdae17cb40797dc66602daff163c8d (patch)
treedd6858a046e33e04addf90371ff24c453b96d739 /print.c
parent45835c40923e70058bb0ebe7fb18fdca264b307d (diff)
downloadast2050-flashrom-5714614c7fcdae17cb40797dc66602daff163c8d.zip
ast2050-flashrom-5714614c7fcdae17cb40797dc66602daff163c8d.tar.gz
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>
Diffstat (limited to 'print.c')
-rw-r--r--print.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/print.c b/print.c
index 235c725..9300e30 100644
--- a/print.c
+++ b/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);
OpenPOWER on IntegriCloud