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