summaryrefslogtreecommitdiffstats
path: root/dmi.c
diff options
context:
space:
mode:
Diffstat (limited to 'dmi.c')
-rw-r--r--dmi.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/dmi.c b/dmi.c
index a68f210..30a4670 100644
--- a/dmi.c
+++ b/dmi.c
@@ -98,6 +98,7 @@ static char *get_dmi_string(const char *string_name)
void dmi_init(void)
{
int i;
+ char *chassis_type;
has_dmi_support = 1;
for (i = 0; i < DMI_ID_INVALID; i++) {
dmistrings[i] = get_dmi_string(dmidecode_names[i]);
@@ -106,6 +107,13 @@ void dmi_init(void)
break;
}
}
+
+ chassis_type = get_dmi_string("chassis-type");
+ if (chassis_type && !strcmp(chassis_type, "Notebook")) {
+ printf_debug("Laptop detected via DMI");
+ is_laptop = 1;
+ }
+ free(chassis_type);
}
/**
OpenPOWER on IntegriCloud