Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756172Ab2BWRtc (ORCPT ); Thu, 23 Feb 2012 12:49:32 -0500 Received: from smtp02.citrix.com ([66.165.176.63]:48910 "EHLO SMTP02.CITRIX.COM" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753441Ab2BWRtb (ORCPT ); Thu, 23 Feb 2012 12:49:31 -0500 X-IronPort-AV: E=Sophos;i="4.73,470,1325480400"; d="scan'208";a="183166292" From: Stefano Stabellini To: linux-kernel@vger.kernel.org CC: xen-devel@lists.xensource.com, arnd@arndb.de, linux-arm-kernel@lists.infradead.org, catalin.marinas@arm.com, linaro-dev@lists.linaro.org, david.vrabel@citrix.com, Ian.Campbell@citrix.com, Stefano Stabellini Subject: [PATCH-WIP 13/13] xen/arm: compile grant-table features events and xenbus, do not compile pci Date: Thu, 23 Feb 2012 17:48:34 +0000 Message-ID: <1330019314-20865-13-git-send-email-stefano.stabellini@eu.citrix.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1721 Lines: 58 Also select XEN_DOM0 by default. Signed-off-by: Stefano Stabellini --- arch/arm/Kconfig | 4 ++++ drivers/xen/Makefile | 7 ++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 57b294c..1a95b35 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -2201,9 +2201,13 @@ config NEON Say Y to include support code for NEON, the ARMv7 Advanced SIMD Extension. +config XEN_DOM0 + def_bool y + config XEN bool "Xen guest support on ARM" depends on ARM + select XEN_DOM0 help Say Y if you want to run Linux in a Virtual Machine on Xen on ARM. diff --git a/drivers/xen/Makefile b/drivers/xen/Makefile index dab8305..e3542e1 100644 --- a/drivers/xen/Makefile +++ b/drivers/xen/Makefile @@ -1,7 +1,9 @@ ifeq (CONFIG_X86,y) -obj-y += grant-table.o features.o events.o manage.o balloon.o -obj-y += xenbus/ +obj-y += manage.o balloon.o +obj-$(CONFIG_XEN_DOM0) += pci.o endif +obj-y += grant-table.o features.o events.o +obj-y += xenbus/ nostackp := $(call cc-option, -fno-stack-protector) CFLAGS_features.o := $(nostackp) @@ -21,7 +23,6 @@ obj-$(CONFIG_XEN_SYS_HYPERVISOR) += sys-hypervisor.o obj-$(CONFIG_XEN_PVHVM) += platform-pci.o obj-$(CONFIG_XEN_TMEM) += tmem.o obj-$(CONFIG_SWIOTLB_XEN) += swiotlb-xen.o -obj-$(CONFIG_XEN_DOM0) += pci.o obj-$(CONFIG_XEN_PCIDEV_BACKEND) += xen-pciback/ xen-evtchn-y := evtchn.o -- 1.7.2.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/