All of lore.kernel.org
 help / color / mirror / Atom feed
* [Patch] "Helper" for  dom0/domU Kernels
@ 2007-04-27 15:26 Robert Valentan
  2007-04-27 15:33 ` Keir Fraser
  0 siblings, 1 reply; 3+ messages in thread
From: Robert Valentan @ 2007-04-27 15:26 UTC (permalink / raw)
  To: xen-devel

[-- Attachment #1: Type: text/plain, Size: 252 bytes --]

This patch add's a XEN_SPLIT_KERNEL to Config.mk and use it
in config/Linux.mk
This patch is also needed for my vnet-patch (some minutes before)
to get the kernel_src dir.

Signed-off-by: Robert Valentan <R.Valentan@solid-soft.at>

-- 
Robert Valentan

[-- Attachment #2: dom0_domU.patch --]
[-- Type: text/x-patch, Size: 691 bytes --]

diff -r ee16cdeddade Config.mk
--- a/Config.mk	Wed Apr 25 09:39:08 2007
+++ b/Config.mk	Fri Apr 27 18:01:44 2007
@@ -13,6 +13,9 @@
 endif
 
 CONFIG_$(XEN_OS) := y
+
+# own kernels for dom0 and domU y/n
+XEN_SPLIT_KERNEL := y
 
 SHELL     ?= /bin/sh
 
diff -r ee16cdeddade config/Linux.mk
--- a/config/Linux.mk	Wed Apr 25 09:39:08 2007
+++ b/config/Linux.mk	Fri Apr 27 18:01:44 2007
@@ -1,7 +1,11 @@
 include $(XEN_ROOT)/config/StdGNU.mk
 
 # You may use wildcards, e.g. KERNELS=*2.6*
+ifeq ($(XEN_SPLIT_KERNEL),y)
+KERNELS ?= linux-2.6-xen0 linux-2.6-xenU
+else
 KERNELS ?= linux-2.6-xen
+endif
 
 XKERNELS := $(foreach kernel, $(KERNELS), \
               $(patsubst buildconfigs/mk.%,%, \

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

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

end of thread, other threads:[~2007-04-27 19:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-27 15:26 [Patch] "Helper" for dom0/domU Kernels Robert Valentan
2007-04-27 15:33 ` Keir Fraser
2007-04-27 19:23   ` Robert Valentan

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.