summaryrefslogtreecommitdiff
path: root/nuttx/fs/procfs/Kconfig
blob: 633aef4204f56ed618a3aa1a1cc893209bd1afde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

config FS_PROCFS
	bool "PROCFS File System"
	default n
	select FS_READABLE
	---help---
		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

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.

config FS_PROCFS_EXCLUDE_UPTIME
	bool "Exclude uptime"
	default n

config FS_PROCFS_EXCLUDE_CPULOAD
	bool "Exclude CPU load"
	default n
	depends on SCHED_CPULOAD

config FS_PROCFS_EXCLUDE_MOUNTS
	bool "Exclude mounts"
	default n
	depends on !DISABLE_MOUNTPOINT

config FS_PROCFS_EXCLUDE_MTD
	bool "Exclude mtd"
	depends on MTD
	default n

config FS_PROCFS_EXCLUDE_PARTITIONS
	bool "Exclude partitions"
	depends on MTD_PARTITION
	default n

config FS_PROCFS_EXCLUDE_SMARTFS
	bool "Exclude fs/smartfs"
	depends on FS_SMARTFS
	default n

config FS_PROCFS_EXCLUDE_CCM
	bool "Exclude CCM memory usage"
	depends on STM32_CCM_PROCFS
	default n

endmenu #
endif # FS_PROCFS