Kconfig (4b4193256c8d3bc3a5397b5cd9494c2ad386317d) | Kconfig (f81f335a56a8e90d5cac38b79661e6fbf35249f1) |
---|---|
1# SPDX-License-Identifier: GPL-2.0-only 2# 3# EISA configuration 4# 5 6config HAVE_EISA 7 bool 8 --- 30 unchanged lines hidden (view full) --- 39 default y 40 help 41 Activate this option if your system contains a PCI to EISA 42 bridge. If your system have both PCI and EISA slots, you 43 certainly need this option. 44 45 When in doubt, say Y. 46 | 1# SPDX-License-Identifier: GPL-2.0-only 2# 3# EISA configuration 4# 5 6config HAVE_EISA 7 bool 8 --- 30 unchanged lines hidden (view full) --- 39 default y 40 help 41 Activate this option if your system contains a PCI to EISA 42 bridge. If your system have both PCI and EISA slots, you 43 certainly need this option. 44 45 When in doubt, say Y. 46 |
47# Using EISA_VIRTUAL_ROOT on something other than an Alpha or 48# an X86 may lead to crashes... | 47# Using EISA_VIRTUAL_ROOT on something other than an X86 may lead 48# to crashes... |
49 50config EISA_VIRTUAL_ROOT 51 bool "EISA virtual root device" | 49 50config EISA_VIRTUAL_ROOT 51 bool "EISA virtual root device" |
52 depends on EISA && (ALPHA || X86) | 52 depends on EISA && X86 |
53 default y 54 help 55 Activate this option if your system only have EISA bus | 53 default y 54 help 55 Activate this option if your system only have EISA bus |
56 (no PCI slots). The Alpha Jensen is an example of such 57 a system. | 56 (no PCI slots). |
58 59 When in doubt, say Y. 60 61config EISA_NAMES 62 bool "EISA device name database" 63 depends on EISA 64 default y 65 help 66 By default, the kernel contains a database of all known EISA 67 device names to make the information in sysfs comprehensible 68 to the user. This database increases size of the kernel 69 image by about 40KB, but it gets freed after the system 70 boots up, so it doesn't take up kernel memory. Anyway, if 71 you are building an installation floppy or kernel for an 72 embedded system where kernel image size really matters, you 73 can disable this feature and you'll get device ID instead of 74 names. 75 76 When in doubt, say Y. | 57 58 When in doubt, say Y. 59 60config EISA_NAMES 61 bool "EISA device name database" 62 depends on EISA 63 default y 64 help 65 By default, the kernel contains a database of all known EISA 66 device names to make the information in sysfs comprehensible 67 to the user. This database increases size of the kernel 68 image by about 40KB, but it gets freed after the system 69 boots up, so it doesn't take up kernel memory. Anyway, if 70 you are building an installation floppy or kernel for an 71 embedded system where kernel image size really matters, you 72 can disable this feature and you'll get device ID instead of 73 names. 74 75 When in doubt, say Y. |