Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c4338209 authored by Jason Wessel's avatar Jason Wessel
Browse files

Move kernel/kgdb.c to kernel/debug/debug_core.c



Move kgdb.c in preparation to separate the gdbstub from the debug
core and exception handling.

CC: Ingo Molnar <mingo@elte.hu>
Signed-off-by: default avatarJason Wessel <jason.wessel@windriver.com>
parent a0fe3cc5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ obj-$(CONFIG_AUDITSYSCALL) += auditsc.o
obj-$(CONFIG_GCOV_KERNEL) += gcov/
obj-$(CONFIG_AUDIT_TREE) += audit_tree.o
obj-$(CONFIG_KPROBES) += kprobes.o
obj-$(CONFIG_KGDB) += kgdb.o
obj-$(CONFIG_KGDB) += debug/
obj-$(CONFIG_DETECT_SOFTLOCKUP) += softlockup.o
obj-$(CONFIG_DETECT_HUNG_TASK) += hung_task.o
obj-$(CONFIG_GENERIC_HARDIRQS) += irq/

kernel/debug/Makefile

0 → 100644
+6 −0
Original line number Diff line number Diff line
#
# Makefile for the linux kernel debugger
#

obj-$(CONFIG_KGDB) += debug_core.o
+0 −0

File moved.