aboutsummaryrefslogtreecommitdiff
path: root/etc/defaults/pccard.conf
blob: 1e3907d5216b536c6cadb0347c203269c686a396 (plain) (blame)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
#
# Default PCCARD configuration file
#
# $FreeBSD$
#
# Please send new entries for this file to imp@freebsd.org.  He likes to
# review them before they are committed to make sure they are correct for
# the style of the file.  Please attempt to use "auto" for the config
# number whereever possible.  Do not commit IRQs in the "config" lines.
# Make sure that you use tabs rather than multiple spaces for new entires
# like the old ones.  <tab>keyword<tab>arguments.
#
# Removing all IRQ conflicts from this file can't be done because of some
# IRQ-selfish PC-cards.  So if you want to use some of those cards in
# your machine, you may need to modify the IRQ list below.  Please put
# such overrides in /etc/pccard.conf.  You can also place override
# card entries in /etc/pccard.conf, since the first match is the one that
# pccardd will use to configure the card.
#

# Generally available IO ports
io	0x240-0x360
# on i386 IRQs can be any of 3 4 5 7 9 10 11 12 14 15
# on pc98 IRQs can be any of 3 5 6 9 10 11 12 13
# but *MUST* *NOT* be used by anything else, unless you are using current
# and a PCI cardbus bridge that allows sharing.  Even then, the rules
# for interrupt sharing can be tricky.
# Generally available IRQs (Built-in sound-card owners remove 5)
irq	3 5 10 11 15
# Available memory slots
memory	0xd4000  96k
# Debug level, so you know how to get more info for maintainers.  Put it
# in /etc/pccard.conf
#debuglevel 4

# Include user configration file
# This allow you to override or add configurations.
include /etc/pccard.conf

#
# PLEASE KEEP THIS FILE IN ORDER
#
# In order is defined as follows.  We sort first by driver type (an, ed, etc)
# and then by CIS strings.  Do not commit to this file entries out of
# order.
#

########## aic ##########

# Adaptec SlimSCSI (also included with Sony CD-ROM players)
card "Adaptec, Inc." "/APA-1460 .*/"
	config	0x9 "aic" ?
	insert	camcontrol rescan all

# NewMedia Bustoaster SCSI
card "New Media" "SCSI"
	config	0x22 "aic" ?
	insert	camcontrol rescan all

########## an ##########

# Aironet PC4500 2Mbps 802.11 wireless NIC
card "Aironet" "PC4500"
	config	0x5 "an" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Aironet PC4800 11Mbps 802.11 wireless NIC
card "Aironet" "PC4800"
	config	0x5 "an" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Aironet 340 Series 11Mbps 802.11 wireless NIC
card "Cisco Systems" "340 Series Wireless LAN Adapter"
	config	auto "an" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Aironet 350 Series 11Mbps 802.11 wireless NIC
card "Cisco Systems" "350 Series Wireless LAN Adapter"
	config	auto "an" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Xircom sells a rebaded unit
card "Xircom" "Wireless Ethernet Adapter"
	config	0x5 "an" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

########## ata ##########

# Sony VAIO cdrom, Ninja-ATA CD-ROM Drive, MELCO CDN-D12EX
card " " "NinjaATA-"
	config	auto "ata" ?
	logstr	"NinjaATA"

# Non-brand Compact Flash Card(32MB)
card "       " "KCF 32M"
	config	0x1 "ata" ? iosize 16
	logstr	"Compact Flash Card 32M"

# pc-card from ARCHOS CD-224E cdrom
card "ARC" "ATAPI"
	config  auto "ata" ?

# Caravelle PSC-IDE 6x ATAPI CD-ROM
card "Caravelle" "/PSC-IDE */"
	config	0x2a "ata" ? # 0x1 (flags for wd, not sure for ata)

# <Vendor Unknown> MCD-601p 6x CD-ROM drive.
card "CDROM" "IDE"
	config	auto "ata" ?
	logstr	"MCD-601p"

# Lexar Media compact flash
card "/CL ATA FLASH CARD LEXAR */" "TIDALWV"
#   auto does not work
	config 0x1 "ata" ?

# CNF CD-M
card "CNF CD-M" "CD-ROM"
	config	auto "ata" ?
	logstr	"CNF CD-M"

# DATAFAB PCMMD2
card "DATAFAB" "PCMCIA-TO-IDE"
	config	0x1 "ata" ?

# DHU Mobile Media CD-ROM
# (no hotplug support)
card "Digital Equipment Corporation." "Digital Mobile Media CD-ROM"
	config	auto "ata" ?

# EXP DVD-780 DVD-ROM drive
card "/EXP */" "PnPIDE"
	config	auto "ata" ?

# Toshiba mobile CD-ROM (Bundled with Portege 3110CT)
card "FREECOM" "PCCARD-IDE"
	config	auto "ata" ? iosize 16

# FUJITSU FlashDiskCard ZEBO-ATA40
card "FUJITSU" "ZEBO-ATA"
	config	0x03 "ata" ?

# Greystone Diskdock
card "GREYSTONE PERIPHERAL DISKDOCK" "/.*/"
	config	default "ata" ?

# HAGIWARA FLASH
card "HAGIWARA" "FLASH"
	config	default "ata" ?

# Hitachi Flash ATA
card "HITACHI" "/.*FLASH.*/"
	config	0x01 "ata" ? iosize 16

# IBM Flash ATA (Ricoh Flash ATA 10MB)
card "IBM" "IBM17JSSFP10"
	config	auto "ata" ? iosize 16

# IBM IDE PC-CARD CDROM (ThinkPad 240 and others)
card "PCMCIA" "IDE CARD"
    config auto "ata" ?

# IBM Portable 4X Speed CD-ROM Drive CD-400
#card "IBM" "PCMCIA CD-ROM Drive CD-400"
#	config	0x1 "ata" ? iosize 0x20 # 0x10000 (flags for wd, not sure for ata)

# IBM CD-20XSeries(IDE PC Card)
card "IBM" "PCMCIA Portable CD-ROM Drive"
	config	auto "ata" ? iosize 0x1

# IBM Microdrive (CF+ Type II)
card "IBM" "microdrive"
#	config	0x03 "ata" ?
	config	0x01 "ata" ? iosize 16

# Integral Peripherals Viper HDD Series
card "INTEGRAL PERIPHERALS" "ATA CARD"
#	config	default "ata" ?
	config	0x01 "ata" ? iosize 16

# IO DATA PCMF144/20 (as Flash ATA only)
card "IO DATA" "ATA&MODEM"
	config	0x7 "ata" ?
#	config	auto "sio" ?

# IO DATA CBIDE2 in 16 bit mode
# (bundled with IO DATA CDP-AX24T, Panasonic DVD-ROM LK-RV8171D)
card "IO DATA" "/CBIDE2 */"
	config	default "ata" ?

# IO Data PCIDE-II (bundled with CDP-TX6, etc.)
card "IO DATA" "PCIDEII"
	config	auto "ata" ?

# Iomega Zip Drive
card "Iomega" "PCMCIA to 16 bit ATAPI Adapter"
	config	0x2 "ata" ?

# KODAK Picture Card
card "KODAK Picture Card" "KODAK"
	config	default "ata" ?

# Panasonic KXL-CB10AN (CD-R/RW/DVD)
card "KME" "KXLC006"
	config	auto "ata" ?

# TOSHIBA Portable 24X Speed CD-ROM Drive PA2673UJ
card "LOOKMEET" "/CBIDE2 */"
	config	default "ata" ?

# Maxtor ATA HDD
card "Maxtor" "/MXL.*/"
	config	0x03 "ata" ?

# Microtech XpressDock
card "Microtech International Inc." "IDE PCCARD"
	config	auto "ata" ? 0x20000 iosize 16

# Midori Elec. Flash ATA
card "Midori Elec." "/.*FLASH.*/"
	config	0x03 "ata" ?

