This website requires JavaScript.
Explore
Help
Sign In
OrgACRN
/
acrn-kernel
mirror of
https://github.com/projectacrn/acrn-kernel.git
Watch
1
Star
0
Fork
You've already forked acrn-kernel
0
Code
Issues
Releases
Wiki
Activity
e8861129d3
acrn-kernel
/
kernel
/
debug
/
Makefile
6 lines
91 B
Makefile
Raw
Normal View
History
Unescape
Escape
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>
2009-05-19 20:49:32 +08:00
#
# Makefile for the linux kernel debugger
#
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>
2010-04-03 00:48:03 +08:00
obj-$(CONFIG_KGDB)
+=
debug_core.o gdbstub.o