1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- 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
- default n
- help
- Make bootup quiet without messages from the kernel.
- config ADK_KERNEL_MAGIC_SYSRQ
- prompt "Magic BREAK sequence"
- bool
- default y
- help
- Enable this to be able to use the Magic SysRq functions,
- probably using a serial console break.
- config ADK_KERNEL_DEBUG_FS
- prompt "Debug Filesystem"
- bool
- default n
- help
- debugfs is a virtual file system that kernel developers use to put
- debugging files into. Enable this option to be able to read and
- 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
- 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
- config ADK_KPACKAGE_KMOD_OPROFILE
- tristate
- prompt "kernel support for oprofile"
- select ADK_KERNEL_PROFILING
- depends on !ADK_LINUX_CRIS_FOXBOARD
- default n
- help
- use oprofile package to make use of the kernel support.
- endmenu
|