# Panasonic Flash ATA BN-040ABP3
card "Panasonic" "ATA" "/BN-040AB-M */"
#   auto does not work
	config	0x1 "ata" ?
	logstr	"Panasonic Flash ATA BN-040ABP3"

# LK-RM120
card "Panasonic" "LMEK0406"
	config	0x22 "ata" ? 0x1

# Another boring, generic ata atapter
card "PC CARD MANUFACTURER" "PCMCIA ATA/ATAPI Adapter"
	config	auto "ata" ?

# pc-card from PSCD-740 cdrom
card "PCMCIA" "CD-ROM"
	config	0x1 "ata" ?

# Novac DVD/CD Station 
card "PCMCIA" "PnPIDE"
	config	auto "ata" ?

# Shining PMIDE-ASC CDROM / Road Warrior Bullet Disk
card "Shining" "PMIDE-ASC"
	config	auto "ata" ? 0x20000

# Microtech PortableDRIVE25/PCMCIA
card "SHUTTLE TECHNOLOGY LTD." "PCCARD-IDE/ATAPI Adapter"
	config	auto "ata" ? 0x20000

# XXX NOT SURE SUPPORTED
#  CitiDISK & Addonics PocketZIP
#card "Shining" "PMIDE-ASC"
#	config	default "ata" ? # 0x20000 (flags for wd, not sure for ata)

# Sicon Peripheral PCMCIA ATA/ATAPI Adapter
card "Sicon  Peripheral" "PCMCIA ATA/ATAPI Adapter"
	config	default "ata" ?

# SiliconTech,Inc. Compact PC Card
card "SiliconTech,Inc." "/[0-9]+MB Compact PC Card/"
	config	0x1 "ata" ?

# Simple Technology ata flash
card "/Simple Technology */" "STI-ATA"
	config	auto "ata" ?

# SONY Memory Stick PC Card Adaptor
card "SONY" "/MEMORYSTICK.*/"
	config	0x01 "ata" ?
	iosize	16

# SunDisk Flash ATA
# (OEM: Epson Flash Packer)
card "SunDisk" "/.*/"
	config	0x1 "ata" ?

# T-POWER Flash ATA
card "/T-POWER */" "/.*/"
	config	0x1 "ata" ?

# TDK Flash ATA
card "TDK TC_H." "/.*/"
	config	0x1 "ata" ?

# IO Data CBIDE (bundled with CDP-FX24, etc.)
card "WIT" "IDE16"
	config	auto "ata" ?

# LIP-32B attached to Logitec LCW-PD648PI
card "WORKBIT" "ATA-32Bi(16)"
	config	default "ata" ?

# Viking ATA Flash card
card "/VIKING ATA/CF FLASH CARD */" "/TOR/AM */"
	config	0x2 "ata" ?
	
########## awi ##########

# Generic AMD Am79c930 based card
# Melco WLI-PCM
card "AMD" "Am79C930"
	config	0x1 "awi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Bay Networks Baystack 650 Wireless LAN
card "Bay Networks" "BayStack 650 Wireless LAN"
	config	0x1 "awi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Bay Networks Baystack 660 Wireless LAN
card "Bay Networks" "BayStack 660 Wireless LAN"
	config	auto "awi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Farallon SkyLINE Wireless
card "Farallon" "SkyLINE Wireless"
	config	auto "awi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# ICom SL-200
card "Icom" "SL-200"
	config	auto "awi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Teletronics WL2000D 2Mbps wireless card
# Might not be right, reports are that it reports ether of 0:0:0:0:0:0
card "OEM" "WLAN/WPMCIA"
	config	auto "awi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# ZoomAir 4000
card "Zoom" "Air-4000"
	config	auto "awi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

########## cnw ##########

# NetWave AirSurfer
# NOTE: For some machines, wait cycle for memory access is required.
# you should change "0x40" on the last part of "cardmem" line to "0x44",
# like:
#	cardmem	0xd4000 0x20000 0x9000 0x44
# IBM ThinkPads are known to require this change.
# Xircom CreditCard Netwave
card "Xircom" "CreditCard Netwave"
	config	0x01 "cnw" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

########## cs ##########

# NOTE: This likely doesn't work, but might.
# IBM EtherJet PC Card 16bit version
card "IBM" "EtherJet PC Card"
        config  auto "cs" ?
        insert  /etc/pccard_ether $device start
        remove  /etc/pccard_ether $device stop

########## ed ##########

# No-brand NE2000 compatible card (FCC ID: LXLC1LANTB)
card "     " "Ethernet Combo card"
	config	auto "ed" ? 0x10
	logstr	"NE2000 compatible card"
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Map Japan MPL-972
card "2408LAN" "Ethernet"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Accton EN2212
# Very slow!  (PIO mode)
card "ACCTON" "EN2212"
	config	auto "ed" ? 0x30
	ether	0xff0 # 00:00:e8
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Accton EN2216
card "ACCTON" "EN2216-PCMCIA-ETHERNET"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Allied Telesis CentreCOM LA-PCM
card "Allied Telesis,K.K" "Ethernet LAN Card"
	config	default "ed" ? 0x10
	ether	0xff0 # 00:00:f4
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Allied Telesis CentreCOM LA-PCM_V2 ethernet card
# NTT-DATA ASTROWINK-M/MMOIL(IrLAN) ethernet card
card "Allied Telesis, K.K." "CentreCOM LA-PCM_V2"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Allied Telesis CentreCOM LA100-PCM-T V2
card "Allied Telesis, K.K." "CentreCOM LA100-PCM-T V2 100/10M LAN PC Card"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Allied Telesis CentreCOM LA-PCM V3
card "Allied Telesis K.K." "LA-PCM V3"
	config	auto "ed" ? 0x10
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# AmbiCom 10BaseT card
card "AmbiCom Inc" "AMB8002T"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Belkin F5D5020
card "Belkin" "F5D5020-PCMCIA-Network-Card"
	config	auto "ed" ? 0x10
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Billionton LNA-100B
card "Billionton" "LNA-100B"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Billionton LNT-10TB
card "Billionton" "LNT-10TB"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Billionton LNT-10TN
card "Billionton" "LNT-10TN"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# BUFFALO LPC-CF-CLT
card "BUFFALO" "LPC-CF-CLT"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# BUFFALO LPC2-CLT
card "BUFFALO" "LPC2-CLT"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# BUFFALO LPC3-CLT
card "BUFFALO" "LPC3-CLT"
	config	auto "ed" ? 0x30000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# BUFFALO LPC3-CLX
card "BUFFALO" "LPC3-CLX"
	config	auto "ed" ? 0x30000
	ether	0x1c8
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# CNet BC40 adapter
card "CNet" "CN40BC Ethernet"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# COREGA FEther PCC-TXF
card "corega" "FEther PCC-TXF"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# COREGA Ether PCC-T and COREGA EtherII PCC-T
card "corega K.K." "/corega Ether(II)? PCC-T/"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# COREGA FastEther PCC-TX
card "corega K.K." "corega FastEther PCC-TX"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# COREGA FEther PCC-TXD
card "corega K.K." "corega FEther PCC-TXD"
	config	auto "ed" ? 0x30000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Corega PCM-T
card "Corega,K.K." "Ethernet LAN Card"
	config	auto "ed" ?
	ether	0xff0 # 00:00:f4
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Surecome EP-427X PCMCIA ethernet
card "CouplerlessPCMCIA" "100BASE"
	config	auto "ed" ? 0x30000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# CyQ've ELA-010
card "CyQ've" "ELA-010"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# CyQ've ELA-110 and ELA-110E
card "CyQ've" "/ELA-110E? 10/100M LAN Card/"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# D-Link DE-650 and DE-660
card "D-Link" "/DE-6[56]0/"
	config	auto "ed" ? 0x10
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# D-Link DFE-650 Fast Ethernet Card
card "D-Link" "DFE-650"
	config	auto "ed" ? 0x80010
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# D-Link DFE-670 Fast Ethernet Card
card "D-Link" "DFE-670TXD"
	config	auto "ed" ? 0x80010
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# D-Link DME-560T LAN/FAX/MODEM Card (as Ethernet)
card "D-Link" "DME560T"
	config	default "ed" ?
