Commit 045e0aec authored by Adam Belay's avatar Adam Belay Committed by Linus Torvalds

[PNPBIOS] blacklist asus P4P800

The ASUS p4p800 motherboard's BIOS has a broken PnPBIOS implementation.  This 
patch will disable PnPBIOS support if this hardware is detected by DMI.
parent 6faff072
...@@ -778,12 +778,16 @@ static __initdata struct dmi_blacklist dmi_blacklist[]={ ...@@ -778,12 +778,16 @@ static __initdata struct dmi_blacklist dmi_blacklist[]={
MATCH(DMI_BIOS_DATE, "10/26/01"), NO_MATCH MATCH(DMI_BIOS_DATE, "10/26/01"), NO_MATCH
} }, } },
{ exploding_pnp_bios, "Higraded P14H", { /* BIOSPnP problem */ { exploding_pnp_bios, "Higraded P14H", { /* PnPBIOS GPF on boot */
MATCH(DMI_BIOS_VENDOR, "American Megatrends Inc."), MATCH(DMI_BIOS_VENDOR, "American Megatrends Inc."),
MATCH(DMI_BIOS_VERSION, "07.00T"), MATCH(DMI_BIOS_VERSION, "07.00T"),
MATCH(DMI_SYS_VENDOR, "Higraded"), MATCH(DMI_SYS_VENDOR, "Higraded"),
MATCH(DMI_PRODUCT_NAME, "P14H") MATCH(DMI_PRODUCT_NAME, "P14H")
} }, } },
{ exploding_pnp_bios, "ASUS P4P800", { /* PnPBIOS GPF on boot */
MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer Inc."),
MATCH(DMI_BOARD_NAME, "P4P800"),
} },
/* Machines which have problems handling enabled local APICs */ /* Machines which have problems handling enabled local APICs */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment