Kconfig 998 B

123456789101112131415161718192021222324
  1. config SYSFS
  2. bool "sysfs file system support" if EXPERT
  3. default y
  4. help
  5. The sysfs filesystem is a virtual filesystem that the kernel uses to
  6. export internal kernel objects, their attributes, and their
  7. relationships to one another.
  8. Users can use sysfs to ascertain useful information about the running
  9. kernel, such as the devices the kernel has discovered on each bus and
  10. which driver each is bound to. sysfs can also be used to tune devices
  11. and other kernel subsystems.
  12. Some system agents rely on the information in sysfs to operate.
  13. /sbin/hotplug uses device and object attributes in sysfs to assist in
  14. delegating policy decisions, like persistently naming devices.
  15. sysfs is currently used by the block subsystem to mount the root
  16. partition. If sysfs is disabled you must specify the boot device on
  17. the kernel boot command line via its major and minor numbers. For
  18. example, "root=03:01" for /dev/hda1.
  19. Designers of embedded systems may wish to say N here to conserve space.