#	config	auto "sio" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Danpex (Alloy, etc.) EN-6200P2
card "DANPEX" "EN-6200P2"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Dayna Communications CommuniCard E
card "Dayna Communications, Inc." "CommuniCard E"
	config	auto "ed" ? 0x10
	ether	0x110 # 00:80:19
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Digital DEPCM-BA Ethernet
card "DIGITAL" "DEPCM-XX"
	config	auto "ed" ? 0x10
	ether	0xff0 # 00:00:e8
#	ether	0x1c0 # 00:00:e8 -- seen on a rev. C01 card
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Planex FNW-3600-T and FNW-3600-TX DirectDock (second model)
card "Dual Speed" "/10/100( Port Attached)? PC Card/"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Dynalink L100C16
card "Dynalink" "L100C16"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device
	remove	/etc/pccard_ether $device stop

# Linksys Combo PCMCIA Ethernet Card
card "E-CARD" "E-CARD" 
	config	auto "ed" ? 
	logstr	"Linksys Combo Ethernet Card"
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Eiger Labs Ethernet COMBO
card "EIGER Labs Inc." "Ethernet COMBO Card"
	config	auto "ed" ? 0x10
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# XXX	Compex Net-A adapter, Telecom SuperSocket RE450T,
# 	Apollo PCMCIA Ethernet Adapter, PLANEX ENW-3503-T and
#	Fiber line 10M Ethernet COMBO have same manufacturer and
#	card version string.  They should be distinguished by 
#	other info. (such as additional information or OEM-ID/product-ID).

# Note: There are several revisions of the card on the market.
#	Type A needs no "ether" line.
#	Type B needs "ether 0x110" line.
#	Type C needs "ether 0xff0" line.
#	Yet more revisions exist, reportedly.
#	If you see strange MAC address shown by ifconfig command,
#	try other config.
card "Ethernet" "Adapter"
	config	auto "ed" ?
#	ether	0x110 # 00:e0:98
	ether	0xff0 # 00:e0:98
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# pci Ethernet Adapter Card
card "Ethernet" "CF Size PC Card"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# "Ethernet Adapter" "E2000 PCMCIA Ethernet"
card "Ethernet Adapter" "E2000 PCMCIA Ethernet"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# ADDTRON EP-210A
card "EP-210 PCMCIA LAN CARD." "/.*/"
	config	auto "ed" ? 0x10
	ether	0x110 # 00:40:33
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Planex FNW-3700-T Fast Ethernet
card "Fast Ethernet" "16-bit PC Card"
	config	auto "ed" ? 0x30000
	logstr	"Planex FNW-3700-T"
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Planex FNW-3600-T 16bit Fast Ethernet (old model)
card "Fast Ethernet" "Adapter"
	config	auto "ed" ? 0x80000
	logstr	"Planex FNW-3600-T"
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# TDK Grey Cell GCS2000 and GCS2220
card "Grey Cell" "/GCS2(00|22)0/"
	config	auto "ed" ? 0x10
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# GVC NIC-2000P Ethernet Card
card "GVC" "NIC-2000p"
	config	auto "ed" ? 0x10
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# IBM PCMCIA Ethernet I/II, RIOS PC CARD II ETHERNET
card "IBM Corp." "Ethernet"
	config	auto "ed" ?
	ether	0xff0	# 08:00:5a 00:04:ac 00:06:29
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# AR-P500 ethernet card, Planet Communications Smart COM 3500 same as
# model ENW-3500 and ENW-3501-T, IC-CARD Ethernet, SYSCOM SC100 Ethernet Card
# ELECOM Laneed LD-CDY, IC-CARD+ Ethernet card
card "/^IC-CARD\+?$/" "/^IC-CARD\+?$/"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# I/O DATA PCLA/T
card "I-O DATA" "PCLA"
	config	auto "ed" ? 0x10
#	ether	0x1c0 # 00:a0:b0
	ether	0xff0 # 00:a0:b0
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# I/O DATA PCET10-CL
card "IO DATA" "PCET10CL"
	config	auto "ed0" ? 0x10
	insert	/etc/pccard_ether $device
	remove	/etc/pccard_ether_remove $device

# I-O DATA PCET/100-CL
card "IO DATA" "PCET100CL"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# I-O DATA PCET/TX
card "IO DATA" "PCETTX"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# I-O DATA PCET/TX-R
card "IO DATA" "PCETTXR"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# I-O DATA PCLA/TE
card "IO DATA" "PCLATE"
	config	auto "ed" ? 0x10
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# KANSAI ELECTRIC KLA-PCM/T
card "KANSAI ELECTRIC CO.,LTD" "KLA-PCM/T"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Kingston KNE-PC2
card "Kingston" "KNE-PC2"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Kingston KNE-PCM/x Ethernet
card "Kingston Technology Corp." "/EtheRx PC Card Ethernet.*/"
	config	auto "ed" ?
	ether	0xff0 # 00:c0:f0
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# ELECOM Laneed LD-10/100CD
card "Laneed" "LD-10/100CD"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# ELECOM Laneed LD-CDF, LD-CDS
card "Laneed" "/LD-CD[FS]/"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# ELECOM Laneed LD-CDL/TX
card "Laneed" "LD-CDL/TX"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Linksys Combo PCMCIA EthernetCard (model EC2T on box) 
card "Linksys" "Combo PCMCIA EthernetCard (EC2T)"
	config	auto "ed" ? 
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Linksys Combo PCMCIA Ethernet Card
card "LINKSYS" "E-CARD"
	config	auto "ed" ? 0x10
	logstr	"Linksys Combo Ethernet Card"
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Linksys PCMLM56
# Not currently working for me, but others say it does.
card "Linksys" "EtherFast 10&100 + 56K PC Card (PCMLM56)"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Linksys EtherFast 10/100 Intergrated PC Card (PCM100)
card "Linksys" "EtherFast 10/100 Integrated PC Card (PCM100)"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Linksys EtherFast 10/100 PC Card (PCMPC100), model V2 and V3
card "Linksys" "/Ether[Ff]ast 10/100 PC Card \(PCMPC100.*\)/"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Logitec LPM-LN100TX 100BASE-TX Ethernet LAN CARD
card "Logitec" "LPM-LN100TX"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Logitec LPM-LN20T
card "Logitec" "LPM-LN20T"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Socket LP-E (WinCE Low Power Ethernet)
card "Low Power Ethernet LAN Adapter" "Socket Communications, Inc"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# ELECOM Laneed LD-CDWA (DP83902A), MACNICA Ethernet ME1 for JEIDA
card "MACNICA" "ME1-JEIDA"
	config	auto "ed" ?
	ether	0xb8 # 08:00:42
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Matsushita Electric Industrial Co.,LTD. CF-VEL211P-B
card "Matsushita Electric Industrial Co.,LTD." "CF-VEL211"
	config	auto "ed" ?
	ether	0xff0 # 00:80:45
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# MELCO LPC2-T
card "MELCO" "LPC2-T"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# MELCO LPC2-TX
card "MELCO" "LPC2-TX"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# MELCO LPC3-TX
card "MELCO" "LPC3-TX"
	config	auto "ed" ? 0x30000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# National Semiconductor InfoMover 4100 and NE4100
card "National Semiconductor" "/InfoMover (NE)?4100/"
	config	auto "ed" ?
	ether	0xff0 # 08:00:17
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# NDC Ethernet Instant-Link NE2000 clone
card "NDC" "Ethernet"
	config	auto "ed" ? 0x30
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Addtron NE-2000 compatible NIC
card "NE2000 Compatible PC Card" "PCMCIA"
	config	auto "ed" ? 0x10
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# NEC PC-9801N-J12
card "NEC" "PC-9801N-J12"
	config	auto "ed" ?
	ether	0xff0 # 00:00:4c
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# BayNetworks NETGEAR FA410TXC Fast Ethernet
card "NETGEAR" "FA410TX"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# BayNetworks NETGEAR FA411 Fast Ethernet
card "NETGEAR" "FA411"
	config	auto "ed" ? 0x30000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Network Everywhere Ethernet 10BaseT PC Card
