Kconfig 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Plug and Play BIOS configuration
  4. #
  5. config PNPBIOS
  6. bool "Plug and Play BIOS support"
  7. depends on ISA && X86_32
  8. default n
  9. help
  10. Linux uses the PNPBIOS as defined in "Plug and Play BIOS
  11. Specification Version 1.0A May 5, 1994" to autodetect built-in
  12. mainboard resources (e.g. parallel port resources).
  13. Some features (e.g. event notification, docking station information,
  14. ISAPNP services) are not currently implemented.
  15. If you would like the kernel to detect and allocate resources to
  16. your mainboard devices (on some systems they are disabled by the
  17. BIOS) say Y here. Also the PNPBIOS can help prevent resource
  18. conflicts between mainboard devices and other bus devices.
  19. Note: ACPI is expected to supersede PNPBIOS some day, currently it
  20. co-exists nicely. If you have a non-ISA system that supports ACPI,
  21. you probably don't need PNPBIOS support.
  22. config PNPBIOS_PROC_FS
  23. bool "Plug and Play BIOS /proc interface"
  24. depends on PNPBIOS && PROC_FS
  25. help
  26. If you say Y here and to "/proc file system support", you will be
  27. able to directly access the PNPBIOS. This includes resource
  28. allocation, ESCD, and other PNPBIOS services. Using this
  29. interface is potentially dangerous because the PNPBIOS driver will
  30. not be notified of any resource changes made by writing directly.
  31. Also some buggy systems will fault when accessing certain features
  32. in the PNPBIOS /proc interface (e.g. "boot" configs).
  33. See the latest pcmcia-cs (stand-alone package) for a nice set of
  34. PNPBIOS /proc interface tools (lspnp and setpnp).
  35. Unless you are debugging or have other specific reasons, it is
  36. recommended that you say N here.