blob: 3da69a594797354ea1494b23c5f38583ba956106 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
menu "Kernel debugging"
config ADK_KERNEL_PROFILING
boolean
config ADK_KERNEL_DEBUG_KERNEL
boolean
config ADK_KERNEL_DEBUG_INFO
boolean
config ADK_KERNEL_KGDB
boolean
config ADK_KERNEL_KGDB_SERIAL_CONSOLE
boolean
config ADK_KERNEL_FRAME_POINTER
boolean
config ADK_QUIET_KERNEL
prompt "Make bootup quiet without messages from the kernel"
boolean
default n
help
Make bootup quiet without messages from the kernel.
config ADK_KERNEL_MAGIC_SYSRQ
prompt "Magic BREAK sequence"
boolean
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"
boolean
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
prompt "Enable remote kernel debugging using KGDB"
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
prompt "kernel support for oprofile"
tristate
select ADK_KERNEL_PROFILING
default n
help
use oprofile package to make use of the kernel support.
endmenu
|