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:
parent
b7b22e3c57
commit
ee2bb3a21e
|
@ -506,8 +506,16 @@ void print_supported_boards(void)
|
||||||
|
|
||||||
printf("\nSupported mainboards (this list is not exhaustive!):\n\n");
|
printf("\nSupported mainboards (this list is not exhaustive!):\n\n");
|
||||||
|
|
||||||
for (i = 0; board_pciid_enables[i].name != NULL; i++)
|
for (i = 0; board_pciid_enables[i].name != NULL; i++) {
|
||||||
printf("%s\n", board_pciid_enables[i].name);
|
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");
|
printf("\nSee also: http://coreboot.org/Flashrom\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue