| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 | menu "Kernel debugging"config ADK_KERNEL_FTRACE	boolconfig ADK_KERNEL_GENERIC_TRACER	boolconfig ADK_KERNEL_FUNCTION_TRACER	boolconfig ADK_KERNEL_PROFILING	boolconfig ADK_KERNEL_DEBUG_KERNEL	boolconfig ADK_KERNEL_DEBUG_INFO	boolconfig ADK_KERNEL_KGDB	boolconfig ADK_KERNEL_KGDB_SERIAL_CONSOLE	boolconfig ADK_KERNEL_FRAME_POINTER	boolconfig ADK_KERNEL_EARLY_PRINTK	boolconfig ADK_KERNEL_KALLSYMS_ALL	boolconfig ADK_KERNEL_PRINTK	bool "printk support (disable to save space and quieten bootup)"	select ADK_KERNEL_EARLY_PRINTK	default y if !ADK_APPLIANCE_TEST	help	  Disable printk to save space and quieten bootup.config ADK_KERNEL_PRINTK_TIME	bool "timing information for printk"	depends on ADK_KERNEL_PRINTK	help	  Enable timing information for printk, to analyze kernel	  bootup performance.config ADK_KERNEL_BUG	bool "Enable BUGS()"	help	  Enable if you need BUGS() in the kernel.config ADK_KERNEL_COREDUMP	bool "Enable coredumps"	help	  Enable if you need coredumps.config ADK_KERNEL_NETCONSOLE	bool "Netconsole support"	help	  Activate netconsole. netconsole=@/,@192.168.1.2/config ADK_PARAMETER_NETCONSOLE_SRC_IP	prompt "IP address for source"	string	default "192.168.1.100"	depends on ADK_KERNEL_NETCONSOLE	help       	  source ip address logging from.config ADK_PARAMETER_NETCONSOLE_DST_IP	prompt "IP address for target"	string	default "192.168.1.2"	depends on ADK_KERNEL_NETCONSOLE	help       	  ip address logging to.config ADK_KERNEL_MAGIC_SYSRQ	bool "Magic BREAK sequence"	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	bool "Debug Filesystem"	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_INFO	bool "Debug info"config ADK_KERNEL_DEBUG_WITH_KGDB	bool "Enable remote kernel debugging using KGDB"	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_ARCHIVE || \		ADK_TARGET_ROOTFS_YAFFS || \		ADK_TARGET_ROOTFS_INITRAMFS || \		ADK_TARGET_ROOTFS_INITRAMFS_PIGGYBACK	default nconfig ADK_KERNEL_OPROFILE	tristate "Oprofile support"	select ADK_KERNEL_PROFILING	depends on !ADK_TARGET_ARCH_M68K	depends on !ADK_KERNEL_PREEMPT_RT_FULL	default n	help	  use oprofile package to make use of the kernel support.config ADK_KERNEL_KALLSYMS	bool "Support for symbol names in OOPS"	select ADK_KERNEL_KALLSYMS_ALL	default n	help	  Load all symbols to the kernel.endmenu
 |