card "Network Everywhere" "Ethernet 10BaseT PC Card"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Network Everywhere Ethernet Fast Ethernet 10/100 PC Card
card "Network Everywhere" "Fast Ethernet 10/100 PC Card"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# New Media Corporation LiveWire 10/100
card "New Media Corporation" "LiveWire 10/100"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# NextCom Next Hawk Etherneet Adapter
card "NextCom K.K." "Next Hawk"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Nihon Unisys, Ltd. JPF0400-ETH and JPF0400-LAN
card "Nihon Unisys, Ltd." "/JPF0400-(ETH|LAN)/"
	config	auto "ed" ?
	ether	0xff0 # 00:80:45
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Nortel Networks BayStack 22 Ethernet 10/100 PC Card
card "Nortel" "BAYSTACK22-PCMCIA-ETHERNET"
	config	auto "ed" ? 0x30000
	ether	0x1c8
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Longshine LCS-8534TB
card "PCMCIA" "/^Ethernet$/"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# No-brand NE-2000 compatible card
card "PCMCIA" "ETHERNET V1.0"
	config	auto "ed" ? 0x10
	ether	0xff0
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Telecom Device SuperSocket HPC100
card "PCMCIA" "FastEthernet"
	config	auto "ed" ? 0x30000
	logstr	"Telecom Device SuperSocket HPC100"
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Billionton 10Base-TX ETHERNET PCCARD (aka UE2216)
# Also Genuius "Ethernet ME3000II SE"
card "PCMCIA" "PCMCIA-ETHERNET-CARD"
	config	auto "ed" ? 0x10
	logstr	"UE2216"
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Planet Smart COM 2000, Melco LPC-T
card "PCMCIA" "UE2212"
	config	auto "ed" ? 0x10
	ether	0xff0 # 00:00:e8
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# GVC 10Mbps Ethernet Card
card "PCMCIA" "Ethernet Card"
	config	auto "ed" ?
	logstr	"Generic PCMCIA Ethernet Card" 
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Billionton LM5LT-10N
# Works as an Ethernet card
card "PCMCIA 10+56Combo" "LM5LT-10N"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# EXPsys PCMCIA Ethernet Combo, Relia PCMCIA Ethernet
card "PCMCIA LAN" "Ethernet"
	config	auto "ed" ?
	logstr	"EXPsys Ethernet"
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# LinkMates LM 336 LAN Fax/Modem PC Card (as Ethernet only)
card "PCMCIAs" "ComboCard"
	config	0x24 "ed" ? 0x10
#	config	auto "sio" ?
	logstr	"LinkMates LM 336"
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Telecom Device SuperSocket LM336 (as Ethernet only)
card "PCMCIAs" "LanModem"
	config	default "ed" ?
#	config	auto "sio" ?
	logstr	"SuperSocket LM336"
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# PreMax PE-200 Ethernet Card
card "/PMX */" "PE-200"
	config	auto "ed" ? 0x10
	ether	0x7f0 # 00:20:e0
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Psion Dacom Gold Card Ethernet
card "Psion Dacom" "Gold Card Ethernet"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Psion Dacom Gold Card V34 Ethernet GSM
# as ethernet
card "Psion Dacom" "Gold Card V34 Ethernet GSM"
	config	auto "ed" ?
#	config	auto "sio" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# RIOS PC CARD3 ETHERNET
card "RIOS Systems Co." "PC CARD3 ETHERNET"
	config	auto "ed" ?
	ether	0xff0 # 00:00:48
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# RPTI EP401 Ethernet card
card "RPTI" "EP401 Ethernet NE2000 Compatible"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# SCM Ethernet Combo (*Not SMC :-)*)
card "SCM" "Ethernet Combo card"
	config	auto "ed" ? 0x10
	ether	0xff0 # 00:20:cb
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Epson EEN10B Ethernet Card
card "Seiko Epson Corp." "Ethernet"
	config	auto "ed" ? 0x10
	ether	0xff0 # 00:00:48
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# SMC EXCard-10-PCMCIA
card "SMC" "EZCard-10-PCMCIA"
	config	0x20 "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# 3way 3WL-847-TX
card "SUN WAY" "3WL-847-TX 100BASE-TX"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Surecom EtherPerfect EP-427
card "TAMARACK" "Ethernet"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# TDK LAK-CD031
card "TDK" "/LAK-CD031.*/"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Telecom Device SuperSocket RE450T
card "Telecom Device K.K." "SuperSocket RE450T"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Telecom Device SuperSocket RE550T
card "Telecom Device K.K." "SuperSocket RE550T"
	config	auto "ed" ? 0x80000
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Toshiba Joho System PTJ-LAN/T
card "TJ" "Ethernet"
	config	auto "ed" ? 0x10
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# XXX NOT SUPPORTED YET
# TOSHIBA LABCTA00A (Add `option TOSH_ETHER' line to your kernel
# configuration file and rebuilding kernel.)
#card "TOSHIBA" "LANCT00A"
#	config	default "ed" ? 0x10
#	cardmem 0xd0000 0x0000 32k
##	cardmem 0xd8000 0x0000 32k
#	insert	/etc/pccard_ether $device start
#	remove	/etc/pccard_ether $device stop

# Xircom CompactCard Ethernet 10 (CFE-10)
card "Xircom" "CompactCard Ethernet"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

########## ep ##########

# 3Com Fast Etherlink 3C574TX
card "3Com" "3C574-TX Fast EtherLink PC Card"
	config	auto "ep" ? 0x1
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# 3Com Megahertz 3CCFEM556BI, 3CXEM556 and model B
# as ethernet
card "3Com" "/Megahertz 3C(CF|X)EM556/"
	config	default "ep" ? 0x1
#	config	auto "sio" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# 3Com Megahertz 574B same as 3Com Fast Etherlink 3C574B
card "3Com" "Megahertz 574B"
	config	auto "ep" ? 0x1
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# 3Com Etherlink III 3CXE589EC and 3CXE589ET
card "3Com" "Megahertz 589E"
	config	auto "ep" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# 3Com OfficeConnect 3CXSH572BT
card "3Com" "OfficeConnect 572B"
	config	auto "ep" ? 0x1
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# 3Com Etherlink III 3C562 (as Network)
# Don't think this will work.
#card "3Com Corporation" "3C562"
#	config	0x9 "ep" ?
#	insert	/etc/pccard_ether $device start
#	remove	/etc/pccard_ether $device stop

# 3Com Etherlink III 3C589, 3C589B, 3C589C, 3C589D
card "3Com Corporation" "/3C589/"
	config	auto "ep" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Farallon EtherMac
card "Farallon" "ENet"
	config	auto "ep" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

########## ex ##########

# Olicom OC2220
card "Olicom" "Ethernet"
	config	0x1 "ex" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

########## fe ##########

# CONTEC C-NET(PC)C Ethernet
card "CONTEC Co.,Ltd." "/C-NET\(PC\)C.*/"
	config	auto "fe" ?
	ether	0x58 # 00:80:4c
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Fujitsu MBH10303 Ethernet PCMCIA
card "EAGLE Technology" "/NE200 ETHERNET LAN MBH10303 */"
	config	auto "fe" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Eiger Labs EPX-10BT
card "Eiger labs,Inc." "EPX-10BT PC Card Ethernet 10BT"
	config	auto "fe" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Fujitsu FMV-J182, FMV-J182A
card "FUJITSU" "LAN Card(FMV-J182)"
	config	auto "fe" ?
