From 5714614c7fcdae17cb40797dc66602daff163c8d Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Fri, 25 Sep 2009 01:22:42 +0000 Subject: Mark the following boards as OK - ASUS M3A78-EM (reported by Christian Heinz ) http://www.flashrom.org/pipermail/flashrom/2009-September/000629.html - MSI MS-7368 (K9AG Neo2-Digital) (reported by Joshua Roys ) http://www.flashrom.org/pipermail/flashrom/2009-September/000632.html - GIGABYTE GA-MA770T-UD3P (reported by Kevin Sopp ) http://www.flashrom.org/pipermail/flashrom/2009-September/000529.html - Elitegroup P6VAP-A+ Tested by Uwe Hermann 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 Acked-by: Uwe Hermann --- print.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'print.c') 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); -- cgit v1.1