From patchwork Tue Nov 23 14:34:47 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [10/12] config: Add header file for device config options Date: Tue, 23 Nov 2010 04:34:47 -0000 From: Alexander Graf X-Patchwork-Id: 72675 Message-Id: <1290522889-27559-11-git-send-email-agraf@suse.de> To: QEMU-devel Developers Cc: Kevin Wolf , Joerg Roedel , Gerd Hoffmann , Stefan Hajnoczi , tj@kernel.org, Roland Elek , Sebastian Herbszt So far we have C preprocessor defines for target and host config options, but we're lacking any information on which devices are available. We do need that information at times though, for example in the ahci patch where we need to call a legacy init function depending on whether we have support compiled in or not. So this patch makes all config-devices options available as header file. Please only include it in machine description code! Signed-off-by: Alexander Graf --- v3 -> v4: - config: only include config-devices.h in machine description (blue swirl) --- Makefile.target | 5 ++++- hw/pc_piix.c | 1 + 2 files changed, 5 insertions(+), 1 deletions(-) diff --git a/Makefile.target b/Makefile.target index 91e6e74..35862fd 100644 --- a/Makefile.target +++ b/Makefile.target @@ -1,6 +1,6 @@ # -*- Mode: makefile -*- -GENERATED_HEADERS = config-target.h +GENERATED_HEADERS = config-target.h config-devices.h CONFIG_NO_KVM = $(if $(subst n,,$(CONFIG_KVM)),n,y) include ../config-host.mak @@ -40,6 +40,9 @@ kvm.o kvm-all.o vhost.o vhost_net.o: QEMU_CFLAGS+=$(KVM_CFLAGS) config-target.h: config-target.h-timestamp config-target.h-timestamp: config-target.mak +config-devices.h: config-target.h-timestamp +config-devices.h-timestamp: config-target.mak + all: $(PROGS) # Dummy command so that make thinks it has done something diff --git a/hw/pc_piix.c b/hw/pc_piix.c index 12359a7..2be25a6 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -35,6 +35,7 @@ #include "sysemu.h" #include "sysbus.h" #include "blockdev.h" +#include "config-devices.h" #define MAX_IDE_BUS 2