summaryrefslogtreecommitdiffstats
path: root/board_enable.c
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2008-03-12 11:54:51 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2008-03-12 11:54:51 +0000
commite5ac16445f70486713b6533c2071c80eb66cc174 (patch)
tree3e6343a00bfd9a05e644467f9e8e990816c865f5 /board_enable.c
parent75f510768d65acfefb0813873992449f4d186f35 (diff)
downloadast2050-flashrom-e5ac16445f70486713b6533c2071c80eb66cc174.zip
ast2050-flashrom-e5ac16445f70486713b6533c2071c80eb66cc174.tar.gz
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 <uwe@hermann-uwe.de> Acked-by: Ward Vandewege <ward@gnu.org>
Diffstat (limited to 'board_enable.c')
-rw-r--r--board_enable.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/board_enable.c b/board_enable.c
index da5043f..5b4b39a 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.
OpenPOWER on IntegriCloud