diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2009-05-19 08:49:32 -0400 |
---|---|---|
committer | Jason Wessel <jason.wessel@windriver.com> | 2010-05-20 22:04:18 -0400 |
commit | c433820971ffa854feda6adc17f5f24201354f11 (patch) | |
tree | efb8028cc56e36eeade40d3a96bb461a242bab51 /kernel | |
parent | a0fe3cc5d36a5f5b4f60abfe1a4b1caf4a5cce5a (diff) |
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: Jason Wessel <jason.wessel@windriver.com>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/Makefile | 2 | ||||
-rw-r--r-- | kernel/debug/Makefile | 6 | ||||
-rw-r--r-- | kernel/debug/debug_core.c (renamed from kernel/kgdb.c) | 0 |
3 files changed, 7 insertions, 1 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index 149e18ef1ab1..057472fbc272 100644 --- a/kernel/Makefile +++ b/kernel/Makefile | |||
@@ -75,7 +75,7 @@ obj-$(CONFIG_AUDITSYSCALL) += auditsc.o | |||
75 | obj-$(CONFIG_GCOV_KERNEL) += gcov/ | 75 | obj-$(CONFIG_GCOV_KERNEL) += gcov/ |
76 | obj-$(CONFIG_AUDIT_TREE) += audit_tree.o | 76 | obj-$(CONFIG_AUDIT_TREE) += audit_tree.o |
77 | obj-$(CONFIG_KPROBES) += kprobes.o | 77 | obj-$(CONFIG_KPROBES) += kprobes.o |
78 | obj-$(CONFIG_KGDB) += kgdb.o | 78 | obj-$(CONFIG_KGDB) += debug/ |
79 | obj-$(CONFIG_DETECT_SOFTLOCKUP) += softlockup.o | 79 | obj-$(CONFIG_DETECT_SOFTLOCKUP) += softlockup.o |
80 | obj-$(CONFIG_DETECT_HUNG_TASK) += hung_task.o | 80 | obj-$(CONFIG_DETECT_HUNG_TASK) += hung_task.o |
81 | obj-$(CONFIG_GENERIC_HARDIRQS) += irq/ | 81 | obj-$(CONFIG_GENERIC_HARDIRQS) += irq/ |
diff --git a/kernel/debug/Makefile b/kernel/debug/Makefile new file mode 100644 index 000000000000..5d7850415266 --- /dev/null +++ b/kernel/debug/Makefile | |||
@@ -0,0 +1,6 @@ | |||
1 | # | ||
2 | # Makefile for the linux kernel debugger | ||
3 | # | ||
4 | |||
5 | obj-$(CONFIG_KGDB) += debug_core.o | ||
6 | |||
diff --git a/kernel/kgdb.c b/kernel/debug/debug_core.c index 11f3515ca83f..11f3515ca83f 100644 --- a/kernel/kgdb.c +++ b/kernel/debug/debug_core.c | |||