Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. menu "Generic Driver Options"
  2. config STANDALONE
  3. bool "Select only drivers that don't need compile-time external firmware" if EXPERIMENTAL
  4. default y
  5. help
  6. Select this option if you don't have magic firmware for drivers that
  7. need it.
  8. If unsure, say Y.
  9. config PREVENT_FIRMWARE_BUILD
  10. bool "Prevent firmware from being built"
  11. default y
  12. help
  13. Say yes to avoid building firmware. Firmware is usually shipped
  14. with the driver, and only when updating the firmware a rebuild
  15. should be made.
  16. If unsure say Y here.
  17. config FW_LOADER
  18. tristate "Userspace firmware loading support"
  19. select HOTPLUG
  20. ---help---
  21. This option is provided for the case where no in-kernel-tree modules
  22. require userspace firmware loading support, but a module built outside
  23. the kernel tree does.
  24. config DEBUG_DRIVER
  25. bool "Driver Core verbose debug messages"
  26. depends on DEBUG_KERNEL
  27. help
  28. Say Y here if you want the Driver core to produce a bunch of
  29. debug messages to the system log. Select this if you are having a
  30. problem with the driver core and want to see more of what is
  31. going on.
  32. If you are unsure about this, say N here.
  33. endmenu