From: Robert Valentan <R.Valentan@solid-soft.at>
To: xen-devel@lists.xensource.com
Subject: [Patch] "Helper" for dom0/domU Kernels
Date: Fri, 27 Apr 2007 17:26:38 +0200 [thread overview]
Message-ID: <4632162E.2080202@solid-soft.at> (raw)
[-- 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
next reply other threads:[~2007-04-27 15:26 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-04-27 15:26 Robert Valentan [this message]
2007-04-27 15:33 ` [Patch] "Helper" for dom0/domU Kernels Keir Fraser
2007-04-27 19:23 ` Robert Valentan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4632162E.2080202@solid-soft.at \
--to=r.valentan@solid-soft.at \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.