[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH 7/9] PPC: Add PlatBus Serial to default configs
From: |
Alexander Graf |
Subject: |
[Qemu-ppc] [PATCH 7/9] PPC: Add PlatBus Serial to default configs |
Date: |
Mon, 22 Jul 2013 19:50:09 +0200 |
We support the platform bus, so we also support platbus serial devices. Enable
the respective config option.
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 f080fc0..eaedd6a 100644
--- a/default-configs/ppc-softmmu.mak
+++ b/default-configs/ppc-softmmu.mak
@@ -45,5 +45,6 @@ CONFIG_OPENPIC=y
CONFIG_E500=y
CONFIG_OPENPIC_KVM=$(and $(CONFIG_E500),$(CONFIG_KVM))
CONFIG_PLATBUS=y
+CONFIG_SERIAL_PLATBUS=y
# For PReP
CONFIG_MC146818RTC=y
diff --git a/default-configs/ppc64-softmmu.mak
b/default-configs/ppc64-softmmu.mak
index 40251b8..51fbcb8 100644
--- a/default-configs/ppc64-softmmu.mak
+++ b/default-configs/ppc64-softmmu.mak
@@ -45,6 +45,7 @@ CONFIG_OPENPIC=y
CONFIG_PSERIES=y
CONFIG_E500=y
CONFIG_PLATBUS=y
+CONFIG_SERIAL_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 79e21ea..1f3e807 100644
--- a/default-configs/ppcemb-softmmu.mak
+++ b/default-configs/ppcemb-softmmu.mak
@@ -39,6 +39,7 @@ CONFIG_XILINX_ETHLITE=y
CONFIG_OPENPIC=y
CONFIG_E500=y
CONFIG_PLATBUS=y
+CONFIG_SERIAL_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, 2013/07/22
[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