Skip to content

Commit fab3b58

Browse files
author
Ingo Molnar
committed
x86 reboot quirks: add Dell Precision WorkStation T5400
as reported in: "reboot=bios is mandatory on Dell T5400 server." http://bugzilla.kernel.org/show_bug.cgi?id=11108 add a DMI reboot quirk. Signed-off-by: Ingo Molnar <mingo@elte.hu> Cc: <stable@kernel.org>
1 parent a3cf859 commit fab3b58

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

arch/x86/kernel/reboot.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,14 @@ static struct dmi_system_id __initdata reboot_dmi_table[] = {
177177
DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 2400"),
178178
},
179179
},
180+
{ /* Handle problems with rebooting on Dell T5400's */
181+
.callback = set_bios_reboot,
182+
.ident = "Dell Precision T5400",
183+
.matches = {
184+
DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
185+
DMI_MATCH(DMI_PRODUCT_NAME, "Precision WorkStation T5400"),
186+
},
187+
},
180188
{ /* Handle problems with rebooting on HP laptops */
181189
.callback = set_bios_reboot,
182190
.ident = "HP Compaq Laptop",

0 commit comments

Comments
 (0)