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

Utilize new tested states for chipsets as well

Mark all ME-enabled Intel chipsets as DEP, alter print.c accordingly
(print_wiki.c was already prepared). And realign the chipset enable
table when we are at it already.

Corresponding to flashrom svn r1815.

Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
This commit is contained in:
Stefan Tauner
2014-06-02 00:34:58 +00:00
parent 265fcac1b6
commit 428ba2b807
2 changed files with 268 additions and 268 deletions

View File

@ -395,7 +395,7 @@ static void print_supported_chipsets(void)
for (i = strlen("Chipset"); i < maxchipsetlen; i++)
msg_ginfo(" ");
msg_ginfo("PCI IDs State\n\n");
msg_ginfo("PCI IDs Status\n\n");
for (c = chipset_enables; c->vendor_name != NULL; c++) {
msg_ginfo("%s", c->vendor_name);
@ -404,8 +404,8 @@ static void print_supported_chipsets(void)
msg_ginfo("%s", c->device_name);
for (i = 0; i < maxchipsetlen - strlen(c->device_name); i++)
msg_ginfo(" ");
msg_ginfo("%04x:%04x%s\n", c->vendor_id, c->device_id,
(c->status == NT) ? " (untested)" : "");
msg_ginfo("%04x:%04x %s\n", c->vendor_id, c->device_id,
test_state_to_text(c->status));
}
}