Kconfig 2.1 KB

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