Kconfig 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. config PROC_FS
  2. bool "/proc file system support" if EXPERT
  3. default y
  4. help
  5. This is a virtual file system providing information about the status
  6. of the system. "Virtual" means that it doesn't take up any space on
  7. your hard disk: the files are created on the fly by the kernel when
  8. you try to access them. Also, you cannot read the files with older
  9. version of the program less: you need to use more or cat.
  10. It's totally cool; for example, "cat /proc/interrupts" gives
  11. information about what the different IRQs are used for at the moment
  12. (there is a small number of Interrupt ReQuest lines in your computer
  13. that are used by the attached devices to gain the CPU's attention --
  14. often a source of trouble if two devices are mistakenly configured
  15. to use the same IRQ). The program procinfo to display some
  16. information about your system gathered from the /proc file system.
  17. Before you can use the /proc file system, it has to be mounted,
  18. meaning it has to be given a location in the directory hierarchy.
  19. That location should be /proc. A command such as "mount -t proc proc
  20. /proc" or the equivalent line in /etc/fstab does the job.
  21. The /proc file system is explained in the file
  22. <file:Documentation/filesystems/proc.txt> and on the proc(5) manpage
  23. ("man 5 proc").
  24. This option will enlarge your kernel by about 67 KB. Several
  25. programs depend on this, so everyone should say Y here.
  26. config PROC_KCORE
  27. bool "/proc/kcore support" if !ARM
  28. depends on PROC_FS && MMU
  29. help
  30. Provides a virtual ELF core file of the live kernel. This can
  31. be read with gdb and other ELF tools. No modifications can be
  32. made using this mechanism.
  33. config PROC_VMCORE
  34. bool "/proc/vmcore support"
  35. depends on PROC_FS && CRASH_DUMP
  36. default y
  37. help
  38. Exports the dump image of crashed kernel in ELF format.
  39. config PROC_SYSCTL
  40. bool "Sysctl support (/proc/sys)" if EXPERT
  41. depends on PROC_FS
  42. select SYSCTL
  43. default y
  44. ---help---
  45. The sysctl interface provides a means of dynamically changing
  46. certain kernel parameters and variables on the fly without requiring
  47. a recompile of the kernel or reboot of the system. The primary
  48. interface is through /proc/sys. If you say Y here a tree of
  49. modifiable sysctl entries will be generated beneath the
  50. /proc/sys directory. They are explained in the files
  51. in <file:Documentation/sysctl/>. Note that enabling this
  52. option will enlarge the kernel by at least 8 KB.
  53. As it is generally a good thing, you should say Y here unless
  54. building a kernel for install/rescue disks or your system is very
  55. limited in memory.
  56. config PROC_PAGE_MONITOR
  57. default y
  58. depends on PROC_FS && MMU
  59. bool "Enable /proc page monitoring" if EXPERT
  60. help
  61. Various /proc files exist to monitor process memory utilization:
  62. /proc/pid/smaps, /proc/pid/clear_refs, /proc/pid/pagemap,
  63. /proc/kpagecount, and /proc/kpageflags. Disabling these
  64. interfaces will reduce the size of the kernel by approximately 4kb.
  65. config PROC_CHILDREN
  66. bool "Include /proc/<pid>/task/<tid>/children file"
  67. default n
  68. help
  69. Provides a fast way to retrieve first level children pids of a task. See
  70. <file:Documentation/filesystems/proc.txt> for more information.
  71. Say Y if you are running any user-space software which takes benefit from
  72. this interface. For example, rkt is such a piece of software.