Kconfig.bus 1.4 KB

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