# These cards have same ID strings, and different MAC address
# locations.
#	ether	0xf2c # 00:00:0e	#FMV-J182
	ether	0x1cc # 00:00:0e	#FMV-J182A
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Fujitsu Towa LA501 Ethernet
card "FUJITSU TOWA" "LA501"
	config	auto "fe" ? 0x10
	ether	0x332 # 00:00:0e
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# HITACHI HT-4840-11
card "HITACHI" "HT-4840-11"
	config	auto "fe" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# NextCom J Link NC5310
card "NextComK.K." "/NC5310 Ver1\.0.*/"
	config	auto "fe" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# RATOC REX-5588, REX-9822, REX-4886
card "PCMCIA LAN MBH10304  ES" "  01"
	config	auto "fe" ?
#	ether	0x32c # 00:c0:d0  # many minor revs....
#	ether	0x328 # 00:c0:d0
	ether	0x200 # 00:c0:d0
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Fujitsu MBH10302
card "PCMCIA MBH10302" "01"
	config	auto "fe" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# RATOC REX-R280
card "RATOC System Inc." "10BASE_T CARD R280"
	config	auto "fe" ?
	ether	0x1fc # 00:c0:d0
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# TDK LAK-CD021, LAK-CD021A, LAK-CD021BX
card "TDK" "LAC-CD02x"
	config	auto "fe" ?
# These cards have same ID strings, and different MAC address
# locations.
#	ether	0x92 # 00:80:98		# LAC-CD021, LAC-021A
#	ether	0x96 # 00:80:98		# LAC-CD021BX
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

########## fdc ##########

# Libretto Floppy disk
card "Y-E DATA" "External FDD"
	config	0x4 "fdc" ?

########## gp ##########

# XXX NOT SUPPORTED YET
# National Instruments PCMCIA-GPIB Cards
#card "National Instruments" "PCMCIA-GPIB"
#	config	default "gp" pio

########## hss ##########

# XXX NOT SUPPORTED YET
# Hitachi microcomputer speech synthesizer card
#card "/HITACHI MICROCOMPUTER SYSTEM LTD.*/" "MSSHVPC02"
#	config	default "hss" pio

########## joy ##########

# IO DATA PCJOY
card    "IO DATA" "PCJOY"
	config	auto "joy" ?
#	config	0x1 "joy" pio
#	config	0x2 "joy" pio

# Game Card B236 by BONDWELL
card	"BONDWELL" "B236"
	config	auto "joy" ?

########## ncv ##########

# New Media Corporation BASICS SCSI
# (Do not put this entry under Bustoaster)
card "BASICS by New Media Corporation" "SCSI Sym53C500"
	config	auto "ncv" ?

# Media Intelligent SCSI-2 PC Card MSC-200
card "EPSON" "SCSI-2 PC Card SC200"
	config	auto "ncv" ?

# KME (TAXAN ICD-400PN, etc.)
card "KME" "KXLC002"
	config	auto "ncv" ? 0xb4d00000

# KME KXLC004
card "KME" "KXLC004"
	config	auto "ncv" ? 0xb4d00100

# IO DATA PCSC-DV
# Macnica Miracle SCSI mPS100
card "MACNICA" "MIRACLE SCSI" "mPS100" "D.0"
	config	auto "ncv" ? 0xb6250000

# Macnica Miracle SCSI-II mPS110
card "MACNICA" "MIRACLE SCSI-II mPS110"
	config	auto "ncv" ? 0

# NEC PC-9801N-J03R
card "NEC" "PC-9801N-J03R"
	config	auto "ncv" ? 0

# Qlogic Fast SCSI
card "QLOGIC CORPORATION" "pc05"
	config	auto "ncv" ? 0x84d00000

# RATOC REX-9530
card "RATOC System Inc." "/SCSI2 CARD.*/"
	config	auto "ncv" ? 0x84d00000

# RATOC REX-5572 (as SCSI only)
card "RATOC System Inc." "/SOUND/SCSI2 CARD.*/"
	config	auto "ncv" ? 0x84d00000
#	cardio	0x640 0x10
	iosize	16

########## nsp ##########

# WORKBIT Ninja SCSI series
card "IO DATA" "/CBSC16 */"
	config	auto "nsp" ?

# Hewlett Packard M820e (CD-writer)
card "/KME */" "SCSI-CARD-001"
	config	auto "nsp" ?

# WORKBIT Ninja SCSI series
card "WBT" "NinjaSCSI-3"
	config	auto "nsp" ?

# WORKBIT Ninja SCSI series (PIO mode)
# (If you want to use them in PIO mode comment out above and uncommnet below.)
#card "WBT" "NinjaSCSI-3"
#	config	auto "nsp" ? 0x100

########## opl ##########

# XXX NOT SUPPORTED YET
# RATOC REX-5570 Sound Card
#card "1195 RATOC System Inc." "REX5570 SOUND CARD"
#	config	default "opl" ?

########## ray ##########

# WebGEAR Aviator 2.4
card "WebGear" "PC Card WLAN Adapter"
	config	auto "ray" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Raytheon Raylink 802.11 Wireless LAN
card "RAYTHEON" "RayLink PC Card WLAN Adapter"
	config	auto "ray" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

########## scc ##########

# XXX NOT SUPPORTED YET
# IBM Smart Capture Card
#card "IBM Corp." "Video Capture"
#	config	default "scc" pio
#	cardmem 0xd4000 0x0 0x8000

########## sio ##########

# 3Com/USR/MegaHertz 3CCM156
card "3COM" "3CCM156"
	config	auto "sio" ?

# 3com/USR/Megahertz 3CCM556
card "3Com" "3CXM/3CCM556"
	config	auto "sio" ?

# 3Com Etherlink III 3C562 and 3C563 (as Modem)
card "3Com Corporation" "/3C56[23]/"
	config	0x09 "sio" ?
#	config	auto "sio" ?

# ADVANTECH COMpad-32/85 (dual port, but only one works)
card "ADVANTECH" "COMpad-32/85"
	config	auto "sio" ? 0x330

# Apex Data 28.8 PC Card "MOBILE PLUS Cellular" modem. 
card "AD PC_CARD" "RC288ACL" 
	config	auto "sio" ? 

# AIWA PV-JF288
card "AIWA CO.,LTD." "/PV-JF288 */"
	config	auto "sio" ?

# AIWA PV-JF3356
card "AIWA CO.,LTD. MODEM" "PV-JF3356"
	config	auto "sio" ? 0x40000

# APEX DATA MultiCard (as Modem only)
card "APEX DATA" "MULTICARD"
	config	0xb "sio" ?
#	config	auto "sio" ?

# Eiger 33.6 modem
card "AT&T" "V34+ Fax Modem"
	config	auto "sio" ?

# AT&T Paradyne KeepInTouch 14.4 modem
card "AT&T Paradyne" "KeepInTouch Card"
	config	auto "sio" ?
	reset	1000

# BUG Linkboy D64K (ISDN)
card "BUG Inc." "Linkboy D64K"
	config	auto "sio" ?

# Portable Add Ons FreeSpirit 56K/ISDN Card
card "Portable Add Ons" "FreeSpirit Global 56K"
	config	auto "sio" ?

# NewMedia 14.4K FAX/Data Modem
card "CIRRUS LOGIC" "FAX MODEM"
	config	auto "sio" ?

# COM1 SA
card "COM1 SA" "/MC2(18|20) CARD/"
	config	auto "sio" ?

# Digiteam Expresso 14.4 Modem
card "Digiteam GmbH" "Expresso Modem"
	config	auto "sio" ?

# Eicon DIVA T/A
# at@menu       Config menu
# at>vc         View current profile
# at>vd         View troubleshooting information
card "Eicon Technology" "DIVA T/A"
	config	auto "sio" ?

# Ericsson DC23 GSM modem card
card "ERICSSON" "Modem, DC23"
	config	auto "sio" ?

# GATEWAY 2000 FAX/Data Modem (14.4K)
card "GATEWAY2000" "CC3144"
	config	auto "sio" ?

# This one does work though
card "HAYES" "OPT288"
	config	auto "sio" ?

