summaryrefslogtreecommitdiff
path: root/target/linux/config/Config.in.debug
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-12-30 22:45:29 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-12-30 22:45:29 +0100
commit220a96f9926788ed531717f78e44fdf1e7ab3b34 (patch)
tree406f65eea71fabd8cf66c2bd1108ec63f8c349ee /target/linux/config/Config.in.debug
parent38af8185ea05a1c5d1abb32a68a025e3b4afa4d6 (diff)
rework architecture / embedded systems concept
Make configuration of new targets cheap. Just add a new file in target/arch/sys-enabled/foo. See other files for syntax. While doing runtime tests with the new infrastructure I've updated a lot of other stuff: - gcc 4.5.2 - uClibc 0.9.32-rc1 (NPTL) - strongswan, php, miredo, parted, util-linux-ng, e2fsprogs I promise, this is the last big fat commit this year ;)
Diffstat (limited to 'target/linux/config/Config.in.debug')
-rw-r--r--target/linux/config/Config.in.debug27
1 files changed, 10 insertions, 17 deletions
diff --git a/target/linux/config/Config.in.debug b/target/linux/config/Config.in.debug
index 814b6d6a6..3da69a594 100644
--- a/target/linux/config/Config.in.debug
+++ b/target/linux/config/Config.in.debug
@@ -2,38 +2,32 @@ menu "Kernel debugging"
config ADK_KERNEL_PROFILING
boolean
- default n
config ADK_KERNEL_DEBUG_KERNEL
boolean
- default n
config ADK_KERNEL_DEBUG_INFO
boolean
- default n
config ADK_KERNEL_KGDB
boolean
- default n
config ADK_KERNEL_KGDB_SERIAL_CONSOLE
boolean
- default n
config ADK_KERNEL_FRAME_POINTER
boolean
- default n
config ADK_QUIET_KERNEL
prompt "Make bootup quiet without messages from the kernel"
- bool
+ boolean
default n
help
Make bootup quiet without messages from the kernel.
config ADK_KERNEL_MAGIC_SYSRQ
prompt "Magic BREAK sequence"
- bool
+ boolean
default y
help
Enable this to be able to use the Magic SysRq functions,
@@ -41,7 +35,7 @@ config ADK_KERNEL_MAGIC_SYSRQ
config ADK_KERNEL_DEBUG_FS
prompt "Debug Filesystem"
- bool
+ boolean
default n
help
debugfs is a virtual file system that kernel developers use to put
@@ -49,24 +43,23 @@ config ADK_KERNEL_DEBUG_FS
write to these files.
config ADK_KERNEL_DEBUG_WITH_KGDB
- boolean
prompt "Enable remote kernel debugging using KGDB"
- depends on ADK_TARGET_ROOTFS_NFSROOT || \
- ADK_TARGET_ROOTFS_EXT2_BLOCK || \
- ADK_TARGET_ROOTFS_YAFFS || \
- ADK_TARGET_ROOTFS_EXT2
- default n
+ boolean
select ADK_KERNEL_DEBUG_KERNEL
select ADK_KERNEL_DEBUG_INFO
select ADK_KERNEL_KGDB
select ADK_KERNEL_KGDB_SERIAL_CONSOLE
select ADK_KERNEL_FRAME_POINTER
+ depends on ADK_TARGET_ROOTFS_NFSROOT || \
+ ADK_TARGET_ROOTFS_EXT2_BLOCK || \
+ ADK_TARGET_ROOTFS_YAFFS || \
+ ADK_TARGET_ROOTFS_EXT2
+ default n
config ADK_KPACKAGE_KMOD_OPROFILE
- tristate
prompt "kernel support for oprofile"
+ tristate
select ADK_KERNEL_PROFILING
- depends on !ADK_LINUX_CRIS_FOXBOARD
default n
help
use oprofile package to make use of the kernel support.