From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:59398) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tr2Rl-0000TK-2P for qemu-devel@nongnu.org; Fri, 04 Jan 2013 03:16:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tr2Rj-0005Ix-NK for qemu-devel@nongnu.org; Fri, 04 Jan 2013 03:16:08 -0500 Received: from mx1.redhat.com ([209.132.183.28]:9569) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tr2Rj-0005IV-FY for qemu-devel@nongnu.org; Fri, 04 Jan 2013 03:16:07 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r048G69e032571 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 4 Jan 2013 03:16:06 -0500 From: Gerd Hoffmann Date: Fri, 4 Jan 2013 09:16:00 +0100 Message-Id: <1357287364-24921-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 0/4] test and debug devices List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, This patch series improves the debug devices we have. isa-debugcon is switched over to the memory api. isa-debug-exit is added and replaces the hard-coded bochs debug port. pc-testdev (used by kvm-unit-tests) is added. please pull, Gerd The following changes since commit 25bbf61e4bacd1e4fa4115ffcf151051b9d6608e: pty: unbreak libvirt (2013-01-03 12:53:41 -0600) are available in the git repository at: git://git.kraxel.org/qemu testdev.1 Gerd Hoffmann (3): switch debugcon to memory api add isa-debug-exit device. pc: remove bochs bios debug ports Lucas Meneghel Rodrigues (1): hw: Add test device for unittests execution hw/debugcon.c | 31 +++++++-- hw/debugexit.c | 75 ++++++++++++++++++++ hw/i386/Makefile.objs | 3 +- hw/pc-testdev.c | 182 +++++++++++++++++++++++++++++++++++++++++++++++++ hw/pc.c | 41 ----------- 5 files changed, 283 insertions(+), 49 deletions(-) create mode 100644 hw/debugexit.c create mode 100644 hw/pc-testdev.c