summaryrefslogtreecommitdiff
path: root/apps/nshlib/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-02-27 11:11:24 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-02-27 11:11:24 -0600
commit7e99ec812a9a62742d799e12ef487a07bc008dfb (patch)
treee052355b416a87dd4e80768a7541ab02e0f83e81 /apps/nshlib/Kconfig
parent4f7347955eb8b544d1c7910e4141b4a9865b3d85 (diff)
downloadnuttx-7e99ec812a9a62742d799e12ef487a07bc008dfb.tar.gz
nuttx-7e99ec812a9a62742d799e12ef487a07bc008dfb.tar.bz2
nuttx-7e99ec812a9a62742d799e12ef487a07bc008dfb.zip
Should CPU load on each thread in the PS command
Diffstat (limited to 'apps/nshlib/Kconfig')
-rw-r--r--apps/nshlib/Kconfig12
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/nshlib/Kconfig b/apps/nshlib/Kconfig
index 74d25a59e..1de11376a 100644
--- a/apps/nshlib/Kconfig
+++ b/apps/nshlib/Kconfig
@@ -98,6 +98,11 @@ config NSH_DISABLE_DD
default y if DEFAULT_SMALL
default n if !DEFAULT_SMALL
+config NSH_DISABLE_DF
+ bool "Disable df"
+ default y if DEFAULT_SMALL
+ default n if !DEFAULT_SMALL
+
config NSH_DISABLE_DELROUTE
bool "Disable delroute"
default y if DEFAULT_SMALL
@@ -284,6 +289,7 @@ config NSH_CMDOPT_DF_H
bool "df: Enable [-h] man-readable format"
default n if DEFAULT_SMALL
default y if !DEFAULT_SMALL
+ depends on !NSH_DISABLE_DF
config NSH_CODECS_BUFSIZE
int "File buffer size used by CODEC commands"
@@ -293,6 +299,12 @@ config NSH_CMDOPT_HEXDUMP
bool "hexdump: Enable 'skip' and 'count' parameters"
default n if DEFAULT_SMALL
default y if !DEFAULT_SMALL
+ depends on !NSH_DISABLE_HEXDUMP
+
+config NSH_PROC_MOUNTPOUNT
+ string "procfs mountpoint"
+ default "/proc"
+ depends on FS_PROCFS
endmenu