# Hayes OPTIMA 288 FAX/Data Modem
# currently does not work on my machine
card "Hayes" "OPTIMA 288 + FAX fo"
	config	auto "sio" ?
	reset	10000

# IBM Push/Pop Modem (14.4K)
card "IBM" "Push/Pop Modem(14.4K)"
	config	auto "sio" ?

# IBM 56k PCCCARD modem
card "IBM" "56K PC Card Modem"
	config	auto "sio" ?

# Intel EtherExpress(TM) PRO/100 LAN/Modem PC Card Adapter (as modem)
card "Intel" "EtherExpress(TM) PRO/100 LAN/Modem PC Card Adapter"
	config	0x1f "sio" ?
#	config	auto "sio" ?

# US Robotics Worldport 14400
card "Intel" "MODEM 2400+"
	config	auto "sio" ?

# Intelligent SurfCard
card "Intelligent" "PCMCIA FAX+MODEM"
	config	auto "sio" ?
	reset	1000

# Megahertz XJEM3288 (as modem)
card "MEGAHERTZ" "CC/XJEM3288"
	config	auto "sio" ?

# Megahertz XJEM1336 (as modem)
card "MEGAHERTZ" "CC/XJEM3336"
	config	auto "sio" ?

# Megahertz XJ1144, XJ2144 (US and JP), XJ2288, XJ3288
card "MEGAHERTZ" "/XJ[0-9]+/"
	config	auto "sio" ?

# Megahertz XJ-CC4288
card "Megahertz" "XJ-CC4288"
	config	auto "sio" ?

# Megahertz XJ4336
card "Megahertz" "XJ4336-CC4336"
	config	auto "sio" ?

# XXX generic serial?
# Megahertz X-Jack Ethernet/Modem 14.4K (as Modem only)
card "Megahertz" "XJEM1144/CCEM1144"
	config	0x27 "sio" ?
#	config	auto "sio" ?

# Motorola Montana 
card "Motorola" "MONTANA 33.6 FAX/MODEM"
	config	auto "sio" ?

# XXX generic serial?
# Motorola Marine multifunction card (as modem)
card "Motorola, Inc." "MARINER MODEM/FAX/LAN"
	config	0x35 "sio" ?
#	config	auto "sio" ?

# NTT ThunderCard Modem
card "NTT-IT CO., LTD" "ThunderCard AVF288, V.34"
	config	auto "sio" ?

# NTT DoCoMo Mobile D Card 96P1
card "NTT DoCoMo" "Mobile D Card 96P1"
	config	auto "sio" ? 0x82

# NTT DoCoMo (formerly NTT Personal) Paldio 611S
card "NTT DoCoMo" "PALDIO 611S PC CARD"
	config	auto "sio" ? 0x40000

# NTT DoCoMo DATA/FAX Adapter
card "NTT DoCoMo" "PCMCIA DATA/FAX ADAPTER 9600 Mark2"
	config	auto "sio" ?

# NTT DoCoMo DATA/FAX Adapter
card "NTT DoCoMo" "/PCMCIA DATA/FAX.*/"
	config	auto "sio" ? 0x82

# NTT-IT ThunderCard
card "NTT Intelligent Technology Co., Ltd." "ThunderCard DD128"
	config	auto "sio" ? 0x80
	reset	1000

# NTT DoCoMo (formerly NTT Personal) FAX/Data 32K PHS Card Paldio 321S
card "NTT Personal" "32K Paldio 321S PC CARD"
	config	auto "sio" ?
#	config	auto "sio" ? 0x40000

# NTT DoCoMo (formerly NTT Personal) FAX/Data 32K PHS Card Paldio 341S
card "NTT Personal" "32K Paldio 341S PC CARD"
	config	auto "sio" ?

# NTT Personal Paldio Data Card DC-1S
card "NTT Personal" "/Paldio Data.*/" "DC-1S"
	config	auto "sio" ? 0x40000

# Nokia Cellular Data Card DTP-2 and DTP-2 ver II
# This Nokia example allows either 1 or 2 Nokia cards to be fitted.
# With 2 Mobile Phones and Multilink PPP you can get a 19200 data channel.
# Nokia Cellular Data Card
card "Nokia Mobile Phones" "/DTP-2( ver II)?/"
#	config	0x23 "sio" ?
#	config	0x24 "sio" ?
	config	auto "sio" ?

# Novalink NovaModem 144
card "NovaLink Tech." "/NovaModem 144 */"
	config	auto "sio" ?

# Novatel Merlin CDPD card (wireless modem)
card "Novatel Wireless" "Merlin Type II Wireless IP Modem"
	config	auto "sio" ?

# Omron ME2814 FAX/DATA MODEM
card "OMRON" "ME2814 FAX/DATA MOD"
	config	auto "sio" ?

# Omron MD24XCA FAX/Data Modem
card "OMRON Corp." "MD24XCA"
	config	auto "sio" ?
#	config	auto "sio" pio
	reset	10000

# Option International PCMCIA55K06
card "Option International" "GSM Data/Fax/SMS Modem"
	config	auto "sio" ?

# Banksia CardModem 56
card "PCCardModem" "CardModem 56"
	config	auto "sio" ?

# Eiger PCCARD modem 
# Apparently this modem does not work unless the recommended
# init string (AT&F&C1&D2) is supplied.
card "/PCMCIA */" "/33\.6K Fax/Modem */"
	config	auto "sio" ?

# Actiontec Datalink with v.90 upgrade
card "/PCMCIA */" "/56K V\.90 Fax Modem (LK) */"
	config	auto "sio" ?

# Billionton 56Kbps Fax Modem
card "PCMCIA CARD 56KFaxModem" "FM56C-NFS"
	config	auto "sio" ?

# PREMAX FM288 FAX/Data Modem
card "PREMAX" "/FM288 */"
	config	auto "sio" ?

# Panasonic FM-RADIO card
card "Panasonic" "CF-JVR101"
	config	auto "sio" ?
#	config	auto "sio" pio

# Panasonic KX-PH402D
card "Panasonic" "KX-PH402D"
	config	auto "sio" ?

# Panasonic Modem Card TO-706C
card "Panasonic" "TO-706C"
	config	auto "sio" ?

# Panasonic Modem Card TO-706C
card "Panasonic" "TO-CAF288"
	config	auto "sio" ?

# Panasonic TO-CAF56K FAX/Data Modem
card "Panasonic Co." "TO-CAF56K"
#	config	auto "sio" pio
	config	auto "sio" ?
	reset	10000

# Random modem bundled with Dell systems
card "Psion Dacom" "Gold Card Global 56K+Fax"
	config	auto "sio" ?

# RFI HotLine serial card
card "RFI" "RS-232 ComCard Rev.II"
	config	auto "sio" ?

# SII MC-6530, MC-6550 and MC-P200
card "SII" "/PHS (DATA|LINK) (32S|64)/"
	config	auto "sio" ? 0x40000

# TDK 14.4 FAX/Data Modem
card "TDK" "/DF1414(EX)? DATA/FAX MODEM/"
	config	auto "sio" ?

# TDK DN1280R
card "TDK" "DN1280R"
	config	auto "sio" ?
	reset 1000

# TDK DP9600
card "TDK" "DP9600"
	config	auto "sio" ? 0x40000

# TDK Multifunctioon Card (as Modem)
card "TDK" "GlobalNetworker 3410/3412"
	config	auto "sio" ? 0x40000

# Toshiba Modem/LAN card IPC5001B (as Modem)
card "TOSHIBA" "Modem/LAN Card"
	config	0x25 "sio" ?
#	config	auto "sio" ?

# 3Com/USR/Toshiba SLIMV90
card "TOSHIBA" "SLIMV90"
	config	auto "sio" ?

# 3Com/NoteWorthy 56K modem (bundled with Toshiba notebooks)
card "Toshiba America" "3CXM056-BNW"
	config	auto "sio" ?

# U.S. Robotics XJ1560 and XJ1560J, Megahertz XJ1336
card "U.S. Robotics" "/XJ/CC1(336|560)J?/"
	config	auto "sio" ?

