aboutsummaryrefslogtreecommitdiffstats
path: root/Config.mk
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2012-12-19 14:16:30 +0000
committerIan Campbell <ian.campbell@citrix.com>2012-12-19 14:16:30 +0000
commit5a81d6b026ab06123f47e39bc47aedcf23048e6b (patch)
treea450f0d70e07174ed80819808588fcecbcd43ffd /Config.mk
parent977dba41ab7c2380c4b6757aed2e680a0d7df4c1 (diff)
downloadxen-5a81d6b026ab06123f47e39bc47aedcf23048e6b.tar.gz
xen-5a81d6b026ab06123f47e39bc47aedcf23048e6b.tar.bz2
xen-5a81d6b026ab06123f47e39bc47aedcf23048e6b.zip
xen: arm: introduce arm32 as a subarch of arm.
- move 32-bit specific files into subarch specific arm32 subdirectory. - move gic.h to xen/include/asm-arm (it is needed from both subarch and generic code). - make the appropriate build and config file changes to support XEN_TARGET_ARCH=arm32. This prepares us for an eventual 64-bit subarch. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> Committed-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'Config.mk')
-rw-r--r--Config.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/Config.mk b/Config.mk
index 028b6d514a..a7d7f79618 100644
--- a/Config.mk
+++ b/Config.mk
@@ -14,7 +14,9 @@ debug ?= y
debug_symbols ?= $(debug)
XEN_COMPILE_ARCH ?= $(shell uname -m | sed -e s/i.86/x86_32/ \
- -e s/i86pc/x86_32/ -e s/amd64/x86_64/ -e s/arm.*/arm/)
+ -e s/i86pc/x86_32/ -e s/amd64/x86_64/ \
+ -e s/armv7.*/arm32/)
+
XEN_TARGET_ARCH ?= $(XEN_COMPILE_ARCH)
XEN_OS ?= $(shell uname -s)