blob: 8a6072b2f7297038d9a0737e29b729eb520eb57f (
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
|
###############################################################################
# Device driver definitions for AVM cards (CAPI) #
# Please read "man 5 pcmcia" for detailed informations. #
###############################################################################
# needs net-dialup/fritzcapi
device "fcpcmcia_cs"
class "capi" module "fcpcmcia_cs"
# active controller, driver included in kernel
device "avm_cs"
class "capi" module "avm_cs"
# class "capi" module "b1pcmcia" module "avm_cs"
# class "capi" module "avm_cs" opts "irq_list=15,12,11,10,9,7"
###############################################################################
# Card definitions #
###############################################################################
card "AVM ISDN-Controller A1"
version "AVM", "ISDN A"
bind "fcpcmcia_cs"
card "AVM ISDN-Controller B1"
version "AVM", "ISDN-Controller B1"
bind "avm_cs"
card "AVM Mobile ISDN-Controller M1"
version "AVM", "Mobile ISDN-Controller M1"
bind "avm_cs"
card "AVM Mobile ISDN-Controller M2"
version "AVM", "Mobile ISDN-Controller M2"
bind "avm_cs"
|