diff options
author | Gabriel L. Somlo <gsomlo@gmail.com> | 2014-04-23 15:04:49 -0400 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2014-05-06 15:49:07 +0200 |
commit | d85c22e44ee4e24f2be19d579ea8fa0066a85fbb (patch) | |
tree | 60f5085c21091977738357876eeb821f1c48038f /src/fw/smbios.c | |
parent | 0784d04cb6f6e5c893aaf368091f20326fb847fe (diff) | |
download | seabios-d85c22e44ee4e24f2be19d579ea8fa0066a85fbb.tar.gz |
SMBIOS: Check for aggregate tables & entry point in fw_cfg
Check fw_cfg for the presence of an aggregate set of smbios
tables (etc/smbios/smbios-tables) and an entry point structure
(etc/smbios/smbios-anchor), and, if found, use them instead of
generating entries locally.
We ensure the presence of a type 0 (bios information) structure
by generating it locally if necessary, which is expected to be
the common case.
Signed-off-by: Gabriel L. Somlo <somlo@cmu.edu>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'src/fw/smbios.c')
-rw-r--r-- | src/fw/smbios.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fw/smbios.c b/src/fw/smbios.c index 0ac9ff5e..dba05413 100644 --- a/src/fw/smbios.c +++ b/src/fw/smbios.c @@ -504,7 +504,7 @@ smbios_init_type_127(void *start) #define TEMPSMBIOSSIZE (32 * 1024) void -smbios_setup(void) +smbios_legacy_setup(void) { if (! CONFIG_SMBIOS) return; |