Kconfig 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 PCI
  45. help
  46. Say Y here if you intend to run this kernel on the EBSA285 card
  47. in host ("central function") mode.
  48. Saying N will reduce the size of the Footbridge kernel.
  49. config ARCH_NETWINDER
  50. bool "NetWinder"
  51. select CLKEVT_I8253
  52. select CLKSRC_I8253
  53. select FOOTBRIDGE_HOST
  54. select ISA
  55. select ISA_DMA
  56. select PCI
  57. help
  58. Say Y here if you intend to run this kernel on the Rebel.COM
  59. NetWinder. Information about this machine can be found at:
  60. <http://www.netwinder.org/>
  61. Saying N will reduce the size of the Footbridge kernel.
  62. endmenu
  63. # Footbridge support
  64. config FOOTBRIDGE
  65. bool
  66. # Footbridge in host mode
  67. config FOOTBRIDGE_HOST
  68. bool
  69. # Footbridge in addin mode
  70. config FOOTBRIDGE_ADDIN
  71. bool
  72. # EBSA285 board in either host or addin mode
  73. config ARCH_EBSA285
  74. select ARCH_MAY_HAVE_PC_FDC
  75. bool
  76. endif