| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # | 
|  | 2 | # Plug and Play configuration | 
|  | 3 | # | 
|  | 4 |  | 
| Jan Engelhardt | 5c493f5 | 2007-07-15 23:39:38 -0700 | [diff] [blame] | 5 | menuconfig PNP | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | bool "Plug and Play support" | 
| Jan Engelhardt | 5c493f5 | 2007-07-15 23:39:38 -0700 | [diff] [blame] | 7 | depends on HAS_IOMEM | 
| Len Brown | 76f5858 | 2005-08-24 12:10:49 -0400 | [diff] [blame] | 8 | depends on ISA || ACPI | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |  | 
|  | 16 | Say Y here if you would like Linux to configure your Plug and Play | 
|  | 17 | devices. You should then also say Y to all of the protocols below. | 
|  | 18 | Alternatively, you can say N here and configure your PnP devices | 
|  | 19 | using user space utilities such as the isapnptools package. | 
|  | 20 |  | 
|  | 21 | If unsure, say Y. | 
|  | 22 |  | 
| Jan Engelhardt | 5c493f5 | 2007-07-15 23:39:38 -0700 | [diff] [blame] | 23 | if PNP | 
|  | 24 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | config PNP_DEBUG | 
|  | 26 | bool "PnP Debug Messages" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | help | 
|  | 28 | Say Y if you want the Plug and Play Layer to print debug messages. | 
|  | 29 | This is useful if you are developing a PnP driver or troubleshooting. | 
|  | 30 |  | 
|  | 31 | comment "Protocols" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 |  | 
|  | 33 | source "drivers/pnp/isapnp/Kconfig" | 
|  | 34 |  | 
|  | 35 | source "drivers/pnp/pnpbios/Kconfig" | 
|  | 36 |  | 
|  | 37 | source "drivers/pnp/pnpacpi/Kconfig" | 
|  | 38 |  | 
| Jan Engelhardt | 5c493f5 | 2007-07-15 23:39:38 -0700 | [diff] [blame] | 39 | endif # PNP |