Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # EISA configuration
  4. #
  5. config HAVE_EISA
  6. bool
  7. menuconfig EISA
  8. bool "EISA support"
  9. depends on HAVE_EISA
  10. help
  11. The Extended Industry Standard Architecture (EISA) bus was
  12. developed as an open alternative to the IBM MicroChannel bus.
  13. The EISA bus provided some of the features of the IBM MicroChannel
  14. bus while maintaining backward compatibility with cards made for
  15. the older ISA bus. The EISA bus saw limited use between 1988 and
  16. 1995 when it was made obsolete by the PCI bus.
  17. Say Y here if you are building a kernel for an EISA-based machine.
  18. Otherwise, say N.
  19. config EISA_VLB_PRIMING
  20. bool "Vesa Local Bus priming"
  21. depends on X86 && EISA
  22. default n
  23. help
  24. Activate this option if your system contains a Vesa Local
  25. Bus (VLB) card that identify itself as an EISA card (such as
  26. the Adaptec AHA-284x).
  27. When in doubt, say N.
  28. config EISA_PCI_EISA
  29. bool "Generic PCI/EISA bridge"
  30. depends on !PARISC && PCI && EISA
  31. default y
  32. help
  33. Activate this option if your system contains a PCI to EISA
  34. bridge. If your system have both PCI and EISA slots, you
  35. certainly need this option.
  36. When in doubt, say Y.
  37. # Using EISA_VIRTUAL_ROOT on something other than an X86 may lead
  38. # to crashes...
  39. config EISA_VIRTUAL_ROOT
  40. bool "EISA virtual root device"
  41. depends on EISA && X86
  42. default y
  43. help
  44. Activate this option if your system only have EISA bus
  45. (no PCI slots).
  46. When in doubt, say Y.
  47. config EISA_NAMES
  48. bool "EISA device name database"
  49. depends on EISA
  50. default y
  51. help
  52. By default, the kernel contains a database of all known EISA
  53. device names to make the information in sysfs comprehensible
  54. to the user. This database increases size of the kernel
  55. image by about 40KB, but it gets freed after the system
  56. boots up, so it doesn't take up kernel memory. Anyway, if
  57. you are building an installation floppy or kernel for an
  58. embedded system where kernel image size really matters, you
  59. can disable this feature and you'll get device ID instead of
  60. names.
  61. When in doubt, say Y.