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

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