From edc9e4d2454de463e6aea2fdef645a9f4cb0c28f Mon Sep 17 00:00:00 2001 From: Ioannis Glaropoulos Date: Fri, 8 Mar 2019 11:08:16 +0100 Subject: [PATCH] arch: arm: userspace: Force arch-specific user local data reservation This commit forces architecture-specific implementation for initializing the are for user mode local thread data. This has been enforced already for ARC. We now do the same for ARM. Signed-off-by: Ioannis Glaropoulos --- kernel/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/Kconfig b/kernel/Kconfig index 817abfc7f7e..a5fc86558f6 100644 --- a/kernel/Kconfig +++ b/kernel/Kconfig @@ -195,7 +195,7 @@ config THREAD_USERSPACE_LOCAL_DATA config THREAD_USERSPACE_LOCAL_DATA_ARCH_DEFER_SETUP bool depends on THREAD_USERSPACE_LOCAL_DATA - default y if ARCH="arc" + default y if ARC || ARM config ERRNO bool "Enable errno support"