aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/nvidia
diff options
context:
space:
mode:
authorScott Duplichan <scott@notabs.org>2010-10-24 16:22:11 +0000
committerScott Duplichan <scott@notabs.org>2010-10-24 16:22:11 +0000
commit7c1fb7b79860baf1af2110b7fb90903b9cdcfa99 (patch)
tree0a59f0fb6534a2a66c3e3f46944938dd27b6fa1d /src/southbridge/nvidia
parent7015989464d9d12f3250983bd5b095b13e255724 (diff)
Running a checked build of Windows is needed for understanding its various BIOS related BSODs. Win7 checked build complains when running coreboot+seabios:
FADT revision inconsistent with length. Revision: 0x1 Length: 0xf4 Expected Length: 0x74 Change the FADT revision from 1 to 3 to match its length and prevent the Windows checked build assert. Signed-off-by: Scott Duplichan <scott@notabs.org> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5985 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/nvidia')
-rw-r--r--src/southbridge/nvidia/ck804/ck804_fadt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/southbridge/nvidia/ck804/ck804_fadt.c b/src/southbridge/nvidia/ck804/ck804_fadt.c
index 205f1f0550..a315a32b96 100644
--- a/src/southbridge/nvidia/ck804/ck804_fadt.c
+++ b/src/southbridge/nvidia/ck804/ck804_fadt.c
@@ -20,10 +20,11 @@ void acpi_create_fadt(acpi_fadt_t * fadt, acpi_facs_t * facs, void *dsdt)
memcpy(header->signature, "FACP", 4);
#ifdef LONG_FADT
header->length = 244;
+ header->revision = 3;
#else
header->length = 0x74;
-#endif
header->revision = 1;
+#endif
memcpy(header->oem_id, "CORE ", 6);
memcpy(header->oem_table_id, "CB-FADT ", 8);
memcpy(header->asl_compiler_id, "IASL", 4);