26ba25
From c670fa1f55724d096e28c9ab929ff4cb7d935d31 Mon Sep 17 00:00:00 2001
26ba25
From: Miroslav Rezanina <mrezanin@redhat.com>
26ba25
Date: Thu, 7 Jun 2018 07:43:09 +0200
26ba25
Subject: [PATCH 257/268] Disable aarch64 devices reappeared after 2.12 rebase
26ba25
26ba25
RH-Author: Miroslav Rezanina <mrezanin@redhat.com>
26ba25
Message-id: <f72359b74f5219ef13ae074e11938a97c1314200.1528355911.git.mrezanin@redhat.com>
26ba25
Patchwork-id: 80592
26ba25
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 1/7] Disable aarch64 devices reappeared after 2.12 rebase
26ba25
Bugzilla: 1586357
26ba25
RH-Acked-by: Thomas Huth <thuth@redhat.com>
26ba25
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
26ba25
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
26ba25
26ba25
From: Miroslav Rezanina <mrezanin@redhat.com>
26ba25
26ba25
Up to QEMU 2.11 we disabled aarch64 devices by removing files from
26ba25
Makefile.
26ba25
As default_config options were added, we use them to disable devices
26ba25
since 2.12. However, we can't turn CONFIG_ARM_V7M (turning it off will
26ba25
break build) so we have to manually remove armv7m module from Makefile.
26ba25
26ba25
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
26ba25
---
26ba25
 hw/arm/Makefile.objs | 2 +-
26ba25
 1 file changed, 1 insertion(+), 1 deletion(-)
26ba25
26ba25
diff --git a/hw/arm/Makefile.objs b/hw/arm/Makefile.objs
26ba25
index 2885e3e..3e8b167 100644
26ba25
--- a/hw/arm/Makefile.objs
26ba25
+++ b/hw/arm/Makefile.objs
26ba25
@@ -16,7 +16,7 @@ obj-$(CONFIG_STRONGARM) += collie.o
26ba25
 obj-$(CONFIG_VERSATILE) += vexpress.o versatilepb.o
26ba25
 obj-$(CONFIG_ZYNQ) += xilinx_zynq.o
26ba25
 
26ba25
-obj-$(CONFIG_ARM_V7M) += armv7m.o
26ba25
+#obj-$(CONFIG_ARM_V7M) += armv7m.o
26ba25
 obj-$(CONFIG_EXYNOS4) += exynos4210.o
26ba25
 obj-$(CONFIG_PXA2XX) += pxa2xx.o pxa2xx_gpio.o pxa2xx_pic.o
26ba25
 obj-$(CONFIG_DIGIC) += digic.o
26ba25
-- 
26ba25
1.8.3.1
26ba25