Kconfig (4f2c0a4acffbec01079c28f839422e64ddeff004) | Kconfig (443cbaf9e2fdbef7d7cae457434a6cb8a679441b) |
---|---|
1# SPDX-License-Identifier: GPL-2.0-only 2config PROC_FS 3 bool "/proc file system support" if EXPERT 4 default y 5 help 6 This is a virtual file system providing information about the status 7 of the system. "Virtual" means that it doesn't take up any space on 8 your hard disk: the files are created on the fly by the kernel when --- 18 unchanged lines hidden (view full) --- 27 ("man 5 proc"). 28 29 This option will enlarge your kernel by about 67 KB. Several 30 programs depend on this, so everyone should say Y here. 31 32config PROC_KCORE 33 bool "/proc/kcore support" if !ARM 34 depends on PROC_FS && MMU | 1# SPDX-License-Identifier: GPL-2.0-only 2config PROC_FS 3 bool "/proc file system support" if EXPERT 4 default y 5 help 6 This is a virtual file system providing information about the status 7 of the system. "Virtual" means that it doesn't take up any space on 8 your hard disk: the files are created on the fly by the kernel when --- 18 unchanged lines hidden (view full) --- 27 ("man 5 proc"). 28 29 This option will enlarge your kernel by about 67 KB. Several 30 programs depend on this, so everyone should say Y here. 31 32config PROC_KCORE 33 bool "/proc/kcore support" if !ARM 34 depends on PROC_FS && MMU |
35 select CRASH_CORE | 35 select VMCORE_INFO |
36 help 37 Provides a virtual ELF core file of the live kernel. This can 38 be read with gdb and other ELF tools. No modifications can be 39 made using this mechanism. 40 41config PROC_VMCORE 42 bool "/proc/vmcore support" 43 depends on PROC_FS && CRASH_DUMP --- 67 unchanged lines hidden --- | 36 help 37 Provides a virtual ELF core file of the live kernel. This can 38 be read with gdb and other ELF tools. No modifications can be 39 made using this mechanism. 40 41config PROC_VMCORE 42 bool "/proc/vmcore support" 43 depends on PROC_FS && CRASH_DUMP --- 67 unchanged lines hidden --- |