summaryrefslogtreecommitdiffstats
path: root/internal.c
diff options
context:
space:
mode:
authorMichael Karcher <flashrom@mkarcher.dialup.fu-berlin.de>2010-01-20 14:14:11 +0000
committerMichael Karcher <flashrom@mkarcher.dialup.fu-berlin.de>2010-01-20 14:14:11 +0000
commit6701ee833c31ab5152757ac1366a41bf103dc342 (patch)
treeb33e9eda381e265189c43ab65e24ca6c62da11e5 /internal.c
parent012a31e201de4eac7635753aefda1067642516eb (diff)
downloadast2050-flashrom-6701ee833c31ab5152757ac1366a41bf103dc342.zip
ast2050-flashrom-6701ee833c31ab5152757ac1366a41bf103dc342.tar.gz
Matching board via DMI
If a board is not uniquely identifiable by PCI device/subsystem IDs, a string can be specified to be looked for (case-sensitive, substring or anchored) for now in one of the following DMI items in addition to matching the PCI IDs: - System Manufacturer - System Product Name - System Version - Baseboard Manufacturer - Baseboard Product Name - Baseboard Version Strings are anchored re-like (^ at the beginning, $ at the end), but there are no plans to support full regular expressions and matched to any of the mentioned fields. The match is only made if DMI info is available and the string matches. If no DMI info is available and the PCI IDs match, a warning is printed as the board can not be autodetected. It's still open to discussion whether we add an DMI override switch to specify a string that will definitely match, and whether this switch is only used if no DMI is available or whether it overrides or augments DMI data. DMI data is currently read using dmidecode. This tool is available for all major platforms except MacOS X. I heard that there also is a MacOS X version of dmidecode, but didn't investigate that. Corresponding to flashrom svn r874. Signed-off-by: Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de> Acked-by: Luc Verhaegen <libv@skynet.be> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Diffstat (limited to 'internal.c')
-rw-r--r--internal.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal.c b/internal.c
index acb99b7..935240d 100644
--- a/internal.c
+++ b/internal.c
@@ -152,6 +152,7 @@ int internal_init(void)
* mainboard specific flash enable sequence.
*/
coreboot_init();
+ dmi_init();
/* Probe for the SuperI/O chip and fill global struct superio. */
probe_superio();
OpenPOWER on IntegriCloud