Also print the required -m option in --list-supported output (trivial).

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3138 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Uwe Hermann 2008-03-13 18:41:07 +00:00
parent b7b22e3c57
commit ee2bb3a21e
1 changed files with 10 additions and 2 deletions

View File

@ -506,8 +506,16 @@ void print_supported_boards(void)
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);
for (i = 0; board_pciid_enables[i].name != NULL; i++) {
if (board_pciid_enables[i].lb_vendor != NULL) {
printf("%s (-m %s:%s)\n", board_pciid_enables[i].name,
board_pciid_enables[i].lb_vendor,
board_pciid_enables[i].lb_part);
} else {
printf("%s (autodetected)\n",
board_pciid_enables[i].name);
}
}
printf("\nSee also: http://coreboot.org/Flashrom\n");
}