diff options
-rw-r--r-- | src/arch/x86/boot/smbios.c | 2 | ||||
-rw-r--r-- | src/include/smbios.h | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/arch/x86/boot/smbios.c b/src/arch/x86/boot/smbios.c index ce47a8bd64..1e720ec87a 100644 --- a/src/arch/x86/boot/smbios.c +++ b/src/arch/x86/boot/smbios.c @@ -253,7 +253,7 @@ 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 = 3; + t->_type = SMBIOS_ENCLOSURE_DESKTOP; t->security_status = SMBIOS_STATE_SAFE; len = t->length + smbios_string_table_len(t->eos); *current += len; diff --git a/src/include/smbios.h b/src/include/smbios.h index 7c41c42fad..a5716b38a5 100644 --- a/src/include/smbios.h +++ b/src/include/smbios.h @@ -115,6 +115,12 @@ struct smbios_type2 { char eos[2]; } __attribute__((packed)); +enum +{ + SMBIOS_ENCLOSURE_DESKTOP = 3, + SMBIOS_ENCLOSURE_NOTEBOOK = 9, +}; + struct smbios_type3 { u8 type; u8 length; |