Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #
  2. # Plug and Play configuration
  3. #
  4. menu "Plug and Play support"
  5. config PNP
  6. bool "Plug and Play support"
  7. depends on ISA || ACPI
  8. ---help---
  9. Plug and Play (PnP) is a standard for peripherals which allows those
  10. peripherals to be configured by software, e.g. assign IRQ's or other
  11. parameters. No jumpers on the cards are needed, instead the values
  12. are provided to the cards from the BIOS, from the operating system,
  13. or using a user-space utility.
  14. Say Y here if you would like Linux to configure your Plug and Play
  15. devices. You should then also say Y to all of the protocols below.
  16. Alternatively, you can say N here and configure your PnP devices
  17. using user space utilities such as the isapnptools package.
  18. If unsure, say Y.
  19. config PNP_DEBUG
  20. bool "PnP Debug Messages"
  21. depends on PNP
  22. help
  23. Say Y if you want the Plug and Play Layer to print debug messages.
  24. This is useful if you are developing a PnP driver or troubleshooting.
  25. comment "Protocols"
  26. depends on PNP
  27. source "drivers/pnp/isapnp/Kconfig"
  28. source "drivers/pnp/pnpbios/Kconfig"
  29. source "drivers/pnp/pnpacpi/Kconfig"
  30. endmenu