1if ARCH_FOOTBRIDGE 2 3menu "Footbridge Implementations" 4 5config ARCH_CATS 6 bool "CATS" 7 select CLKEVT_I8253 8 select CLKSRC_I8253 9 select FOOTBRIDGE_HOST 10 select ISA 11 select ISA_DMA 12 select PCI 13 help 14 Say Y here if you intend to run this kernel on the CATS. 15 16 Saying N will reduce the size of the Footbridge kernel. 17 18config ARCH_EBSA285_ADDIN 19 bool "EBSA285 (addin mode)" 20 select ARCH_EBSA285 21 select FOOTBRIDGE_ADDIN 22 help 23 Say Y here if you intend to run this kernel on the EBSA285 card 24 in addin mode. 25 26 Saying N will reduce the size of the Footbridge kernel. 27 28config ARCH_EBSA285_HOST 29 bool "EBSA285 (host mode)" 30 select ARCH_EBSA285 31 select FOOTBRIDGE_HOST 32 select ISA 33 select ISA_DMA 34 select ARCH_MAY_HAVE_PC_FDC 35 select PCI 36 help 37 Say Y here if you intend to run this kernel on the EBSA285 card 38 in host ("central function") mode. 39 40 Saying N will reduce the size of the Footbridge kernel. 41 42config ARCH_NETWINDER 43 bool "NetWinder" 44 select CLKEVT_I8253 45 select CLKSRC_I8253 46 select FOOTBRIDGE_HOST 47 select ISA 48 select ISA_DMA 49 select PCI 50 help 51 Say Y here if you intend to run this kernel on the Rebel.COM 52 NetWinder. Information about this machine can be found at: 53 54 <http://www.netwinder.org/> 55 56 Saying N will reduce the size of the Footbridge kernel. 57 58endmenu 59 60# Footbridge support 61config FOOTBRIDGE 62 bool 63 64# Footbridge in host mode 65config FOOTBRIDGE_HOST 66 bool 67 select ARCH_MIGHT_HAVE_PC_SERIO 68 69# Footbridge in addin mode 70config FOOTBRIDGE_ADDIN 71 bool 72 73# EBSA285 board in either host or addin mode 74config ARCH_EBSA285 75 bool 76 77endif 78