From f47d809c449a105b77fbc5fc6f058b24f8537a94 Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Wed, 1 Aug 2012 12:46:51 +0100 Subject: tools/config: Allow building of components to be controlled from .config For build systems which build certain Xen components separately, allow certain components to be conditionally built based on .config, rather than always building them. This patch allows qemu and blktap to be configured in this manner. Signed-off-by: Andrew Cooper Acked-by: Ian Jackson Committed-by: Ian Campbell --- config/x86_32.mk | 2 +- config/x86_64.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'config') diff --git a/config/x86_32.mk b/config/x86_32.mk index 1f5cd6097d..df52bd6d3e 100644 --- a/config/x86_32.mk +++ b/config/x86_32.mk @@ -5,7 +5,7 @@ CONFIG_X86_$(XEN_OS) := y CONFIG_HVM := y CONFIG_MIGRATE := y CONFIG_XCUTILS := y -CONFIG_IOEMU := y +CONFIG_IOEMU ?= y CFLAGS += -m32 -march=i686 diff --git a/config/x86_64.mk b/config/x86_64.mk index 7bead5c455..4ec6cc196b 100644 --- a/config/x86_64.mk +++ b/config/x86_64.mk @@ -6,7 +6,7 @@ CONFIG_COMPAT := y CONFIG_HVM := y CONFIG_MIGRATE := y CONFIG_XCUTILS := y -CONFIG_IOEMU := y +CONFIG_IOEMU ?= y CFLAGS += -m64 -- cgit v1.2.3