Kconfig.bus 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. if MMU
  2. comment "Bus Support"
  3. config DIO
  4. bool "DIO bus support"
  5. depends on HP300
  6. default y
  7. help
  8. Say Y here to enable support for the "DIO" expansion bus used in
  9. HP300 machines. If you are using such a system you almost certainly
  10. want this.
  11. config NUBUS
  12. bool
  13. depends on MAC
  14. default y
  15. config ZORRO
  16. bool "Amiga Zorro (AutoConfig) bus support"
  17. depends on AMIGA
  18. help
  19. This enables support for the Zorro bus in the Amiga. If you have
  20. expansion cards in your Amiga that conform to the Amiga
  21. AutoConfig(tm) specification, say Y, otherwise N. Note that even
  22. expansion cards that do not fit in the Zorro slots but fit in e.g.
  23. the CPU slot may fall in this category, so you have to say Y to let
  24. Linux use these.
  25. config AMIGA_PCMCIA
  26. bool "Amiga 1200/600 PCMCIA support (EXPERIMENTAL)"
  27. depends on AMIGA && EXPERIMENTAL
  28. help
  29. Include support in the kernel for pcmcia on Amiga 1200 and Amiga
  30. 600. If you intend to use pcmcia cards say Y; otherwise say N.
  31. config ISA
  32. bool
  33. depends on Q40 || AMIGA_PCMCIA
  34. default y
  35. help
  36. Find out whether you have ISA slots on your motherboard. ISA is the
  37. name of a bus system, i.e. the way the CPU talks to the other stuff
  38. inside your box. Other bus systems are PCI, EISA, MicroChannel
  39. (MCA) or VESA. ISA is an older system, now being displaced by PCI;
  40. newer boards don't support it. If you have ISA, say Y, otherwise N.
  41. config GENERIC_ISA_DMA
  42. def_bool ISA
  43. source "drivers/pci/Kconfig"
  44. source "drivers/zorro/Kconfig"
  45. endif
  46. if !MMU
  47. config ISA_DMA_API
  48. def_bool !M5272
  49. source "drivers/pcmcia/Kconfig"
  50. endif