Skip to content

Commit

Permalink
kernel-hacking: group sysrq/kgdb/ubsan into 'Generic Kernel Debugging…
Browse files Browse the repository at this point in the history
… Instruments'

Patch series "hacking: make 'kernel hacking' menu better structurized", v3.

This series is a trivial improvment for the layout of 'kernel hacking'
configuration menu.  Now we have many items in it which makes takes a
little time to look up them since they are not well structurized yet.

Early discussion is here:
  https://lkml.org/lkml/2019/9/1/39

This patch (of 9):

Group generic kernel debugging instruments sysrq/kgdb/ubsan together
into a new submenu.

Link: http://lkml.kernel.org/r/20190909144453.3520-2-changbin.du@gmail.com
Signed-off-by: Changbin Du <changbin.du@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Tested-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Changbin Du authored and Linus Torvalds committed Dec 7, 2019
1 parent 3cf2890 commit 6210b64
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions lib/Kconfig.debug
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,8 @@ config DEBUG_FORCE_WEAK_PER_CPU

endmenu # "Compiler options"

menu "Generic Kernel Debugging Instruments"

config MAGIC_SYSRQ
bool "Magic SysRq key"
depends on !UML
Expand Down Expand Up @@ -432,6 +434,12 @@ config MAGIC_SYSRQ_SERIAL
This option allows you to decide whether you want to enable the
magic SysRq key.

source "lib/Kconfig.kgdb"

source "lib/Kconfig.ubsan"

endmenu

config DEBUG_KERNEL
bool "Kernel debugging"
help
Expand Down Expand Up @@ -2111,10 +2119,6 @@ config BUG_ON_DATA_CORRUPTION

source "samples/Kconfig"

source "lib/Kconfig.kgdb"

source "lib/Kconfig.ubsan"

config ARCH_HAS_DEVMEM_IS_ALLOWED
bool

Expand Down

0 comments on commit 6210b64

Please sign in to comment.