# US Robotics Sportster PCMCIA V.34
# US Robotics COURIER PCMCIA V.34
card "USRobotics" "PCMCIA 28800 Data/F"
	config	auto "sio" ?

# Viking V.90/K56Flex modem
card "Viking" "V.90 K56flex"
	config	auto "sio" ?

# Xircom CreditCard Ethernet 10/100 + modem (modem part)
card "Xircom" "CreditCard Ethernet+Modem 33.6"
	config	0x23 "sio" ?
#	config	auto "sio" ?

# Xircom GlobalACCESS modem
card "Xircom" "CreditCard Modem 56 - GlobalACCESS"
	config	auto "sio" ?

# Xircom CreditCard Modem
card "Xircom" "CreditCard Modem CM-56T"
	config	auto "sio" ?
	reset	100

# Zonet 56Kbps FAX/Modem PC Card
card "PC CARD" "56Kbps Fax Modem PC Card"
	config  auto "sio" ?

# Zoom 56K modem 
# Freezes your system entirely if you don't have the reset..
card "Zoom Telephonics, Inc." "PCMCIA 56K LT DataFax"
	config	auto "sio" ?
	reset	1000

########## sn ##########

# Megahertz X-Jack Ethernet
card "Megahertz" "CC10BT/2"
	config	auto "sn" ?
	ether	attr2
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Megahertz Ethernet Adapter
card "Megahertz" "ETHERNET ADAPTOR"
	config	auto "sn" ?
	ether	attr2
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# MELCO LPC-TX
card "MELCO/SMC" "LPC-TX"
	config	auto "sn" ?
	ether	0x4a # 00:a0:dc
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# SMC EtherEZ Combo(SMC8020BT)
card "SMC" "EtherEZ Ethernet 8020"
	config	auto "sn" ?
#	ether	0x9a # 00:00:c0
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Victor M-MOIL CARD
card "JVC" "MiniMoil Ethernet Card"
	config	auto "sn" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

########## spc ##########

# XXX NOT SUPPORTED YET
# REX5535AC, REX5535X SCSI
#card "PCMCIA SCSI MBH10401" "01"
#	config	0x3a "spc" ?

########## stg ##########

# RATOC REX-5536, Melco IFC-SC
card "1195 RATOC System Inc." "REX5536 SCSI2 CARD"
	config	auto "stg" ? 0

# Future Domain SCSI2GO
card "Future Domain Corporation" "SCSI PCMCIA Credit Card Controller"
	config	auto "stg" ?

# IBM SCSI PCMCIA Card
card "IBM Corp." "SCSI PCMCIA Card"
	config	auto "stg" ?

# RATOC REX-5536AM, REX-9836A, ICM PSC-2401 SCSI
# There's a buggy revision of this card which has broken CIS tupples.
# If you can't use this card, change config entry from `auto' to 
# `default' and try the point enabler. (for example,
# type "pccardc enabler 0 stg0 -a 0x4140 -i 5" from root command prompt)
card "PCMCIA SCSI MBH10404" "01"
#	config	default "stg" ?
	config	auto "stg" ?
	logstr	"RATOC REX-5536AM SCSI"

# RATOC REX-5536M
card "PCMCIA SCSI2 CARD" "01"
	config	auto "stg" ? 0
	logstr	"RATOC REX-5536M SCSI"

########## wlp ##########

# XXX NOT SUPPORTED YET
# AT&T GIS Wavelan PCMCIA
# If you want to use Japanese version, uncomment the second config
# line and comment-out the first line.
#card "AT&T" "WaveLAN/PCMCIA"
#	config	default "wlp" ?      # US version (915MHz)
##	config	default "wlp" ? 0x01 # Japanese version (2.4GHz)
##	ether	wavelan
#	insert	/etc/pccard_ether $device start
#	remove	/etc/pccard_ether $device stop

# XXX NOT SUPPORTED YET
# Digital RoamAbout
#card "Digital" "RoamAbout/DS"
#	config	auto "wlp" ?
##	ether	wavelan
#	insert	/usr/sbin/wlpconfig -i wlp0 -w 0xaaaa
#	insert	/etc/pccard_ether $device start
#	remove	/etc/pccard_ether $device stop

# XXX NOT SUPPORTED YET
# Lucent Wavelan
#card "Lucent Technologies" "WaveLAN/PCMCIA"
#	config	default "wlp" ?
#	ether	wavelan
#	insert	/etc/pccard_ether $device start
#	remove	/etc/pccard_ether $device stop

# XXX NOT SUPPORTED YET
# NCR Wavelan PCMCIA
# If you want to use Japanese version, uncomment the second config
# line and comment-out the first line.
#card "NCR" "WaveLAN/PCMCIA"
#	config	default "wlp" ?      # US version (915MHz)
##	config	default "wlp" ? 0x01 # Japanese version (2.4GHz)
#	ether	wavelan
#	insert	/etc/pccard_ether $device start
#	remove	/etc/pccard_ether $device stop


########## wi ##########

# OEM ID 0x5 unlabelled PRISM2.5 card
card " " "IEEE 802.11 Wireless LAN/PC Card"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# 3com 3crwe737A AirConnect Wireless LAN PC Card
card "3Com" "3CRWE737A AirConnect Wireless LAN PC Card"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Accton airDirect WN3301
card "Accton" "IEEE802.11 PC Card Adapter"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Actiontec PRISM wireless
card "ACTIONTEC" "PRISM Wireless LAN PC Card"
	config	auto "wi" ?   
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Addtron AWP-100
card "Addtron" "AWP-100 Wireless PCMCIA"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# ADLINK340APC
card "ADTEC" "ADLINK/340C"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Home Wireless Networks
card "AirWay" "802.11 Adapter (PCMCIA)"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Allied Telesis WR211PCM
card "Allied Telesis K.K." "WR211PCM"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Avaya Wireless PC Card
card "Avaya Communication" "Avaya Wireless PC Card"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Belkin wireless card
card "Belkin" "11Mbps Wireless Notebook Network Adapter"
	config	auto "wi" ? 
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Benq AWL100 wireless 11 Mbps pcmcia card
card "BENQ" "AWL100 PCMCIA ADAPTER"
	config	auto "wi" ? 
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# BreezeNET
card "BreezeNET" "PC-DS.11"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Buffalo WLI-CF-S11G
card "BUFFALO" "WLI-CF-S11G"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Melco Airconnect 3.3V version
card "BUFFALO" "WLI-PCM-S11"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Melco Airconnect (128bit WEP)
card "BUFFALO" "WLI-PCM-L11G"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Cabletron RoamAbout, WaveLAN/IEEE clone
card "Cabletron" "RoamAbout 802.11 DS"
	config	0x1 "wi" ?
#	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Compaq WL100
card "Compaq" "WL100_11Mbps_Wireless_PC_Card"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Compaq WL110
card "Compaq" "Compaq WL110 PC Card"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Compaq WL200
card "Compaq" "WL200_11Mbps_Wireless_PCI_Card"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Compaq WL200 (might be wrong)
card "Compaq" "Compaq WL200_11Mbps_Wireless_PCI_Card"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Corega KK Wireless LAN PCC-11
card "corega K.K." "Wireless LAN PCC-11"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Corega KK Wireless LAN PCCA-11
card "corega K.K." "Wireless LAN PCCA-11"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Corega KK Wireless LAN PCCB-11
card "corega_K.K." "Wireless_LAN_PCCB-11"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Corega KK Wireless LAN PCCL-11
card "corega" "WL PCCL-11"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# D Link DWL-650 11Mbps WLAN Card
card "D" "Link DWL-650 11Mbps WLAN Card"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# DLink Air DWL-660 Wireless PC Card
card "D-Link" "D-Link Air DWL-660 Wireless PC Card"
        config  auto "wi" ?
        insert  /etc/pccard_ether $device start
        remove  /etc/pccard_ether $device stop

