Kconfig 1.1 KB

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