Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. if ARCH_FOOTBRIDGE
  2. menu "Footbridge Implementations"
  3. config ARCH_CATS
  4. bool "CATS"
  5. select FOOTBRIDGE_HOST
  6. select ISA
  7. select ISA_DMA
  8. select PCI
  9. help
  10. Say Y here if you intend to run this kernel on the CATS.
  11. Saying N will reduce the size of the Footbridge kernel.
  12. config ARCH_PERSONAL_SERVER
  13. bool "Compaq Personal Server"
  14. select FOOTBRIDGE_HOST
  15. select ISA
  16. select ISA_DMA
  17. select PCI
  18. ---help---
  19. Say Y here if you intend to run this kernel on the Compaq
  20. Personal Server.
  21. Saying N will reduce the size of the Footbridge kernel.
  22. The Compaq Personal Server is not available for purchase.
  23. There are no product plans beyond the current research
  24. prototypes at this time. Information is available at:
  25. <http://www.crl.hpl.hp.com/projects/personalserver/>
  26. If you have any questions or comments about the Compaq Personal
  27. Server, send e-mail to <skiff@crl.dec.com>.
  28. config ARCH_EBSA285_ADDIN
  29. bool "EBSA285 (addin mode)"
  30. select ARCH_EBSA285
  31. select FOOTBRIDGE_ADDIN
  32. help
  33. Say Y here if you intend to run this kernel on the EBSA285 card
  34. in addin mode.
  35. Saying N will reduce the size of the Footbridge kernel.
  36. config ARCH_EBSA285_HOST
  37. bool "EBSA285 (host mode)"
  38. select ARCH_EBSA285
  39. select FOOTBRIDGE_HOST
  40. select ISA
  41. select ISA_DMA
  42. select PCI
  43. help
  44. Say Y here if you intend to run this kernel on the EBSA285 card
  45. in host ("central function") mode.
  46. Saying N will reduce the size of the Footbridge kernel.
  47. config ARCH_NETWINDER
  48. bool "NetWinder"
  49. select FOOTBRIDGE_HOST
  50. select ISA
  51. select ISA_DMA
  52. select PCI
  53. help
  54. Say Y here if you intend to run this kernel on the Rebel.COM
  55. NetWinder. Information about this machine can be found at:
  56. <http://www.netwinder.org/>
  57. Saying N will reduce the size of the Footbridge kernel.
  58. endmenu
  59. # Footbridge support
  60. config FOOTBRIDGE
  61. bool
  62. # Footbridge in host mode
  63. config FOOTBRIDGE_HOST
  64. bool
  65. # Footbridge in addin mode
  66. config FOOTBRIDGE_ADDIN
  67. bool
  68. # EBSA285 board in either host or addin mode
  69. config ARCH_EBSA285
  70. select ARCH_MAY_HAVE_PC_FDC
  71. bool
  72. endif