• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# SPDX-License-Identifier: GPL-2.0
2menu "Kernel hacking"
3
4config TRACE_IRQFLAGS_SUPPORT
5	bool
6	default y
7
8source "lib/Kconfig.debug"
9
10config CMDLINE
11	string "Default kernel command string"
12	default ""
13	help
14	  On some platforms, there is currently no way for the boot loader to
15	  pass arguments to the kernel. For these platforms, you can supply
16	  some command-line options at build time by entering them here.  In
17	  other cases you can specify kernel args so that you don't have
18	  to set them up in board prom initialization routines.
19
20config RUNTIME_DEBUG
21	bool "Enable run-time debugging"
22	depends on DEBUG_KERNEL
23	help
24	  If you say Y here, some debugging macros will do run-time checking.
25	  If you say N here, those macros will mostly turn to no-ops.  See
26	  include/asm-score/debug.h for debugging macros.
27	  If unsure, say N.
28
29endmenu
30