All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][TOOLS] allow the selection of blktap and firmware thru config files
@ 2006-08-08 17:23 Jimi Xenidis
  2006-08-08 18:40 ` Alex Williamson
  2006-08-09  9:41 ` Keir Fraser
  0 siblings, 2 replies; 17+ messages in thread
From: Jimi Xenidis @ 2006-08-08 17:23 UTC (permalink / raw)
  To: xen-devel


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@watson.ibm.com>

---
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))

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2006-08-11 13:11 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-08 17:23 [PATCH][TOOLS] allow the selection of blktap and firmware thru config files Jimi Xenidis
2006-08-08 18:40 ` Alex Williamson
2006-08-09  9:41 ` Keir Fraser
2006-08-09 12:34   ` Jimi Xenidis
2006-08-09 16:37     ` Keir Fraser
2006-08-10  1:06       ` Jimi Xenidis
2006-08-10 10:08         ` Julian Chesterfield
2006-08-10 10:51           ` Jimi Xenidis
2006-08-10 13:51             ` Julian Chesterfield
2006-08-10 14:08               ` Jimi Xenidis
2006-08-10 14:27                 ` Julian Chesterfield
2006-08-11  2:43                   ` Sean Dague
2006-08-10 16:58               ` Jeremy Katz
2006-08-10 22:07                 ` Anil Madhavapeddy
2006-08-11  2:45                 ` Sean Dague
2006-08-11 11:03                 ` Christian Limpach
2006-08-11 13:11                   ` Jimi Xenidis

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.