summaryrefslogtreecommitdiff
path: root/flashrom.c
diff options
context:
space:
mode:
authoruwe <uwe@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2009-06-20 01:21:38 +0000
committeruwe <uwe@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2009-06-20 01:21:38 +0000
commit59a698b0a32e4764ed8825a20362de483f7cc215 (patch)
tree688a2956d71a139d979d0663f587b294b17a8f84 /flashrom.c
parent6143ed00e49c64cd694dab9a454d32e25ceff546 (diff)
downloadflashrom-59a698b0a32e4764ed8825a20362de483f7cc215.tar.gz
Various wiki output changes:
- Move board_info_url struct to print.c, doesn't have to be global. - Simplify flashrom.c a bit by moving stuff to print.c. Eliminate two now-useless mini-functions in print.c. - Add a note that the wiki page contents are semi-automatically generated. - Mention date of last wiki page update as well as the flashrom revision that was used to generate the wiki output. - Also generate list of supported laptops in -z output now. - Add some more board URLs. - Add a boards_notes[] table to allow for arbitrary footnotes/comments for each board in the table. All notes will automatically be turned into wiki footnotes with correct numbers and will appear at the end of the respective table. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@615 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'flashrom.c')
-rw-r--r--flashrom.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/flashrom.c b/flashrom.c
index 1ccafca..b3f9b03 100644
--- a/flashrom.c
+++ b/flashrom.c
@@ -681,14 +681,7 @@ int main(int argc, char *argv[])
}
if (list_supported_wiki) {
- printf("= Supported devices =\n");
- print_supported_chips_wiki();
- print_supported_chipsets_wiki();
- print_supported_boards_wiki();
- print_supported_pcidevs_wiki_header();
- print_supported_pcidevs_wiki(nics_3com);
- print_supported_pcidevs_wiki(satas_sii);
- print_supported_pcidevs_wiki_footer();
+ print_wiki_tables();
exit(0);
}