From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49216) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vbsq3-00041X-U9 for qemu-devel@nongnu.org; Thu, 31 Oct 2013 10:03:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vbspy-0004kR-HF for qemu-devel@nongnu.org; Thu, 31 Oct 2013 10:03:07 -0400 Received: from mail-lb0-x22d.google.com ([2a00:1450:4010:c04::22d]:48015) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vbspy-0004kF-A1 for qemu-devel@nongnu.org; Thu, 31 Oct 2013 10:03:02 -0400 Received: by mail-lb0-f173.google.com with SMTP id w7so2457590lbi.32 for ; Thu, 31 Oct 2013 07:03:00 -0700 (PDT) Date: Thu, 31 Oct 2013 15:02:43 +0100 From: "Edgar E. Iglesias" Message-ID: <20131031140243.GA24705@zapo.xilinx.com> References: <1382724449-11944-1-git-send-email-peter.maydell@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1382724449-11944-1-git-send-email-peter.maydell@linaro.org> Subject: Re: [Qemu-devel] [PULL 0/6] target-arm queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: qemu-devel@nongnu.org, Anthony Liguori On Fri, Oct 25, 2013 at 07:07:23PM +0100, Peter Maydell wrote: > The following changes since commit fc8ead74674b7129e8f31c2595c76658e5622197: > > Merge remote-tracking branch 'qemu-kvm/uq/master' into staging (2013-10-18 10:03:24 -0700) > > are available in the git repository at: > > > git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20131025 > > for you to fetch changes up to 71c903cc3b78fc563122fe40c5cadd050068b91a: > > integrator: fix Linux boot failure by emulating dbg region (2013-10-25 18:27:07 +0100) Applied, thanks all. Cheers, Edgar > > ---------------------------------------------------------------- > target-arm queue: a couple of trivial features to improve support > for some guest emulation cases, notably running UEFI images: > * support VBAR (vector base address register) > * allow running without specifying a kernel (ie just running > an image from flash) > Plus some bugfixes. > > ---------------------------------------------------------------- > Alex Bennée (1): > integrator: fix Linux boot failure by emulating dbg region > > Alvise Rigo (2): > target-arm: sort TCG cpreg list by KVM-style 64 bit ID number > target-arm: fix sorting issue of KVM cpreg list > > Nathan Rossi (1): > target-arm: Add CP15 VBAR support > > Peter Maydell (2): > hw/arm/boot: Make user not specifying a kernel not an error > hw/arm: Tidy up conditional calls to arm_load_kernel > > default-configs/arm-softmmu.mak | 1 + > hw/arm/boot.c | 6 +- > hw/arm/integratorcp.c | 2 + > hw/arm/omap_sx1.c | 10 ++-- > hw/arm/palm.c | 10 ++-- > hw/arm/z2.c | 12 ++-- > hw/misc/Makefile.objs | 1 + > hw/misc/arm_integrator_debug.c | 99 ++++++++++++++++++++++++++++++++ > include/hw/misc/arm_integrator_debug.h | 18 ++++++ > target-arm/cpu.h | 1 + > target-arm/helper.c | 33 ++++++++++- > target-arm/kvm.c | 8 ++- > 12 files changed, 176 insertions(+), 25 deletions(-) > create mode 100644 hw/misc/arm_integrator_debug.c > create mode 100644 include/hw/misc/arm_integrator_debug.h >