From 5717f513696c4d926327df2af2ccdbfc80adbc29 Mon Sep 17 00:00:00 2001 From: Tim Deegan Date: Tue, 26 Oct 2010 11:56:31 +0100 Subject: "kdd" Windows debugger stub. kdd runs in dom0, attaches to a domain and speaks the Windows kd serial protocol over a TCP connection (which should go to kd or windbg, e.g. by having another VM with its virtual COM1 set up as a TCP listener). It doesn't do breakpoints &c yet, and windbg can get quite confused since the kernel debugger's not actually running, but it's good enough to extract backtraces from wedged VMs. Signed-off-by: Tim Deegan --- tools/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'tools/Makefile') diff --git a/tools/Makefile b/tools/Makefile index a6cdad2765..97bfecf862 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -36,6 +36,7 @@ SUBDIRS-y += libxl SUBDIRS-y += remus SUBDIRS-$(CONFIG_X86) += xenpaging SUBDIRS-$(CONFIG_X86) += debugger/gdbsx +SUBDIRS-$(CONFIG_X86) += debugger/kdd # These don't cross-compile ifeq ($(XEN_COMPILE_ARCH),$(XEN_TARGET_ARCH)) @@ -128,5 +129,15 @@ subdir-install-debugger/gdbsx: .phony subdir-all-debugger/gdbsx: .phony $(MAKE) -C debugger/gdbsx all + +subdir-clean-debugger/kdd subdir-distclean-debugger/kdd: .phony + $(MAKE) -C debugger/kdd clean + +subdir-install-debugger/kdd: .phony + $(MAKE) -C debugger/kdd install + +subdir-all-debugger/kdd: .phony + $(MAKE) -C debugger/kdd all + subdir-distclean-firmware: .phony $(MAKE) -C firmware distclean -- cgit v1.2.3