summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Walter <christian.walter@9elements.com>2019-06-17 16:45:53 +0200
committerPatrick Rudolph <siro@das-labor.org>2019-06-19 11:27:17 +0000
commitac7eee405156e6f4e4c227fb9ddb28c9fdcd2317 (patch)
tree84c5cd10a2c8775a44fd7241fd6b078a01be7351 /src
parentc6a584182e63a9354f4ff875aa1906106ea73a9f (diff)
downloadcoreboot-ac7eee405156e6f4e4c227fb9ddb28c9fdcd2317.tar.gz
coreboot-ac7eee405156e6f4e4c227fb9ddb28c9fdcd2317.tar.bz2
coreboot-ac7eee405156e6f4e4c227fb9ddb28c9fdcd2317.zip
src/arch/x86/smbios: Change SMBIOS Version to 2.8
Change the SMBIOS Version from 2.7 to 2.8. Necessary changes were already pushed in https://review.coreboot.org/c/coreboot/+/33031 Change-Id: I237cdee7d43e814397b958e4cf941bf58949088d Signed-off-by: Christian Walter <christian.walter@9elements.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/33564 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Diffstat (limited to 'src')
-rw-r--r--src/arch/x86/smbios.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/smbios.c b/src/arch/x86/smbios.c
index 54c2b09c4a21..7865c7ef9889 100644
--- a/src/arch/x86/smbios.c
+++ b/src/arch/x86/smbios.c
@@ -1193,7 +1193,7 @@ unsigned long smbios_write_tables(unsigned long current)
memcpy(se->anchor, "_SM_", 4);
se->length = sizeof(struct smbios_entry);
se->major_version = 2;
- se->minor_version = 7;
+ se->minor_version = 8;
se->max_struct_size = max_struct_size;
se->struct_count = handle;
memcpy(se->intermediate_anchor_string, "_DMI_", 5);