2013-11-14 05:59:14 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 22:08:57 +08:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2013-11-14 05:59:14 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
config FS_PROCFS
|
|
|
|
bool "PROCFS File System"
|
|
|
|
default n
|
2013-12-12 23:21:55 +08:00
|
|
|
select FS_READABLE
|
2013-11-14 05:59:14 +08:00
|
|
|
---help---
|
2013-12-12 23:21:55 +08:00
|
|
|
The PROCFS file system provides access to task status and other driver
|
|
|
|
status through the NuttX file system. The PROCFS may, for example, be
|
|
|
|
mount at /proc. Then information about all of the currently active
|
|
|
|
tasks and threads will be available in /proc.
|
|
|
|
|
|
|
|
if FS_PROCFS
|
|
|
|
|
2015-12-02 04:56:20 +08:00
|
|
|
config FS_PROCFS_REGISTER
|
|
|
|
bool "Run-time registration"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Support run-time registration of the new entries in the procfs file
|
|
|
|
system.
|
|
|
|
|
2013-12-12 23:21:55 +08:00
|
|
|
menu "Exclude individual procfs entries"
|
|
|
|
|
|
|
|
config FS_PROCFS_EXCLUDE_PROCESS
|
|
|
|
bool "Exclude process information"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Causes the process information to be excluded from the procfs system.
|
|
|
|
This will reduce code space, but then giving access to process info
|
|
|
|
was kinda the whole point of procfs, but hey, whatever.
|
|
|
|
|
2015-12-13 07:42:25 +08:00
|
|
|
config FS_PROCFS_EXCLUDE_MODULE
|
|
|
|
bool "Exclude module information"
|
|
|
|
depends on MODULE
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Causes the module information to be excluded from the procfs system.
|
|
|
|
|
2017-10-27 03:33:08 +08:00
|
|
|
config FS_PROCFS_EXCLUDE_BLOCKS
|
|
|
|
bool "Exclude fs/blocks information"
|
|
|
|
depends on !DISABLE_MOUNTPOINT
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Causes the fs block usage information to be excluded from the procfs
|
2017-10-28 08:30:18 +08:00
|
|
|
system. This procfs file provides the text output for the NSH 'df'
|
|
|
|
command.
|
2017-10-27 03:33:08 +08:00
|
|
|
|
|
|
|
config FS_PROCFS_EXCLUDE_MOUNT
|
|
|
|
bool "Exclude fs/mount information"
|
|
|
|
depends on !DISABLE_MOUNTPOINT
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Causes the mount point information to be excluded from the procfs
|
2017-10-28 08:30:18 +08:00
|
|
|
system. This procfs file provides the text output for the NSH 'mount'
|
|
|
|
command.
|
2017-10-27 03:33:08 +08:00
|
|
|
|
|
|
|
config FS_PROCFS_EXCLUDE_USAGE
|
|
|
|
bool "Exclude fs/usage information"
|
|
|
|
depends on !DISABLE_MOUNTPOINT
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Causes the fs usage information to be excluded from the procfs
|
2017-10-28 08:30:18 +08:00
|
|
|
system. This procfs file provides the text output for the NSH 'df -h'
|
|
|
|
command.
|
2017-10-27 03:33:08 +08:00
|
|
|
|
2013-12-15 00:34:08 +08:00
|
|
|
config FS_PROCFS_EXCLUDE_UPTIME
|
|
|
|
bool "Exclude uptime"
|
|
|
|
default n
|
|
|
|
|
2014-02-23 05:20:12 +08:00
|
|
|
config FS_PROCFS_EXCLUDE_CPULOAD
|
|
|
|
bool "Exclude CPU load"
|
|
|
|
default n
|
|
|
|
depends on SCHED_CPULOAD
|
|
|
|
|
2016-02-07 01:35:30 +08:00
|
|
|
config FS_PROCFS_EXCLUDE_KMM
|
|
|
|
bool "Exclude kmm"
|
|
|
|
default n
|
|
|
|
depends on MM_KERNEL_HEAP
|
|
|
|
|
2014-02-23 05:20:12 +08:00
|
|
|
config FS_PROCFS_EXCLUDE_MOUNTS
|
|
|
|
bool "Exclude mounts"
|
|
|
|
default n
|
|
|
|
depends on !DISABLE_MOUNTPOINT
|
|
|
|
|
2015-11-28 02:33:58 +08:00
|
|
|
config FS_PROCFS_EXCLUDE_NET
|
|
|
|
bool "Exclude network"
|
|
|
|
depends on NET
|
|
|
|
default n
|
|
|
|
|
2017-11-13 23:08:39 +08:00
|
|
|
config FS_PROCFS_EXCLUDE_PROGMEM
|
|
|
|
bool "Exclude progmem"
|
|
|
|
depends on ARCH_HAVE_PROGMEM
|
|
|
|
default y
|
2017-08-12 04:50:39 +08:00
|
|
|
|
2014-02-23 05:20:12 +08:00
|
|
|
config FS_PROCFS_EXCLUDE_MTD
|
|
|
|
bool "Exclude mtd"
|
|
|
|
depends on MTD
|
|
|
|
default n
|
|
|
|
|
2013-12-12 23:21:55 +08:00
|
|
|
config FS_PROCFS_EXCLUDE_PARTITIONS
|
|
|
|
bool "Exclude partitions"
|
|
|
|
depends on MTD_PARTITION
|
|
|
|
default n
|
|
|
|
|
2017-11-13 23:08:39 +08:00
|
|
|
config FS_PROCFS_EXCLUDE_ROUTE
|
|
|
|
bool "Exclude routing table"
|
|
|
|
depends on !FS_PROCFS_EXCLUDE_NET && NET_ROUTE
|
|
|
|
default n
|
|
|
|
|
2013-12-12 23:21:55 +08:00
|
|
|
config FS_PROCFS_EXCLUDE_SMARTFS
|
|
|
|
bool "Exclude fs/smartfs"
|
|
|
|
depends on FS_SMARTFS
|
|
|
|
default n
|
|
|
|
|
2017-11-14 02:51:33 +08:00
|
|
|
config FS_PROCFS_EXCLUDE_UMM
|
|
|
|
bool "Exclude umm"
|
|
|
|
depends on !BUILD_KERNEL
|
|
|
|
default n
|
|
|
|
|
2014-07-03 22:50:24 +08:00
|
|
|
endmenu #
|
|
|
|
endif # FS_PROCFS
|