From: Stefano Stabellini Date: Fri, 1 Aug 2014 15:32:19 +0000 (+0100) Subject: tools: enable QEMU for ARM builds X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~4354 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e9d6c685b15b728d13f6ff4eaaf33604ef0a0e89;p=xen.git tools: enable QEMU for ARM builds Build qemu-xen on ARM and ARM64: it is used to provide the PV backends, disk and framebuffer in particular. Ideally we would also modify the configure options to only build what is necessary: a machine just for PV backends. However that is a work in progress and not yet available in QEMU (see http://marc.info/?l=qemu-devel&m=139082425718379&w=2). So we just build the usual i386 target, even though no i386 emulation is going to be done by qemu-xen on ARM. Signed-off-by: Stefano Stabellini --- diff --git a/tools/configure b/tools/configure index 705559573f..78bcb6bb00 100755 --- a/tools/configure +++ b/tools/configure @@ -4045,6 +4045,8 @@ else case "$host_cpu" in i[3456]86|x86_64) qemu_xen=y;; + arm*|aarch64) + qemu_xen=y;; *) qemu_xen=n;; esac diff --git a/tools/configure.ac b/tools/configure.ac index f44b9f3a7b..4f45418783 100644 --- a/tools/configure.ac +++ b/tools/configure.ac @@ -150,6 +150,8 @@ AC_ARG_WITH([system-qemu], case "$host_cpu" in i[[3456]]86|x86_64) qemu_xen=y;; + arm*|aarch64) + qemu_xen=y;; *) qemu_xen=n;; esac ])