[pull request] LP Bug 271370 - Dell Dimension Reboot Quirk

Leann Ogasawara leann.ogasawara at canonical.com
Tue Oct 14 14:51:19 UTC 2008


The following changes since commit 19ee446d7bdeda12de97157e64d351539c916449:
  Leann Ogasawara (1):
        UBUNTU: Add Dell Dimension 9200 reboot quirk

are available in the git repository at:

  git://kernel.ubuntu.com/ogasawara/ubuntu-intrepid.git master

I've tested and confirmed this patch to work on a Dell Dimension 9200.
It resolves both LP Bugs 271270 and 131292.

commit 19ee446d7bdeda12de97157e64d351539c916449
Author: Leann Ogasawara <leann.ogasawara at canonical.com>
Date:   Tue Oct 14 07:24:15 2008 -0700

    UBUNTU: Add Dell Dimension 9200 reboot quirk
    Bug: #271370
    
    The Dell Dimension 9200 will hang when rebooting unless reboot=b is
    specified.  Add a quirk so that a reboot through the bios is done.
    
    Signed-off-by: Leann Ogasawara <leann.ogasawara at canonical.com>

diff --git a/arch/x86/kernel/reboot.c b/arch/x86/kernel/reboot.c
index 724adfc..904a8ea 100644
--- a/arch/x86/kernel/reboot.c
+++ b/arch/x86/kernel/reboot.c
@@ -185,6 +185,15 @@ static struct dmi_system_id __initdata reboot_dmi_table[] = {
 			DMI_MATCH(DMI_PRODUCT_NAME, "Precision WorkStation T5400"),
 		},
 	},
+	{	/* Handle problems with rebooting on Dell Dimension 9200 */
+		.callback = set_bios_reboot,
+		.ident = "Dell Dimension 9200",
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
+			DMI_MATCH(DMI_PRODUCT_NAME, "Dell DXP061"),
+			DMI_MATCH(DMI_BOARD_NAME, "0CT017"),
+		},
+	},
 	{	/* Handle problems with rebooting on HP laptops */
 		.callback = set_bios_reboot,
 		.ident = "HP Compaq Laptop",






More information about the kernel-team mailing list