blob: 24493ab38884a4e1f3fda14956c9b8c76d08086a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
menu "PCMCIA/CardBus support"
depends on ADK_TARGET_WITH_CARDBUS || ADK_TARGET_WITH_PCMCIA || ADK_TARGET_QEMU
config ADK_LINUX_KERNEL_CARDBUS
bool
config ADK_LINUX_KERNEL_PCMCIA_PROBE
bool
config ADK_LINUX_KERNEL_SERIAL_8250_EXTENDED
bool
config ADK_LINUX_KERNEL_SERIAL_8250_SHARE_IRQ
bool
select ADK_LINUX_KERNEL_SERIAL_8250_EXTENDED
config ADK_LINUX_KERNEL_PCMCIA_PXA2XX
bool
config ADK_LINUX_KERNEL_PCCARD
tristate "PCCARD support"
default n
config ADK_LINUX_KERNEL_PCMCIA
tristate "16-bit PCMCIA support"
depends on ADK_LINUX_KERNEL_PCCARD
select ADK_LINUX_KERNEL_FW_LOADER
select ADK_LINUX_KERNEL_CRC32
select ADK_LINUX_KERNEL_PCMCIA_PROBE
default n
config ADK_LINUX_KERNEL_YENTA
tristate "32-bit CardBus support"
depends on ADK_LINUX_KERNEL_PCCARD
depends on ADK_TARGET_WITH_CARDBUS
select ADK_LINUX_KERNEL_CARDBUS
default n
config ADK_LINUX_KERNEL_SERIAL_8250_CS
tristate "PCMCIA/CardBus serial device support"
select ADK_LINUX_KERNEL_SERIAL_8250_SHARE_IRQ
depends on ADK_LINUX_KERNEL_PCMCIA && !ADK_TARGET_QEMU
default n
endmenu
|