reboot freeze on Dell XPS 710
Bug #323592 reported by
rojanu
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
linux (Ubuntu) |
Fix Released
|
Medium
|
Tim Gardner |
Bug Description
Binary package hint: linux-source-2.6.28
I use a Dell XPS 710 with Ubuntu Jaunty installed on. System reboot freezes on
"[1774.527497] Restarting system." but nothing happens. I have had this problem since edgy, now I had some time to look at it. solution is to add "reboot=b" as a kernel option.
dmidecode output is attached
Related branches
Changed in linux: | |
importance: | Undecided → Medium |
status: | New → Triaged |
Changed in linux: | |
assignee: | nobody → manjo |
status: | Triaged → In Progress |
To post a comment you must log in.
Attaching a possible patch for the kernel team to consider. Will inline below as well:
diff --git a/arch/ x86/kernel/ reboot. c b/arch/ x86/kernel/ reboot. c x86/kernel/ reboot. c x86/kernel/ reboot. c
DMI_ MATCH(DMI_ PRODUCT_ NAME, "HP Compaq"), DMI_SYS_ VENDOR, "Dell Inc."), DMI_PRODUCT_ NAME, "Dell XPS710"),
index 0d897f8..66a9cfc 100644
--- a/arch/
+++ b/arch/
@@ -211,6 +211,14 @@ static struct dmi_system_id __initdata reboot_dmi_table[] = {
},
},
+ { /* Handle problems with rebooting on Dell XPS710 */
+ .callback = set_bios_reboot,
+ .ident = "Dell XPS710",
+ .matches = {
+ DMI_MATCH(
+ DMI_MATCH(
+ },
+ },
{ }
};