|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH][TOOLS] allow the selection of blktap and firmware th
The following patch enables blktap and firmware using config
variables.
Specific issues are with POWERPC:
1) does not require firmware build
2) nasty build break in libaio
I'm guessing for IA64.
Signed-off-by: Jimi Xenidis <jimix@xxxxxxxxxxxxxx>
---
7476d config/ia64.mk
--- a/config/ia64.mk Mon Aug 07 17:49:16 2006 -0500
+++ b/config/ia64.mk Tue Aug 08 13:18:44 2006 -0400
@@ -1,5 +1,7 @@ CONFIG_IA64 := y
CONFIG_IA64 := y
CONFIG_IOEMU := y
CONFIG_XCUTILS := y
+CONFIG_BLKTAP := y
+CONFIG_FIRMWARE := y
LIBDIR := lib
diff -r 058f2e27476d config/x86_32.mk
--- a/config/x86_32.mk Mon Aug 07 17:49:16 2006 -0500
+++ b/config/x86_32.mk Tue Aug 08 13:18:44 2006 -0400
@@ -4,6 +4,8 @@ CONFIG_XCUTILS := y
CONFIG_XCUTILS := y
CONFIG_IOEMU := y
CONFIG_MBOOTPACK := y
+CONFIG_BLKTAP := y
+CONFIG_FIRMWARE := y
CFLAGS += -m32 -march=i686
LIBDIR := lib
diff -r 058f2e27476d config/x86_64.mk
--- a/config/x86_64.mk Mon Aug 07 17:49:16 2006 -0500
+++ b/config/x86_64.mk Tue Aug 08 13:18:44 2006 -0400
@@ -4,6 +4,8 @@ CONFIG_XCUTILS := y
CONFIG_XCUTILS := y
CONFIG_IOEMU := y
CONFIG_MBOOTPACK := y
+CONFIG_BLKTAP := y
+CONFIG_FIRMWARE := y
CFLAGS += -m64
LIBDIR = lib64
diff -r 058f2e27476d tools/Makefile
--- a/tools/Makefile Mon Aug 07 17:49:16 2006 -0500
+++ b/tools/Makefile Tue Aug 08 13:18:44 2006 -0400
@@ -1,4 +1,5 @@ XEN_ROOT = ../
XEN_ROOT = ../
+include $(XEN_ROOT)/Config.mk
include $(XEN_ROOT)/tools/Rules.mk
SUBDIRS-y :=
@@ -8,16 +9,14 @@ SUBDIRS-y += examples
SUBDIRS-y += examples
SUBDIRS-y += xentrace
SUBDIRS-$(CONFIG_XCUTILS) += xcutils
-SUBDIRS-y += firmware
+SUBDIRS-$(CONFIG_FIRMWARE) += firmware
SUBDIRS-y += security
SUBDIRS-y += console
SUBDIRS-y += xenmon
SUBDIRS-y += guest-headers
-SUBDIRS-$(VTPM_TOOLS) += vtpm_manager
-SUBDIRS-$(VTPM_TOOLS) += vtpm
+SUBDIRS-$(VTPM_TOOLS) += vtpm_manager vtpm
SUBDIRS-y += xenstat
-SUBDIRS-y += libaio
-SUBDIRS-y += blktap
+SUBDIRS-$(CONFIG_BLKTAP) += libaio blktap
# These don't cross-compile
ifeq ($(XEN_COMPILE_ARCH),$(XEN_TARGET_ARCH))
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] [PATCH][TOOLS] allow the selection of blktap and firmware thru config files,
Jimi Xenidis <=
|
|
|
|
|