summaryrefslogtreecommitdiff
path: root/nuttx/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-29 07:26:30 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-29 07:26:30 -0600
commit37737865dcac13ccfe4ddcb1a1597e94fa48b2ae (patch)
treea2e44d336756c4c76dffab6c94af5bccdcb3da1b /nuttx/Kconfig
parentf3ffe248521f3f9ff93cb7d2084f250ae5f0f415 (diff)
downloadpx4-nuttx-37737865dcac13ccfe4ddcb1a1597e94fa48b2ae.tar.gz
px4-nuttx-37737865dcac13ccfe4ddcb1a1597e94fa48b2ae.tar.bz2
px4-nuttx-37737865dcac13ccfe4ddcb1a1597e94fa48b2ae.zip
System call debug needs to be conditioned on LIB_SYSCALL, no NUTTX_KERNEL
Diffstat (limited to 'nuttx/Kconfig')
-rw-r--r--nuttx/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/Kconfig b/nuttx/Kconfig
index 4a84866cf..eb1a43e9a 100644
--- a/nuttx/Kconfig
+++ b/nuttx/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.