# Dell TrueMobile (OEMed Lucent WaveLAN/IEEE)
card "Dell" "TrueMobile 1150 Series PC Card"
	config	0x1 "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# ELECOM Air@Hawk/LD-WL11/PCC (0.7.5)
card "ELECOM" "Air@Hark/LD-WL11/PCC"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# ELECOM Air@Hawk/LD-WL11/PCC (0.7.6 and later)
card "ELECOM" "Air@Hawk/LD-WL11/PCC"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# ELSA Air Lancer
card "ELSA" "AirLancer MC-11"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# ELSA Vianect
card "ELSA" "Vianect WLAN MC-11"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# PLANEX GeoWave/GW-NS11S
card "Geowave" "GW-NS11S"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Linksys Instant Wireless WPC11
card "/Instant Wireless */" " Network PC CARD"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Intel PRO/Wireless 2011 LAN PC Card
card "Intel" "PRO/Wireless 2011 LAN PC Card"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# ICOM SL-1100
card "ICOM" "SL-1100"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Farallon Skyline 11Mbps Wireless
card "INTERSIL" "HFA384x/IEEE"
	config	0x1 "wi" ?
#	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# IO Data WN-B11/PCM
card "IO DATA" "WNB11PCM"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# IBM's rebadged Lucent WaveLAN/IEEE.  The FCC IDs are identical to
# those for the Lucent card, so presumably everything else is as well.
card "IBM Corporation" "IBM High Rate Wireless LAN PC Card"
	config	0x1 "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Lucent WaveLAN/IEEE
card "Lucent Technologies" "WaveLAN/IEEE"
	config	0x1 "wi" ?
#	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Melco Airconnect
card "MELCO" "WLI-PCM-L11"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# nanospeed card of some flavor.
card "NANOSPEED" "HFA384x/IEEE"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# NCR WaveLAN/IEEE
card "NCR" "WaveLAN/IEEE"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# NEC Wireless Card CMZ-RT-WP
card "NEC" "Wireless Card CMZ-RT-WP"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# NEC WL11C (PC-WL/11C)
card "NEC Aterm" "WL11C (PC-WL/11C)"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# NEC Corporation PK-WL001
card "NEC Corporation" "Wireless PC Card"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Netgear MA401
card "NETGEAR MA401 Wireless PC" "Card"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Netgear MA401RA
card "NETGEAR MA401RA Wireless PC" "Card"
        config	auto "wi" ?
        insert	/etc/pccard_ether $device start
        remove	/etc/pccard_ether $device stop

# Netgear MA701
card "NETGEAR" "MA701 Wireless CF Card"
        config	auto "wi" ?
        insert	/etc/pccard_ether $device start
        remove	/etc/pccard_ether $device stop

# Nortel eMobility
card "Nortel Networks" "emobility 802.11 Wireless LAN PC Card"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# NTT-ME SS-LAN CARD MN128
card "NTT-ME" "11Mbps Wireless LAN PC Card"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Generic PRISM2.5 card
card "PCMCIA" "11M WLAN Card v2.5"
        config  auto "wi" ?
        insert  /etc/pccard_ether $device start
        remove  /etc/pccard_ether $device stop

# PLANEX GeoWave/GW-NS110
card "PLANEX" "GeoWave/GW-NS110"
	config	0x1 "wi" ?
#	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# PLANEX GW-NS11H
card "PLANEX" "GW-NS11H Wireless LAN PC Card"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Proxim Harmony
card "PROXIM" "Harmony 802.11b/LAN PC CARD"
        config 0x1 "wi" ?
        insert  /etc/pccard_ether $device start
        remove  /etc/pccard_ether $device stop

# Proxim Harmony OEM card
card "PROXIM" "LAN PC CARD HARMONY 80211B"
        config 0x1 "wi" ?
        insert  /etc/pccard_ether $device start
        remove  /etc/pccard_ether $device stop

# Proxim RangeLAN-DS (OEM of Zcommax - Prism2 card)
card "PROXIM" "RangeLAN-DS/LAN PC CARD"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# SAMSUNG SWL-2000P PCI Card
card "SAMSUNG" "11Mbps WLAN PCI Card"
        config	auto "wi" ?
        insert	/etc/pccard_ether $device start
        remove	/etc/pccard_ether $device stop

# SMC's SMC2632W (also matches the 3.3V SMC2602W)
card "SMC" "SMC2632W"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Sony PCWA-C100 WaveLAN
card "Sony Corporation" "PCWA-C100"
    config auto "wi" ?
    insert /etc/pccard_ether $device start
    remove /etc/pccard_ether $device stop

# German Telekom T-Sinus 130card, unknown original manufactor
card "T-Sinus" "130card"
        config	auto "wi" ?
        insert	/etc/pccard_ether $device start
        remove	/etc/pccard_ether $device stop 

# TDK LAK-CD011WL
card "TDK" "LAK-CD011WL for Wireless LAN"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Linksys Instant Wireless WPC11 v2.5
card "The Linksys Group, Inc." "Instant Wireless Network PC Card"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Toshibas wireless lan card
card "TOSHIBA" "Wireless LAN Card"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# U.S. Robotics Wireless Card 2410
card "U.S. Robotics" "IEEE 802.11b PC-CARD"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Taiwanese Blue Concentric Circle CF Wireless LAN Model WL-379F
# This is a card sold in Taiwan.
card "Wireless LAN" "11Mbps PC Card"
	config  auto "wi" ?
	insert  /etc/pccard_ether $device start
	remove  /etc/pccard_ether $device stop

# YIS YWL-11B
card "YIS Corp." "YWL-11b"
	config  auto "wi" ?
	insert  /etc/pccard_ether $device start
	remove  /etc/pccard_ether $device stop

# ZoomAir 802.11
card "ZoomAir 11Mbps High" "Rate wireless Networking"
	config	auto "wi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

########## xe ##########

# Accton EN2226/Fast EtherCard (16-bit verison)
card "Accton" "Fast EtherCard-16"
	config	auto "xe" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Compaq Netelligent 10/100 PC Card
card "Compaq" "Netelligent 10/100 PC Card"
	config	auto "xe" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Intel EtherExpress PRO/100 Mobile Adapter (16-bit verison)
card "Intel" "EtherExpress(TM) PRO/100 PC Card Mobile Adapter16"
	config	auto "xe" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# XXX NOT SURE SUPPORTED
# Toshiba 10/100 Ethernet PC Card IPC5008A
#card "Toshiba" "10/100 Ethernet PC Card"
#	config	auto "xe" ?
##	cardio	0x300 0x10
#	iosize	16
#	insert	/etc/pccard_ether $device start
#	remove	/etc/pccard_ether $device stop

# Xircom 10/100 Network PC Card
card "Xircom" "10/100 Network PC Card"
	config	auto "xe" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Xircom Realport card + modem
card "Xircom" "16-bit Ethernet + Modem 56"
	config	0x27 "xe" ?
#	config	auto "sio" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Xircom CreditCard Ethernet CE3-10/100
card "Xircom" "CreditCard 10/100"
	config	auto "xe" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Xircom CreditCard Ethernet Adaptor IIps (PS-CE2-10)
card "Xircom" "CreditCard 10Base-T"
	config	auto "xe" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Xircom CreditCard Ethernet 10/100 + modem (Ethernet part) (CEM56)
card "Xircom" "CreditCard Ethernet 10/100 + Modem 56"
	config	0x27 "xe" ?
#	config	auto "sio" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Xircom RE-10
card "Xircom" "Ethernet Adapter"
	config	auto "xe" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# -------------------------------------------------------------------
# 
# "Wildcard" entries
# 
# -------------------------------------------------------------------

# GENERIC PCMCIA modem
generic serial
	config	auto "sio" ?
#	reset	100			# default
#	reset 	1000			# safety reset time
	reset	10000			# for unstable cards
	logstr	"GENERIC PCMCIA modem"

# GENERIC Flash ATA / ATA HDD
generic fixed_disk
	config	0x1 "ata" ?
	logstr	"GENERIC Flash ATA / ATA HDD"