mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
fs/Kconfig: move sysfs out
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
This commit is contained in:
parent
9d73ac9e8f
commit
5f3a211a8b
2 changed files with 24 additions and 24 deletions
25
fs/Kconfig
25
fs/Kconfig
|
@ -141,30 +141,7 @@ endif # BLOCK
|
||||||
menu "Pseudo filesystems"
|
menu "Pseudo filesystems"
|
||||||
|
|
||||||
source "fs/proc/Kconfig"
|
source "fs/proc/Kconfig"
|
||||||
|
source "fs/sysfs/Kconfig"
|
||||||
config SYSFS
|
|
||||||
bool "sysfs file system support" if EMBEDDED
|
|
||||||
default y
|
|
||||||
help
|
|
||||||
The sysfs filesystem is a virtual filesystem that the kernel uses to
|
|
||||||
export internal kernel objects, their attributes, and their
|
|
||||||
relationships to one another.
|
|
||||||
|
|
||||||
Users can use sysfs to ascertain useful information about the running
|
|
||||||
kernel, such as the devices the kernel has discovered on each bus and
|
|
||||||
which driver each is bound to. sysfs can also be used to tune devices
|
|
||||||
and other kernel subsystems.
|
|
||||||
|
|
||||||
Some system agents rely on the information in sysfs to operate.
|
|
||||||
/sbin/hotplug uses device and object attributes in sysfs to assist in
|
|
||||||
delegating policy decisions, like persistently naming devices.
|
|
||||||
|
|
||||||
sysfs is currently used by the block subsystem to mount the root
|
|
||||||
partition. If sysfs is disabled you must specify the boot device on
|
|
||||||
the kernel boot command line via its major and minor numbers. For
|
|
||||||
example, "root=03:01" for /dev/hda1.
|
|
||||||
|
|
||||||
Designers of embedded systems may wish to say N here to conserve space.
|
|
||||||
|
|
||||||
config TMPFS
|
config TMPFS
|
||||||
bool "Virtual memory file system support (former shm fs)"
|
bool "Virtual memory file system support (former shm fs)"
|
||||||
|
|
23
fs/sysfs/Kconfig
Normal file
23
fs/sysfs/Kconfig
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
config SYSFS
|
||||||
|
bool "sysfs file system support" if EMBEDDED
|
||||||
|
default y
|
||||||
|
help
|
||||||
|
The sysfs filesystem is a virtual filesystem that the kernel uses to
|
||||||
|
export internal kernel objects, their attributes, and their
|
||||||
|
relationships to one another.
|
||||||
|
|
||||||
|
Users can use sysfs to ascertain useful information about the running
|
||||||
|
kernel, such as the devices the kernel has discovered on each bus and
|
||||||
|
which driver each is bound to. sysfs can also be used to tune devices
|
||||||
|
and other kernel subsystems.
|
||||||
|
|
||||||
|
Some system agents rely on the information in sysfs to operate.
|
||||||
|
/sbin/hotplug uses device and object attributes in sysfs to assist in
|
||||||
|
delegating policy decisions, like persistently naming devices.
|
||||||
|
|
||||||
|
sysfs is currently used by the block subsystem to mount the root
|
||||||
|
partition. If sysfs is disabled you must specify the boot device on
|
||||||
|
the kernel boot command line via its major and minor numbers. For
|
||||||
|
example, "root=03:01" for /dev/hda1.
|
||||||
|
|
||||||
|
Designers of embedded systems may wish to say N here to conserve space.
|
Loading…
Reference in a new issue