From 9d231a9fd34670c235aa4baf88e6da9a225f56d1 Mon Sep 17 00:00:00 2001 From: Julien Viard de Galbert Date: Wed, 28 Feb 2018 13:39:55 +0100 Subject: smbios: Add option to select the enclosure type This allows for a mainboard to change the value from its Kconfig. The default value is still SMBIOS_ENCLOSURE_DESKTOP (0x03) or SMBIOS_ENCLOSURE_LAPTOP (0x09) if SYSTEM_TYPE_LAPTOP is set. Change-Id: I35bc913af69565531831746040a0afe0cabe1c58 Signed-off-by: Julien Viard de Galbert Reviewed-on: https://review.coreboot.org/23841 Tested-by: build bot (Jenkins) Reviewed-by: Nico Huber Reviewed-by: Patrick Rudolph Reviewed-by: Paul Menzel --- src/Kconfig | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/Kconfig') diff --git a/src/Kconfig b/src/Kconfig index 02abed2dd4..692a5b7883 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -623,6 +623,16 @@ config MAINBOARD_SMBIOS_PRODUCT_NAME help Override the default Product name stored in SMBIOS structures. +config SMBIOS_ENCLOSURE_TYPE + hex + depends on GENERATE_SMBIOS_TABLES + default 0x09 if SYSTEM_TYPE_LAPTOP + default 0x03 + help + System Enclosure or Chassis Types as defined in SMBIOS specification. + The default value is SMBIOS_ENCLOSURE_DESKTOP (0x03) or + SMBIOS_ENCLOSURE_LAPTOP (0x09) if SYSTEM_TYPE_LAPTOP is set. + endmenu source "payloads/Kconfig" -- cgit v1.2.3