Dear coreboot readers!
This is the automatic build system of coreboot.
The developer "vlim" checked in revision 4227 to
the coreboot repository. This caused the following
changes:
Change Log:
dd the family10h Rev C0-C2 support to coreboot.
Signed-off-by: Vincent Lim vincent.lim(a)amd.com
Acked-by: Patrick Georgi <patrick.georgi(a)coresystems.de>
Build Log:
Compilation of msi:ms9185 is still broken
See the error log at http://qa.coreboot.org/log_buildbrd.php?revision=4227&…
[View More]device=ms9185&vendor=…
If something broke during this checkin please be a pain
in vlim's neck until the issue is fixed.
If this issue is not fixed within 24h the revision should
be backed out.
Best regards,
coreboot automatic build system
[View Less]
Dear coreboot readers!
This is the automatic build system of coreboot.
The developer "stepan" checked in revision 4226 to
the coreboot repository. This caused the following
changes:
Change Log:
fix warning: no return statement in function returning non-void
Signed-off-by: Stefan Reinauer <stepan(a)coresystems.de>
Acked-by: Stefan Reinauer <stepan(a)coresystems.de>
Build Log:
Compilation of msi:ms9185 is still broken
See the error log at http://qa.coreboot.org/log_buildbrd.…
[View More]php?revision=4226&device=ms9185&vendor=…
If something broke during this checkin please be a pain
in stepan's neck until the issue is fixed.
If this issue is not fixed within 24h the revision should
be backed out.
Best regards,
coreboot automatic build system
[View Less]
Hi,
attached patch adds high table support to via vt8454c and might be a good
template for other boards and chipsets.
Signed-off-by: Patrick Georgi <patrick.georgi(a)coresystems.de>
Patrick
Dear coreboot readers!
This is the automatic build system of coreboot.
The developer "oxygene" checked in revision 4225 to
the coreboot repository. This caused the following
changes:
Change Log:
Only add ACPI tables if ACPI is enabled for the board.
Trivial fix to make abuild happy.
Signed-off-by: Patrick Georgi <patrick.georgi(a)coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi(a)coresystems.de>
Build Log:
Compilation of arima:hdama has been fixed
Compilation of asus:…
[View More]a8n_e has been fixed
Compilation of broadcom:blast has been fixed
Compilation of gigabyte:ga_2761gxdk has been fixed
Compilation of gigabyte:m57sli has been fixed
Compilation of hp:dl145_g3 has been fixed
Compilation of ibm:e325 has been fixed
Compilation of ibm:e326 has been fixed
Compilation of iwill:dk8s2 has been fixed
Compilation of iwill:dk8x has been fixed
Compilation of msi:ms7135 has been fixed
Compilation of msi:ms7260 has been fixed
Compilation of msi:ms9185 is still broken
See the error log at http://qa.coreboot.org/log_buildbrd.php?revision=4225&device=ms9185&vendor=…
Compilation of msi:ms9282 has been fixed
Compilation of newisys:khepri has been fixed
Compilation of nvidia:l1_2pvv has been fixed
Compilation of sunw:ultra40 has been fixed
Compilation of supermicro:h8dmr has been fixed
Compilation of tyan:s2850 has been fixed
Compilation of tyan:s2875 has been fixed
Compilation of tyan:s2880 has been fixed
Compilation of tyan:s2881 has been fixed
Compilation of tyan:s2882 has been fixed
Compilation of tyan:s2885 has been fixed
Compilation of tyan:s2912 has been fixed
Compilation of tyan:s4880 has been fixed
Compilation of tyan:s4882 has been fixed
If something broke during this checkin please be a pain
in oxygene's neck until the issue is fixed.
If this issue is not fixed within 24h the revision should
be backed out.
Best regards,
coreboot automatic build system
[View Less]
Author: oxygene
Date: 2009-04-28 16:49:21 +0200 (Tue, 28 Apr 2009)
New Revision: 4225
Modified:
trunk/coreboot-v2/src/arch/i386/boot/tables.c
Log:
Only add ACPI tables if ACPI is enabled for the board.
Trivial fix to make abuild happy.
Signed-off-by: Patrick Georgi <patrick.georgi(a)coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi(a)coresystems.de>
Modified: trunk/coreboot-v2/src/arch/i386/boot/tables.c
=================================================================…
[View More]==
--- trunk/coreboot-v2/src/arch/i386/boot/tables.c 2009-04-28 14:18:16 UTC (rev 4224)
+++ trunk/coreboot-v2/src/arch/i386/boot/tables.c 2009-04-28 14:49:21 UTC (rev 4225)
@@ -112,6 +112,7 @@
/* write them in the rom area because DSDT can be large (8K on epia-m) which
* pushes coreboot table out of first 4K if set up in low table area
*/
+#if HAVE_ACPI_TABLES == 1
#if HAVE_HIGH_TABLES == 1
unsigned long high_rsdp=ALIGN(high_table_end, 16);
if (high_tables_base) {
@@ -129,6 +130,7 @@
rom_table_end = (rom_table_end+1023) & ~1023;
#endif
#endif
+#endif
/* copy the smp block to address 0 */
post_code(0x96);
[View Less]