diff options
| author | Leann Ogasawara <leann.ogasawara@canonical.com> | 2010-01-27 18:29:18 -0500 |
|---|---|---|
| committer | H. Peter Anvin <hpa@zytor.com> | 2010-01-27 19:28:51 -0500 |
| commit | 35ea63d70f827a26c150993b4b940925bb02b03f (patch) | |
| tree | 86df621c53a83ff25e0268e2157053681122f4cd | |
| parent | aca3bb5910119d4cf6c28568a642582efb4cc14a (diff) | |
x86: Add Dell OptiPlex 760 reboot quirk
Dell OptiPlex 760 hangs on reboot unless reboot=bios is used. Add quirk
to reboot through the BIOS.
BugLink: https://bugs.launchpad.net/bugs/488319
Signed-off-by: Leann Ogasawara <leann.ogasawara@canonical.com>
LKML-Reference: <1264634958.27335.1091.camel@emiko>
Cc: <stable@kernel.org>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
| -rw-r--r-- | arch/x86/kernel/reboot.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/x86/kernel/reboot.c b/arch/x86/kernel/reboot.c index 1545bc0c9845..704bddcdf64d 100644 --- a/arch/x86/kernel/reboot.c +++ b/arch/x86/kernel/reboot.c | |||
| @@ -203,6 +203,15 @@ static struct dmi_system_id __initdata reboot_dmi_table[] = { | |||
| 203 | DMI_MATCH(DMI_BOARD_NAME, "0T656F"), | 203 | DMI_MATCH(DMI_BOARD_NAME, "0T656F"), |
| 204 | }, | 204 | }, |
| 205 | }, | 205 | }, |
| 206 | { /* Handle problems with rebooting on Dell OptiPlex 760 with 0G919G*/ | ||
| 207 | .callback = set_bios_reboot, | ||
| 208 | .ident = "Dell OptiPlex 760", | ||
| 209 | .matches = { | ||
| 210 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
| 211 | DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 760"), | ||
| 212 | DMI_MATCH(DMI_BOARD_NAME, "0G919G"), | ||
| 213 | }, | ||
| 214 | }, | ||
| 206 | { /* Handle problems with rebooting on Dell 2400's */ | 215 | { /* Handle problems with rebooting on Dell 2400's */ |
| 207 | .callback = set_bios_reboot, | 216 | .callback = set_bios_reboot, |
| 208 | .ident = "Dell PowerEdge 2400", | 217 | .ident = "Dell PowerEdge 2400", |
