Blame SOURCES/kvm-Disable-aarch64-devices-reappeared-after-2.12-rebase.patch

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