From 040d4317a59059a1bb4a4939a9b267feeb44824d Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 29 Aug 2014 07:26:30 -0600 Subject: [PATCH] System call debug needs to be conditioned on LIB_SYSCALL, no NUTTX_KERNEL --- Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kconfig b/Kconfig index 4a84866cf5..eb1a43e9a6 100644 --- a/Kconfig +++ b/Kconfig @@ -441,7 +441,7 @@ config DEBUG_SCHED config DEBUG_SYSCALL bool "SYSCALL Debug Output" default n - depends on NUTTX_KERNEL + depends on LIB_SYSCALL ---help--- Enable very low level output related to system calls. This gives you basically a poor man's version of strace.