diff options
author | Robin Getz <rgetz@blackfin.uclinux.org> | 2008-10-10 06:13:21 -0400 |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2008-10-10 06:13:21 -0400 |
commit | 9f06c38fb230720371397a57faa24aa6e31b2c87 (patch) | |
tree | c9bb931986abc5ad2ebaccf4946687e95805071c /arch/blackfin/Kconfig.debug | |
parent | a88c71e4367aada2065c5e247477c891d2ca952f (diff) |
Blackfin arch: Add optional verbose debug
Add optional verbose debug - which when turned off, quiets down
userspace errors. Saves ~8k of code/data for production systems
Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch/blackfin/Kconfig.debug')
-rw-r--r-- | arch/blackfin/Kconfig.debug | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/blackfin/Kconfig.debug b/arch/blackfin/Kconfig.debug index f08aea4fc5eb..3ad25983ec97 100644 --- a/arch/blackfin/Kconfig.debug +++ b/arch/blackfin/Kconfig.debug | |||
@@ -5,6 +5,19 @@ source "lib/Kconfig.debug" | |||
5 | config HAVE_ARCH_KGDB | 5 | config HAVE_ARCH_KGDB |
6 | def_bool y | 6 | def_bool y |
7 | 7 | ||
8 | config DEBUG_VERBOSE | ||
9 | bool "Verbose fault messages" | ||
10 | default y | ||
11 | select PRINTK | ||
12 | help | ||
13 | When a program crashes due to an exception, or the kernel detects | ||
14 | an internal error, the kernel can print a not so brief message | ||
15 | explaining what the problem was. This debugging information is | ||
16 | useful to developers and kernel hackers when tracking down problems, | ||
17 | but mostly meaningless to other people. This is always helpful for | ||
18 | debugging but serves no purpose on a production system. | ||
19 | Most people should say N here. | ||
20 | |||
8 | config DEBUG_MMRS | 21 | config DEBUG_MMRS |
9 | bool "Generate Blackfin MMR tree" | 22 | bool "Generate Blackfin MMR tree" |
10 | select DEBUG_FS | 23 | select DEBUG_FS |