From e5ac16445f70486713b6533c2071c80eb66cc174 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Wed, 12 Mar 2008 11:54:51 +0000 Subject: Add --list-supported option which lists the supported ROM chips, chipsets, and mainboards Corresponding to flashrom svn r199 and coreboot v2 svn r3133. Signed-off-by: Uwe Hermann Acked-by: Ward Vandewege --- board_enable.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'board_enable.c') diff --git a/board_enable.c b/board_enable.c index da5043f3..5b4b39a3 100644 --- a/board_enable.c +++ b/board_enable.c @@ -500,6 +500,18 @@ struct board_pciid_enable board_pciid_enables[] = { {0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL} /* Keep this */ }; +void print_supported_boards(void) +{ + int i; + + printf("\nSupported mainboards (this list is not exhaustive!):\n\n"); + + for (i = 0; board_pciid_enables[i].name != NULL; i++) + printf("%s\n", board_pciid_enables[i].name); + + printf("\nSee also: http://coreboot.org/Flashrom\n"); +} + /** * Match boards on coreboot table gathered vendor and part name. * Require main PCI IDs to match too as extra safety. -- cgit v1.2.3