Kconfig 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. menu "Generic Driver Options"
  2. config UEVENT_HELPER_PATH
  3. string "path to uevent helper"
  4. depends on HOTPLUG
  5. default "/sbin/hotplug"
  6. help
  7. Path to uevent helper program forked by the kernel for
  8. every uevent.
  9. config STANDALONE
  10. bool "Select only drivers that don't need compile-time external firmware" if EXPERIMENTAL
  11. default y
  12. help
  13. Select this option if you don't have magic firmware for drivers that
  14. need it.
  15. If unsure, say Y.
  16. config PREVENT_FIRMWARE_BUILD
  17. bool "Prevent firmware from being built"
  18. default y
  19. help
  20. Say yes to avoid building firmware. Firmware is usually shipped
  21. with the driver, and only when updating the firmware a rebuild
  22. should be made.
  23. If unsure say Y here.
  24. config FW_LOADER
  25. tristate "Userspace firmware loading support"
  26. depends on HOTPLUG
  27. ---help---
  28. This option is provided for the case where no in-kernel-tree modules
  29. require userspace firmware loading support, but a module built outside
  30. the kernel tree does.
  31. config DEBUG_DRIVER
  32. bool "Driver Core verbose debug messages"
  33. depends on DEBUG_KERNEL
  34. help
  35. Say Y here if you want the Driver core to produce a bunch of
  36. debug messages to the system log. Select this if you are having a
  37. problem with the driver core and want to see more of what is
  38. going on.
  39. If you are unsure about this, say N here.
  40. config DEBUG_DEVRES
  41. bool "Managed device resources verbose debug messages"
  42. depends on DEBUG_KERNEL
  43. help
  44. This option enables kernel parameter devres.log. If set to
  45. non-zero, devres debug messages are printed. Select this if
  46. you are having a problem with devres or want to debug
  47. resource management for a managed device. devres.log can be
  48. switched on and off from sysfs node.
  49. If you are unsure about this, Say N here.
  50. config SYS_HYPERVISOR
  51. bool
  52. default n
  53. endmenu