Kconfig 1013 B

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