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 /drivers/eisa/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 'drivers/eisa/Kconfig')
-rw-r--r-- | drivers/eisa/Kconfig | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/drivers/eisa/Kconfig b/drivers/eisa/Kconfig new file mode 100644 index 000000000000..c0646576cf47 --- /dev/null +++ b/drivers/eisa/Kconfig | |||
@@ -0,0 +1,56 @@ | |||
1 | # | ||
2 | # EISA configuration | ||
3 | # | ||
4 | config EISA_VLB_PRIMING | ||
5 | bool "Vesa Local Bus priming" | ||
6 | depends on X86_PC && EISA | ||
7 | default n | ||
8 | ---help--- | ||
9 | Activate this option if your system contains a Vesa Local | ||
10 | Bus (VLB) card that identify itself as an EISA card (such as | ||
11 | the Adaptec AHA-284x). | ||
12 | |||
13 | When in doubt, say N. | ||
14 | |||
15 | config EISA_PCI_EISA | ||
16 | bool "Generic PCI/EISA bridge" | ||
17 | depends on !PARISC && PCI && EISA | ||
18 | default y | ||
19 | ---help--- | ||
20 | Activate this option if your system contains a PCI to EISA | ||
21 | bridge. If your system have both PCI and EISA slots, you | ||
22 | certainly need this option. | ||
23 | |||
24 | When in doubt, say Y. | ||
25 | |||
26 | # Using EISA_VIRTUAL_ROOT on something other than an Alpha or | ||
27 | # an X86_PC may lead to crashes... | ||
28 | |||
29 | config EISA_VIRTUAL_ROOT | ||
30 | bool "EISA virtual root device" | ||
31 | depends on EISA && (ALPHA || X86_PC) | ||
32 | default y | ||
33 | ---help--- | ||
34 | Activate this option if your system only have EISA bus | ||
35 | (no PCI slots). The Alpha Jensen is an example of such | ||
36 | a system. | ||
37 | |||
38 | When in doubt, say Y. | ||
39 | |||
40 | config EISA_NAMES | ||
41 | bool "EISA device name database" | ||
42 | depends on EISA | ||
43 | default y | ||
44 | ---help--- | ||
45 | By default, the kernel contains a database of all known EISA | ||
46 | device names to make the information in sysfs comprehensible | ||
47 | to the user. This database increases size of the kernel | ||
48 | image by about 40KB, but it gets freed after the system | ||
49 | boots up, so it doesn't take up kernel memory. Anyway, if | ||
50 | you are building an installation floppy or kernel for an | ||
51 | embedded system where kernel image size really matters, you | ||
52 | can disable this feature and you'll get device ID instead of | ||
53 | names. | ||
54 | |||
55 | When in doubt, say Y. | ||
56 | |||