diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2010-04-02 12:48:03 -0400 |
---|---|---|
committer | Jason Wessel <jason.wessel@windriver.com> | 2010-05-20 22:04:19 -0400 |
commit | 53197fc49549240f6c6a963b2713a4cd9517964b (patch) | |
tree | 5a89c338ef8acd188e4aa1503370a4e928c33edd /kernel/debug/Makefile | |
parent | c433820971ffa854feda6adc17f5f24201354f11 (diff) |
Separate the gdbstub from the debug core
Split the former kernel/kgdb.c into debug_core.c which contains the
kernel debugger exception logic and to the gdbstub.c which contains
the logic for allowing gdb to talk to the debug core.
This also created a private include file called debug_core.h which
contains all the definitions to glue the debug_core to any other
debugger connections.
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 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/debug/Makefile b/kernel/debug/Makefile index 5d7850415266..fd4dc6e7782c 100644 --- a/kernel/debug/Makefile +++ b/kernel/debug/Makefile | |||
@@ -2,5 +2,4 @@ | |||
2 | # Makefile for the linux kernel debugger | 2 | # Makefile for the linux kernel debugger |
3 | # | 3 | # |
4 | 4 | ||
5 | obj-$(CONFIG_KGDB) += debug_core.o | 5 | obj-$(CONFIG_KGDB) += debug_core.o gdbstub.o |
6 | |||