1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-01 14:11:15 +02:00

Also print the supported/nonsupported laptops in -L output

Content taken from current wiki page.

Corresponding to flashrom svn r604.

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
This commit is contained in:
Uwe Hermann
2009-06-18 14:04:44 +00:00
parent e6abef0f64
commit e1aa75ec95
3 changed files with 32 additions and 12 deletions

View File

@ -860,6 +860,25 @@ const struct board_info boards_bad[] = {
{},
};
/* Please keep this list alphabetically ordered by vendor/board. */
const struct board_info laptops_ok[] = {
/* Verified working laptops. */
{ "Lenovo", "3000 V100 TF05Cxx", },
{},
};
/* Please keep this list alphabetically ordered by vendor/board. */
const struct board_info laptops_bad[] = {
/* Verified non-working boards (for now). */
{ "Acer", "Aspire One", },
{ "Dell", "Latitude CPi A366XT", },
{ "IBM/Lenovo", "Thinkpad T40p", },
{ "IBM/Lenovo", "240", },
{},
};
/**
* Match boards on coreboot table gathered vendor and part name.
* Require main PCI IDs to match too as extra safety.