From mboxrd@z Thu Jan 1 00:00:00 1970 From: Robert Valentan Subject: [Patch] "Helper" for dom0/domU Kernels Date: Fri, 27 Apr 2007 17:26:38 +0200 Message-ID: <4632162E.2080202@solid-soft.at> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------000407000709050609090103" Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org This is a multi-part message in MIME format. --------------000407000709050609090103 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit 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 -- Robert Valentan --------------000407000709050609090103 Content-Type: text/x-patch; name="dom0_domU.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="dom0_domU.patch" 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.%,%, \ --------------000407000709050609090103 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel --------------000407000709050609090103--