diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/arm/mach-footbridge/Kconfig |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'arch/arm/mach-footbridge/Kconfig')
-rw-r--r-- | arch/arm/mach-footbridge/Kconfig | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/arch/arm/mach-footbridge/Kconfig b/arch/arm/mach-footbridge/Kconfig new file mode 100644 index 000000000000..1090c680b6dd --- /dev/null +++ b/arch/arm/mach-footbridge/Kconfig | |||
@@ -0,0 +1,80 @@ | |||
1 | if ARCH_FOOTBRIDGE | ||
2 | |||
3 | menu "Footbridge Implementations" | ||
4 | |||
5 | config ARCH_CATS | ||
6 | bool "CATS" | ||
7 | select FOOTBRIDGE_HOST | ||
8 | help | ||
9 | Say Y here if you intend to run this kernel on the CATS. | ||
10 | |||
11 | Saying N will reduce the size of the Footbridge kernel. | ||
12 | |||
13 | config ARCH_PERSONAL_SERVER | ||
14 | bool "Compaq Personal Server" | ||
15 | select FOOTBRIDGE_HOST | ||
16 | ---help--- | ||
17 | Say Y here if you intend to run this kernel on the Compaq | ||
18 | Personal Server. | ||
19 | |||
20 | Saying N will reduce the size of the Footbridge kernel. | ||
21 | |||
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 | |||
26 | <http://www.crl.hpl.hp.com/projects/personalserver/> | ||
27 | |||
28 | If you have any questions or comments about the Compaq Personal | ||
29 | Server, send e-mail to <skiff@crl.dec.com>. | ||
30 | |||
31 | config ARCH_EBSA285_ADDIN | ||
32 | bool "EBSA285 (addin mode)" | ||
33 | select ARCH_EBSA285 | ||
34 | select FOOTBRIDGE_ADDIN | ||
35 | help | ||
36 | Say Y here if you intend to run this kernel on the EBSA285 card | ||
37 | in addin mode. | ||
38 | |||
39 | Saying N will reduce the size of the Footbridge kernel. | ||
40 | |||
41 | config ARCH_EBSA285_HOST | ||
42 | bool "EBSA285 (host mode)" | ||
43 | select ARCH_EBSA285 | ||
44 | select FOOTBRIDGE_HOST | ||
45 | help | ||
46 | Say Y here if you intend to run this kernel on the EBSA285 card | ||
47 | in host ("central function") mode. | ||
48 | |||
49 | Saying N will reduce the size of the Footbridge kernel. | ||
50 | |||
51 | config ARCH_NETWINDER | ||
52 | bool "NetWinder" | ||
53 | select FOOTBRIDGE_HOST | ||
54 | help | ||
55 | Say Y here if you intend to run this kernel on the Rebel.COM | ||
56 | NetWinder. Information about this machine can be found at: | ||
57 | |||
58 | <http://www.netwinder.org/> | ||
59 | |||
60 | Saying N will reduce the size of the Footbridge kernel. | ||
61 | |||
62 | endmenu | ||
63 | |||
64 | # Footbridge support | ||
65 | config FOOTBRIDGE | ||
66 | bool | ||
67 | |||
68 | # Footbridge in host mode | ||
69 | config FOOTBRIDGE_HOST | ||
70 | bool | ||
71 | |||
72 | # Footbridge in addin mode | ||
73 | config FOOTBRIDGE_ADDIN | ||
74 | bool | ||
75 | |||
76 | # EBSA285 board in either host or addin mode | ||
77 | config ARCH_EBSA285 | ||
78 | bool | ||
79 | |||
80 | endif | ||