aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerome Forissier <jerome@forissier.org>2020-08-27 10:35:49 +0200
committerJérôme Forissier <jerome@forissier.org>2020-08-27 17:32:14 +0200
commitce0674275afc9837e593cca45980a7644b0bcc39 (patch)
tree58831255fc958ca9e065c621710b7596b2151a54
parent416dd1c939eeb3ef6cc969c27d9a4ae86deb05ff (diff)
downloadbuild-ce0674275afc9837e593cca45980a7644b0bcc39.tar.gz
qemu_v8: do not force COMPILE_NS_USER := 64
32-bit non-secure user space works fine with the QEMUv8 build so set COMPILE_NS_USER to 64 by default but let the user change this value to 32 if needed ('make COMPILE_NS_USER=32'). Signed-off-by: Jerome Forissier <jerome@forissier.org> Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
-rw-r--r--qemu_v8.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu_v8.mk b/qemu_v8.mk
index 83ad96e..333a80c 100644
--- a/qemu_v8.mk
+++ b/qemu_v8.mk
@@ -3,7 +3,7 @@
# Application), NS_KERNEL (Non Secure Kernel), S_KERNEL (Secure Kernel) and
# S_USER (Secure User - TA) are compiled
################################################################################
-override COMPILE_NS_USER := 64
+COMPILE_NS_USER ?= 64
override COMPILE_NS_KERNEL := 64
COMPILE_S_USER ?= 64
override COMPILE_S_KERNEL := 64