From: Juan Quintela <quintela@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH 10/31] Only compile isa_mmio when one target uses it
Date: Wed, 7 Oct 2009 02:41:06 +0200 [thread overview]
Message-ID: <f9ac8a1bca7cda9600237eb73b01578d73bb400d.1254875337.git.quintela@redhat.com> (raw)
In-Reply-To: <cover.1254875337.git.quintela@redhat.com>
In-Reply-To: <cover.1254875337.git.quintela@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
---
Makefile.target | 5 ++---
default-configs/arm-softmmu.mak | 1 +
default-configs/mips-softmmu.mak | 2 ++
default-configs/mips64-softmmu.mak | 2 ++
default-configs/mips64el-softmmu.mak | 2 ++
default-configs/mipsel-softmmu.mak | 2 ++
default-configs/ppc-softmmu.mak | 1 +
default-configs/ppc64-softmmu.mak | 1 +
default-configs/ppcemb-softmmu.mak | 1 +
default-configs/sparc64-softmmu.mak | 2 ++
10 files changed, 16 insertions(+), 3 deletions(-)
diff --git a/Makefile.target b/Makefile.target
index 7a21164..94bc03b 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -154,13 +154,12 @@ endif #CONFIG_BSD_USER
# System emulator target
ifdef CONFIG_SOFTMMU
-obj-y = vl.o monitor.o pci.o isa_mmio.o machine.o \
- gdbstub.o
+obj-y = vl.o monitor.o pci.o machine.o gdbstub.o
# virtio has to be here due to weird dependency between PCI and virtio-net.
# need to fix this properly
obj-y += virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o virtio-pci.o
obj-$(CONFIG_KVM) += kvm.o kvm-all.o
-
+obj-$(CONFIG_ISA_MMIO) += isa_mmio.o
LIBS+=-lz
sound-obj-y =
diff --git a/default-configs/arm-softmmu.mak b/default-configs/arm-softmmu.mak
index 15e4373..66834c2 100644
--- a/default-configs/arm-softmmu.mak
+++ b/default-configs/arm-softmmu.mak
@@ -2,3 +2,4 @@
CONFIG_GDBSTUB_XML=y
CONFIG_USB_OHCI=y
+CONFIG_ISA_MMIO=y
diff --git a/default-configs/mips-softmmu.mak b/default-configs/mips-softmmu.mak
index a9e89ec..0b5bb0d 100644
--- a/default-configs/mips-softmmu.mak
+++ b/default-configs/mips-softmmu.mak
@@ -1 +1,3 @@
# Default configuration for mips-softmmu
+
+CONFIG_ISA_MMIO=y
diff --git a/default-configs/mips64-softmmu.mak b/default-configs/mips64-softmmu.mak
index 4211452..de64165 100644
--- a/default-configs/mips64-softmmu.mak
+++ b/default-configs/mips64-softmmu.mak
@@ -1 +1,3 @@
# Default configuration for mips64-softmmu
+
+CONFIG_ISA_MMIO=y
diff --git a/default-configs/mips64el-softmmu.mak b/default-configs/mips64el-softmmu.mak
index 8ca46a2..eb1bdc3 100644
--- a/default-configs/mips64el-softmmu.mak
+++ b/default-configs/mips64el-softmmu.mak
@@ -1 +1,3 @@
# Default configuration for mips64el-softmmu
+
+CONFIG_ISA_MMIO=y
diff --git a/default-configs/mipsel-softmmu.mak b/default-configs/mipsel-softmmu.mak
index fe8af41..6ace424 100644
--- a/default-configs/mipsel-softmmu.mak
+++ b/default-configs/mipsel-softmmu.mak
@@ -1 +1,3 @@
# Default configuration for mipsel-softmmu
+
+CONFIG_ISA_MMIO=y
diff --git a/default-configs/ppc-softmmu.mak b/default-configs/ppc-softmmu.mak
index cc4b83a..93172b8 100644
--- a/default-configs/ppc-softmmu.mak
+++ b/default-configs/ppc-softmmu.mak
@@ -2,3 +2,4 @@
CONFIG_GDBSTUB_XML=y
CONFIG_USB_OHCI=y
+CONFIG_ISA_MMIO=y
diff --git a/default-configs/ppc64-softmmu.mak b/default-configs/ppc64-softmmu.mak
index a4d08ff..05eb3b6 100644
--- a/default-configs/ppc64-softmmu.mak
+++ b/default-configs/ppc64-softmmu.mak
@@ -2,3 +2,4 @@
CONFIG_GDBSTUB_XML=y
CONFIG_USB_OHCI=y
+CONFIG_ISA_MMIO=y
diff --git a/default-configs/ppcemb-softmmu.mak b/default-configs/ppcemb-softmmu.mak
index 19ea261..4259fcf 100644
--- a/default-configs/ppcemb-softmmu.mak
+++ b/default-configs/ppcemb-softmmu.mak
@@ -2,3 +2,4 @@
CONFIG_GDBSTUB_XML=y
CONFIG_USB_OHCI=y
+CONFIG_ISA_MMIO=y
diff --git a/default-configs/sparc64-softmmu.mak b/default-configs/sparc64-softmmu.mak
index fead2ea..aaccf0b 100644
--- a/default-configs/sparc64-softmmu.mak
+++ b/default-configs/sparc64-softmmu.mak
@@ -1 +1,3 @@
# Default configuration for sparc64-softmmu
+
+CONFIG_ISA_MMIO=y
--
1.6.2.5
next prev parent reply other threads:[~2009-10-07 0:42 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-07 0:40 [Qemu-devel] [PATCH v5 00/31] Compile only devices that are used Juan Quintela
2009-10-07 0:40 ` [Qemu-devel] [PATCH 01/31] Don't include config-host.mak from inside config.mak Juan Quintela
2009-10-07 0:40 ` [Qemu-devel] [PATCH 02/31] Move generation of config-host.h to Makefile from configure Juan Quintela
2009-10-09 7:06 ` [Qemu-devel] " Jan Kiszka
2009-10-07 0:40 ` [Qemu-devel] [PATCH 03/31] Remove useless check for config-host.mak Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 04/31] Rename config.{h, mak} config-target.{h, mak} Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 05/31] Move generation of config-target.h to Makefile from configure Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 06/31] Add new config-devices.mak for each target Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 07/31] Generate config-devices.h Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 08/31] Generate gdbstub-xml.c only when needed Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 09/31] Only compile usb_ohci when one target uses it Juan Quintela
2009-10-07 0:41 ` Juan Quintela [this message]
2009-10-07 0:41 ` [Qemu-devel] [PATCH 11/31] Only compile qdev_addr " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 12/31] Only compile nand " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 13/31] Only compile ecc " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 14/31] Only compile esp " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 15/31] Only compile escc " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 16/31] Only compile m48t59 " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 17/31] Only compile ptimer " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 18/31] Only compile sd " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 19/31] Only compile max7310 " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 20/31] Only compile wm8750 " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 21/31] Only compile twl92230 " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 22/31] Only compile tsc2005 " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 23/31] Only compile lm832x " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 24/31] Only compile tmp105 " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 25/31] Only compile stellaris_input " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 26/31] Only compile sd0303 " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 27/31] Only compile sd0323 " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 28/31] Only compile ads7846 " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 29/31] Only compile max111x " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 30/31] Only compile ssi-sd " Juan Quintela
2009-10-07 0:41 ` [Qemu-devel] [PATCH 31/31] Only compile ssi " Juan Quintela
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f9ac8a1bca7cda9600237eb73b01578d73bb400d.1254875337.git.quintela@redhat.com \
--to=quintela@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).