1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-01 14:11:15 +02:00

Warn if running on laptops

Corresponding to flashrom svn r916.

Signed-off-by: Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
This commit is contained in:
Michael Karcher
2010-02-26 09:51:20 +00:00
parent 0d7fb7c5ed
commit 8c1df280e3
3 changed files with 21 additions and 0 deletions

8
dmi.c
View File

@ -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);
}
/**