WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

RE: [Xen-devel] [PATCH]Allow different config file for xenlinux on samea

To: "Zhang, Xiantao" <xiantao.zhang@xxxxxxxxx>, <xen-devel@xxxxxxxxxxxxxxxxxxx>
Subject: RE: [Xen-devel] [PATCH]Allow different config file for xenlinux on samearch
From: "Tian, Kevin" <kevin.tian@xxxxxxxxx>
Date: Mon, 19 Dec 2005 17:02:27 +0800
Delivery-date: Mon, 19 Dec 2005 09:05:03 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
Thread-index: AcYAmEdCgybULE5oTn6OBxCMa5rlgAD3iFuA
Thread-topic: [Xen-devel] [PATCH]Allow different config file for xenlinux on samearch
Hi, Keir,
        Any comments upon following patch? ;-) We need it to further check in a 
specific configuration file (likely xen0_defconfig_ia64tiger) later to run xen 
on IA64 tiger box. Currently we have no generic one for all IA64 boxes. Let's 
know if better way to do it. Currently custom with tiger box can only get that 
file out of the tree.

Thanks,
Kevin

>-----Original Message-----
>From: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
>[mailto:xen-devel-bounces@xxxxxxxxxxxxxxxxxxx] On Behalf Of Zhang, Xiantao
>Sent: 2005年12月14日 18:22
>To: xen-devel@xxxxxxxxxxxxxxxxxxx
>Subject: [Xen-devel] [PATCH]Allow different config file for xenlinux on 
>samearch
>
>Currently there is no generic configure file to compile xenlinux on
>ia64, since there're several different system types like HP-ZX, DIG,
>etc. Current Makefile can't meet this need and default one
>(xen0_defconfig_ia64) is only for HP-ZX type. Hence, this patch can
>append an additional param to configuration file name to differentiate
>system types when make.
>
>For example, we can use "make world XEN_SYSTYPE=dig" to compile, and if
>a config file named as xen0_defconfig_ia64dig exists under
>arch/xen/configs, it will be copied to override xen0_defconfig_ia64
>before real compilation.. If no value for this option, it use default
>configure file for their archs.
>
>Configuration file is not attached here. If this approach is an agreed
>approach to solve such requirement, we will check in the config file in
>another mail.
>
>Signed-off-by Zhang Xiantao <xiantao.zhang@xxxxxxxxx>
>
>diff -r 0255f48b757f Makefile
>--- a/Makefile Sun Dec  4 19:12:00 2005
>+++ b/Makefile Wed Dec 14 17:35:04 2005
>@@ -10,7 +10,7 @@
> # Export target architecture overrides to Xen and Linux sub-trees.
> ifneq ($(XEN_TARGET_ARCH),)
> SUBARCH := $(subst x86_32,i386,$(XEN_TARGET_ARCH))
>-export XEN_TARGET_ARCH SUBARCH
>+export XEN_TARGET_ARCH SUBARCH XEN_SYSTYPE
> endif
>
> # Default target must appear before any include lines
>diff -r 0255f48b757f buildconfigs/mk.linux-2.6-xen
>--- a/buildconfigs/mk.linux-2.6-xen    Sun Dec  4 19:12:00 2005
>+++ b/buildconfigs/mk.linux-2.6-xen    Wed Dec 14 17:35:04 2005
>@@ -30,7 +30,7 @@
>       CONFIG_VERSION=$$(sed -ne 's/^EXTRAVERSION = //p'
>$(LINUX_DIR)/Makefile); \
>       [ -r
>$(DESTDIR)/boot/config-$(LINUX_VER)$$CONFIG_VERSION-$(EXTRAVERSION)
> ] &&
>\
>         cp
>$(DESTDIR)/boot/config-$(LINUX_VER)$$CONFIG_VERSION-$(EXTRAVERSION)
>$(LINUX_DIR)/.config \
>-        || cp
>$(LINUX_DIR)/arch/xen/configs/$(EXTRAVERSION)_defconfig_$(XEN_TARGET_A
>RC
>H) \
>+        || cp
>$(LINUX_DIR)/arch/xen/configs/$(EXTRAVERSION)_defconfig_$(XEN_TARGET_A
>RC
>H)$(XEN_SYSTYPE) \
>               $(LINUX_DIR)/.config
>       # See if we need to munge config to enable PAE
>       $(MAKE) CONFIG_FILE=$(LINUX_DIR)/.config -f
>buildconfigs/Rules.mk config-update-pae
>
>Zhang Xiantao
>CSD-OTC PRC Virtualization
>Intel (China) Limited


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

<Prev in Thread] Current Thread [Next in Thread>
  • RE: [Xen-devel] [PATCH]Allow different config file for xenlinux on samearch, Tian, Kevin <=