diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2009-05-19 14:49:32 +0200 |
---|---|---|
committer | Jason Wessel <jason.wessel@windriver.com> | 2010-05-21 04:04:18 +0200 |
commit | c433820971ffa854feda6adc17f5f24201354f11 (patch) | |
tree | efb8028cc56e36eeade40d3a96bb461a242bab51 /kernel/debug/Makefile | |
parent | Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dto... (diff) | |
download | linux-c433820971ffa854feda6adc17f5f24201354f11.tar.xz linux-c433820971ffa854feda6adc17f5f24201354f11.zip |
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/debug/Makefile')
-rw-r--r-- | kernel/debug/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
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 @@ +# +# Makefile for the linux kernel debugger +# + +obj-$(CONFIG_KGDB) += debug_core.o + |