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

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