aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86/boot
diff options
context:
space:
mode:
authorVladimir Serbinenko <phcoder@gmail.com>2014-10-16 13:21:47 +0200
committerVladimir Serbinenko <phcoder@gmail.com>2014-10-16 17:42:25 +0200
commita9db82fbaff166bf474fb6ead7345073a4d3a77d (patch)
tree4d16443325f02dccc1ed088c63c4cfcf9f0461d0 /src/arch/x86/boot
parent2adb297cf930ff5c2d78d828d801461feae3254b (diff)
smbios: Mark laptops as such
Change-Id: I179a4cede2f826f72a400208748798737216c01a Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/7071 Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/arch/x86/boot')
-rw-r--r--src/arch/x86/boot/smbios.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/arch/x86/boot/smbios.c b/src/arch/x86/boot/smbios.c
index f374bd9e87..724def3419 100644
--- a/src/arch/x86/boot/smbios.c
+++ b/src/arch/x86/boot/smbios.c
@@ -253,7 +253,11 @@ static int smbios_write_type3(unsigned long *current, int handle)
t->bootup_state = SMBIOS_STATE_SAFE;
t->power_supply_state = SMBIOS_STATE_SAFE;
t->thermal_state = SMBIOS_STATE_SAFE;
- t->_type = SMBIOS_ENCLOSURE_DESKTOP;
+ if(IS_ENABLED(CONFIG_SYSTEM_TYPE_LAPTOP)) {
+ t->_type = SMBIOS_ENCLOSURE_NOTEBOOK;
+ } else {
+ t->_type = SMBIOS_ENCLOSURE_DESKTOP;
+ }
t->security_status = SMBIOS_STATE_SAFE;
len = t->length + smbios_string_table_len(t->eos);
*current += len;