diff options
author | Myles Watson <mylesgw@gmail.com> | 2010-06-01 19:25:31 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2010-06-01 19:25:31 +0000 |
commit | 80e914ffd59ea011b1d4ba1c1a1a1421dc2c6ecc (patch) | |
tree | b53790b2bfaa77e622cd7ad54a500c0371477a62 /src/Kconfig | |
parent | 94de72b919d2a6bdf8f89973b682a53225bf5fcb (diff) |
CONFIG_DEBUG is too generic. Remove it and replace it with CONFIG_DEBUG_SMBUS
and CONFIG_DEBUG_PIRQ.
Fix a couple of typos.
Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5603 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/Kconfig b/src/Kconfig index 85ffab0cf5..3e8e6dbcfa 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -139,10 +139,6 @@ config HEAP_SIZE hex default 0x4000 -config DEBUG - bool - default n - config USE_PRINTK_IN_CAR bool default n @@ -520,6 +516,13 @@ config DEBUG_RAM_SETUP If unsure, say N. +config DEBUG_PIRQ + bool "Check PIRQ table consistency" + default n + depends on GENERATE_PIRQ_TABLE + help + If unsure, say N. + config DEBUG_SMBUS bool "Output verbose SMBus debug messages" default n @@ -528,6 +531,7 @@ config DEBUG_SMBUS || NORTHBRIDGE_VIA_CX700 \ || NORTHBRIDGE_AMD_AMDK8 \ || NORTHBRIDGE_AMD_AMDFAM10 \ + || BOARD_LIPPERT_SPACERUNNER_LX \ || SOUTHBRIDGE_VIA_VT8231) help This option enables additional SMBus (and SPD) debug messages. |