Patrick Georgi ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/243
-gerrit commit 5bcd9a7d036de9942eddbe0dde3b5bf939a0bc95 Author: Patrick Georgi <[email protected]> Date: Thu Oct 6 15:24:08 2011 +0200 siemens/sitemp_g1p1: Don't mess with virtual wire settings That function broke SMP on Linux 2.4, now it works. Change-Id: I4ddd25fef57bed64877959ca96cca68170042bca Signed-off-by: Patrick Georgi <[email protected]> --- src/mainboard/siemens/sitemp_g1p1/mptable.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mainboard/siemens/sitemp_g1p1/mptable.c b/src/mainboard/siemens/sitemp_g1p1/mptable.c index 958bfc1..0e18fb3 100644 --- a/src/mainboard/siemens/sitemp_g1p1/mptable.c +++ b/src/mainboard/siemens/sitemp_g1p1/mptable.c @@ -70,6 +70,6 @@ static void *smp_write_config_table(void *v) unsigned long write_smp_table(unsigned long addr) { void *v; - v = smp_write_floating_table(addr, 1); + v = smp_write_floating_table(addr, 0); return (unsigned long)smp_write_config_table(v); } -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

