[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH 5/9] PPC: Add platform bus to the default compile set
From: |
Alexander Graf |
Subject: |
[Qemu-ppc] [PATCH 5/9] PPC: Add platform bus to the default compile set |
Date: |
Mon, 22 Jul 2013 19:50:07 +0200 |
On e500 we will enable platform bus support, so make sure we always compile
it in on PPC targets.
Signed-off-by: Alexander Graf <address@hidden>
---
default-configs/ppc-softmmu.mak | 1 +
default-configs/ppc64-softmmu.mak | 1 +
default-configs/ppcemb-softmmu.mak | 1 +
3 files changed, 3 insertions(+)
diff --git a/default-configs/ppc-softmmu.mak b/default-configs/ppc-softmmu.mak
index 73e4cc5..f080fc0 100644
--- a/default-configs/ppc-softmmu.mak
+++ b/default-configs/ppc-softmmu.mak
@@ -44,5 +44,6 @@ CONFIG_XILINX_ETHLITE=y
CONFIG_OPENPIC=y
CONFIG_E500=y
CONFIG_OPENPIC_KVM=$(and $(CONFIG_E500),$(CONFIG_KVM))
+CONFIG_PLATBUS=y
# For PReP
CONFIG_MC146818RTC=y
diff --git a/default-configs/ppc64-softmmu.mak
b/default-configs/ppc64-softmmu.mak
index 6d1933b..40251b8 100644
--- a/default-configs/ppc64-softmmu.mak
+++ b/default-configs/ppc64-softmmu.mak
@@ -44,6 +44,7 @@ CONFIG_XILINX_ETHLITE=y
CONFIG_OPENPIC=y
CONFIG_PSERIES=y
CONFIG_E500=y
+CONFIG_PLATBUS=y
CONFIG_OPENPIC_KVM=$(and $(CONFIG_E500),$(CONFIG_KVM))
# For pSeries
CONFIG_XICS=$(CONFIG_PSERIES)
diff --git a/default-configs/ppcemb-softmmu.mak
b/default-configs/ppcemb-softmmu.mak
index e3b5e50..79e21ea 100644
--- a/default-configs/ppcemb-softmmu.mak
+++ b/default-configs/ppcemb-softmmu.mak
@@ -38,6 +38,7 @@ CONFIG_XILINX=y
CONFIG_XILINX_ETHLITE=y
CONFIG_OPENPIC=y
CONFIG_E500=y
+CONFIG_PLATBUS=y
CONFIG_OPENPIC_KVM=$(and $(CONFIG_E500),$(CONFIG_KVM))
# For PReP
CONFIG_MC146818RTC=y
--
1.8.1.4
[Qemu-ppc] [PATCH 5/9] PPC: Add platform bus to the default compile set,
Alexander Graf <=
[Qemu-ppc] [PATCH 9/9] PPC: E500: Add PlatBus device tree walker, Alexander Graf, 2013/07/22
[Qemu-ppc] [PATCH 2/9] PlatBus: Add abstract Platform Device, Alexander Graf, 2013/07/22
[Qemu-ppc] [PATCH 8/9] PPC: E500: Spawn PlatBus bridge for ppce500 machine, Alexander Graf, 2013/07/22
[Qemu-ppc] [PATCH 4/9] PlatBus: Hook up into Makefile system, Alexander Graf, 2013/07/22
[Qemu-ppc] [PATCH 1/9] PlatBus: Add Platform Bus, Alexander Graf, 2013/07/22
Re: [Qemu-ppc] [PATCH 0/9] Add platform bus, Peter Maydell, 2013/07/22