From: kfraser@localhost.localdomain Date: Thu, 18 Jan 2007 18:39:07 +0000 (+0000) Subject: Build PAE by default on x86_32. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15371^2~133^2~8 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=48ad2e6f157264fb495cef56d572d3fc3fed2781;p=xen.git Build PAE by default on x86_32. Signed-off-by: Keir Fraser --- diff --git a/Config.mk b/Config.mk index 6a7ed679ac..7474ce19c5 100644 --- a/Config.mk +++ b/Config.mk @@ -6,9 +6,12 @@ debug ?= n XEN_COMPILE_ARCH ?= $(shell uname -m | sed -e s/i.86/x86_32/ \ -e s/ppc/powerpc/ -e s/i86pc/x86_32/) XEN_TARGET_ARCH ?= $(XEN_COMPILE_ARCH) -XEN_TARGET_X86_PAE ?= n XEN_OS ?= $(shell uname -s) +ifeq ($(XEN_TARGET_ARCH),x86_32) +XEN_TARGET_X86_PAE ?= y +endif + CONFIG_$(XEN_OS) := y SHELL ?= /bin/sh