From e57203eca44a0d5ff86640d1c88cdef27b473c19 Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Mon, 8 Nov 2021 11:10:12 +0800 Subject: [PATCH] sched: Disable message queue by default when DEFAULT_SMALL equals y Signed-off-by: Xiang Xiao --- sched/Kconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sched/Kconfig b/sched/Kconfig index 69b1992653..6209e8c178 100644 --- a/sched/Kconfig +++ b/sched/Kconfig @@ -41,7 +41,8 @@ config DISABLE_PTHREAD config DISABLE_MQUEUE bool "Disable POSIX message queue support" - default n + default y if DEFAULT_SMALL + default n if !DEFAULT_SMALL config DISABLE_ENVIRON bool "Disable environment variable support"