From 045e0aec19af487b0013738c18f2d57765798aec Mon Sep 17 00:00:00 2001 From: Adam Belay Date: Wed, 14 Apr 2004 04:32:32 +0000 Subject: [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. --- arch/i386/kernel/dmi_scan.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/arch/i386/kernel/dmi_scan.c b/arch/i386/kernel/dmi_scan.c index 47f7f6fb938d9..0f70b968bfad6 100644 --- a/arch/i386/kernel/dmi_scan.c +++ b/arch/i386/kernel/dmi_scan.c @@ -778,12 +778,16 @@ static __initdata struct dmi_blacklist dmi_blacklist[]={ 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_VERSION, "07.00T"), MATCH(DMI_SYS_VENDOR, "Higraded"), 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 */ -- cgit 1.2.3-korg