the following patch was just integrated into master:
commit 2aa6b7fe12bd8ed6d4d3a8edcbc40b80dc746ba3
Author: Cristian Măgherușan-Stanciu <cristi.magherusan(a)gmail.com>
Date: Sat Jul 2 00:44:39 2011 +0300
added a config option for ACPI debugging
Change-Id: Ie6296f5652196c6258aa6902d84dd86c17e224cb
Signed-off-by: Cristian Măgherușan-Stanciu <cristi.magherusan(a)gmail.com>
See http://review.coreboot.org/36 for details.
-gerrit
Patrick Georgi (patrick(a)georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/79
-gerrit
commit 434555659991021344fcebd7fcef910c3ae78ae5
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Sat Jul 2 00:29:09 2011 +0200
Fixes to the libpayload build system
- its Makefile is part of the libpayload project
- fix conversion bug in powerpc's Makefile.inc
Change-Id: I84f2da092c3733ea7d0f232cb3768078cf13dfd5
Signed-off-by: Patrick Georgi <patrick(a)georgi-clan.de>
---
payloads/libpayload/Makefile | 2 +-
payloads/libpayload/arch/powerpc/Makefile.inc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/payloads/libpayload/Makefile b/payloads/libpayload/Makefile
index b976baa..667822d 100644
--- a/payloads/libpayload/Makefile
+++ b/payloads/libpayload/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the coreboot project.
+## This file is part of the libpayload project.
##
## Copyright (C) 2008 Advanced Micro Devices, Inc.
## Copyright (C) 2008 Uwe Hermann <uwe(a)hermann-uwe.de>
diff --git a/payloads/libpayload/arch/powerpc/Makefile.inc b/payloads/libpayload/arch/powerpc/Makefile.inc
index bfbec27..44ce431 100644
--- a/payloads/libpayload/arch/powerpc/Makefile.inc
+++ b/payloads/libpayload/arch/powerpc/Makefile.inc
@@ -29,6 +29,6 @@
head.o-y := head.S
libc-y += main.c sysinfo.c
-libc-y += timer.c coreboot.c util.S.c
+libc-y += timer.c coreboot.c util.S
libc-y += exec.S virtual.c
Cristian Măgherușan-Stanciu (cristi.magherusan(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/36
-gerrit
commit 2aa6b7fe12bd8ed6d4d3a8edcbc40b80dc746ba3
Author: Cristian Măgherușan-Stanciu <cristi.magherusan(a)gmail.com>
Date: Sat Jul 2 00:44:39 2011 +0300
added a config option for ACPI debugging
Change-Id: Ie6296f5652196c6258aa6902d84dd86c17e224cb
Signed-off-by: Cristian Măgherușan-Stanciu <cristi.magherusan(a)gmail.com>
---
src/Kconfig | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/src/Kconfig b/src/Kconfig
index 7e6214a..7b4f487 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -651,6 +651,23 @@ config DEBUG_MALLOC
If unsure, say N.
endif
+config DEBUG_ACPI
+ def_bool n
+
+# Only visible if debug level is DEBUG (7) or SPEW (8) as it does additional
+# printk(BIOS_DEBUG, ...) calls.
+if DEFAULT_CONSOLE_LOGLEVEL_7 || DEFAULT_CONSOLE_LOGLEVEL_8
+config DEBUG_ACPI
+ bool "Output verbose ACPI debug messages"
+ default n
+ help
+ This option enables additional ACPI related debug messages.
+
+ Note: This option will slightly increase the size of the coreboot image.
+
+ If unsure, say N.
+endif
+
config REALMODE_DEBUG
def_bool n
depends on PCI_OPTION_ROM_RUN_REALMODE