diff options
author | Cristian Măgherușan-Stanciu <cristi.magherusan@gmail.com> | 2011-07-02 00:44:39 +0300 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2011-07-02 00:49:53 +0200 |
commit | 9f52ea4c3cbde9c2bab06a7023d2722dc5e19c30 (patch) | |
tree | b67af3427c06851b34bbf35d4abf849c1bd7c58d | |
parent | 3bda0443bad79db3aff190b792ed2976467091aa (diff) | |
download | coreboot-9f52ea4c3cbde9c2bab06a7023d2722dc5e19c30.tar.xz |
added a config option for ACPI debugging
Change-Id: Ie6296f5652196c6258aa6902d84dd86c17e224cb
Signed-off-by: Cristian Măgherușan-Stanciu <cristi.magherusan@gmail.com>
Reviewed-on: http://review.coreboot.org/36
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Tested-by: build bot (Jenkins)
-rw-r--r-- | src/Kconfig | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig index 7e6214a499..7b4f4874ec 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 |