diff options
author | Michael Brown <mcb30@etherboot.org> | 2008-12-04 23:09:48 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2008-12-04 23:19:12 +0000 |
commit | 29480dd7159190b91cca17298a87425a58826d32 (patch) | |
tree | 8fc1e70c689ab20d6ec7e85955a88a03a09354fa /src/config | |
parent | 045a22764afd75a0b887c7da6828d683c303ebb4 (diff) | |
download | ipxe-29480dd7159190b91cca17298a87425a58826d32.tar.gz |
[efi] Use EFI-native mechanism for accessing SMBIOS table
EFI provides a copy of the SMBIOS table accessible via the EFI system
table, which we should use instead of manually scanning through the
F000:0000 segment.
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/defaults/efi.h | 1 | ||||
-rw-r--r-- | src/config/defaults/pcbios.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/config/defaults/efi.h b/src/config/defaults/efi.h index d980136a8..fe38fd03b 100644 --- a/src/config/defaults/efi.h +++ b/src/config/defaults/efi.h @@ -14,6 +14,7 @@ #define TIMER_EFI #define NAP_EFIX86 #define UMALLOC_EFI +#define SMBIOS_EFI #define IMAGE_EFI /* EFI image support */ diff --git a/src/config/defaults/pcbios.h b/src/config/defaults/pcbios.h index e1360f533..4359e1a4c 100644 --- a/src/config/defaults/pcbios.h +++ b/src/config/defaults/pcbios.h @@ -14,6 +14,7 @@ #define CONSOLE_PCBIOS #define NAP_PCBIOS #define UMALLOC_MEMTOP +#define SMBIOS_PCBIOS #define IMAGE_ELF /* ELF image support */ #define IMAGE_MULTIBOOT /* MultiBoot image support */ |