summaryrefslogtreecommitdiffstats
path: root/etc/defaults/pccard.conf
blob: ef111c98a1688c0dd6f185ae4644c5365eb31edd (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
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
# Default PCCARD configuration file
#
# 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 these cards in
# your machine, you will be forced to modify their IRQ parameters from
# the following list.
#
# IRQ == 0 means "allocate free IRQ from IRQ pool"
# IRQ == 16 means "do not use IRQ (e.g. PIO mode)"
#
# $FreeBSD$
#
# Send new entries for this file to imp@freebsd.org.  He's volunteered
# to act as coordinator for this file.
#

# Generally available IO ports
io	0x240-0x360
# Generally available IRQs (Built-in sound-card owners remove 5)
irq	3 5 10 11 15
# Available memory slots
memory	0xd4000  96k

# 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 $device

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

########## 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/342 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

########## 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"

# 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" ?

# 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	0xb "ata" 15

# 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

# XXX NOT SURE SUPPORTED
# 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" ?

# 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" ?

# 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" ?

# 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" ?

# 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	0x2 "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" ?

# 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
card "AMD" "Am79C930"
	config	0x1 "awi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

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

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

card "Icom" "SL-200"
	config	0x1 "awi" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

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

# XXX NOT SUPPORTED YET
# 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.
#card "Xircom" "CreditCard Netwave"
#	config	0x01 "cnw" ?
#	cardmem	0xd4000 0x20000 0x9000 0x40
#	config	0x01 "cnw" ?
##	cardmem	0xdd000 0x20000 0x9000 0x40
#	ether	0x126 00:80:c7 00:20:d8
#	insert	/etc/pccard_ether $device
#	remove	/sbin/ifconfig $device delete

########## 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	0x1 "ed" ? 0x10
	ether	0xff0
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

#Accton 2216
card "ACCTON" "EN2216-PCMCIA-ETHERNET"
	config	0x20 "ed" ?
#	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" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Allied Telesis Ethernet Card
card "Allied Telesis,K.K" "Ethernet LAN Card"
	config	0x1 "ed" ? 0x10
	ether	0xff0
	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	0x20 "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" ?
	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	0x20 "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

# CNet BC40 adapter
card "CNet" "CN40BC Ethernet"
	config	0x20 "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" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# COREGA Ether PCC-T
card "corega K.K." "corega Ether PCC-T"
	config	0x20 "ed" ?
#	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# COREGA EtherII PCC-T
card "corega K.K." "corega EtherII 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" ?
	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
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

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

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

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

# D-Link DE-650 NE2000 clone
card "D-Link" "DE-650"
	config	0x20 "ed" ? 0x10
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# D-Link DE-660 NE2000 clone
card "D-Link" "DE-660"
	config	0x20 "ed" ? 0x10
	ether 0x81
	insert	/etc/pccard_ether $device start
#	insert	/etc/pccard_ether $device start link0 -link1
	remove	/etc/pccard_ether $device stop

# D-Link DFE-650 NE2000 clone
card "D-Link" "DFE-650"
	config	0x20 "ed" ? 0x10
	insert	/etc/pccard_ether $device start
#	insert	/etc/pccard_ether $device start link0 -link1
	remove	/etc/pccard_ether $device stop

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

# Danpex (Alloy, etc.) EN-6200P2
card "DANPEX" "EN-6200P2"
	config	0x22 "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
	ether	0x110 
	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	0xff0
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Planex FNW-3600-T
card "Dual Speed" "10/100 PC Card"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Planex FNW-3600-TX 16bit FastEthernet DirectDock
card "Dual Speed" "10/100 Port Attached PC Card"
	config	auto "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# LinkSys ethernet card
card "E-CARD" "E-CARD" 
	config	0x20 "ed" ? 
	logstr	"LinkSys 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 and
# 	Apollo PCMCIA Ethernet Adapter have same manufacturer and
#	card version string.  They should be distinguished by 
#	other info. (such as additional information or OEM-ID/product-ID).

# Compex Net-A adapter
card "Ethernet" "Adapter"
	config	0x1 "ed" ?
	ether	0xff0
	logstr	"Compex Net-A adapter"
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop
	
# Telecom Device SuperSocket RE450T
# Note: There are several revisions of the cardon 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	0x2 "ed" ?
#	ether	0x110 00:e0:98
#	ether	0xff0 00:e0:98
	logstr	"Telecom SuperSocket RE450T"
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Apollo PCMCIA Ethernet Adapter
card "Ethernet" "Adapter"
	config	0x0 "ed" ?
	logstr	"Apollo PCMCIA Ethernet Adapter"
	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

# 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
	ether	0x110
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

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

# Planex FNW-3600-T 16bit FastEthernet
card "Fast Ethernet" "Adapter"
	config	0x7 "ed" ?
	iosize	32
	logstr	"Planex FNW-3600-T"
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Grey Cell GCS2220 Ethernet Card
card "Grey Cell" "GCS2220"
	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
card "IBM Corp." "Ethernet"
	config	0x1 "ed" ?
	ether	0xff0
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

#AR-P500 ethernet card, PLANET PCMCIA ethernet Adapter card ENW-3500
card "IC-CARD" "IC-CARD"
	config	auto "ed" ?
	logstr	"AR-P500 Ethernet card"
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# IC-CARD+ Ethernet card
card "IC-CARD+" "IC-CARD+"
	config	auto "ed" ?
	logstr	"IC-CARD+ Ethernet card"
	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
	ether	0xff0
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

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

# I-O DATA PCETTX
card "IO DATA" "PCETTX"
	config	0x20 "ed" ?
	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	0x1 "ed" 15
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Kingston KNE-PC2
card "Kingston" "KNE-PC2"
	config	default "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
	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" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Elecom Laneed LD-CDF
card "Laneed" "LD-CDF"
	config	0x20 "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# ELECOM Laneed LD-CDS
card "Laneed" "LD-CDS"
	config	auto "ed" ?
	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	0x1 "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
	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" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

#Linksys EtherFast 10/100 PC Card (PCMPC100)
card "Linksys" "EtherFast 10/100 PC Card (PCMPC100)"
	config	0x3 "ed" ?
#	config	auto "ed" ?
	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" ?
	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	0x20 "ed" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# ELECOM Laneed LD-CDWA (DP83902A)
card "MACNICA" "ME1-JEIDA"
	config	auto "ed" ?
#	ether	0xb8 08:00:42
	ether	0xb8
	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
	ether	0xff0
	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" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Melco LPC-T (PIO mode)
card "MELCO" "LPC3-TX"
	config	0x1 "ed" ? 0x30000
	ether	0xff0
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

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

# National Semiconductor InfoMover NE4100
card "National Semiconductor" "InfoMover NE4100"
	config	0x1 "ed" ?
	ether	0xff0
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# NDC Ethernet Instant-Link NE2000 clone
card "NDC" "Ethernet"
	config	0x22 "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
	ether	0xff0
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# BayNetworks NETGEAR FA410TXC Fast Ethernet
card "NETGEAR" "FA410TX"
	config	auto "ed" ?
	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	0x1 "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	0x5 "ed" 10
	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" ?
	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
card "Nihon Unisys, Ltd." "JPF0400-ETH"
	config	auto "ed" ?
#	ether	0xff0 00:80:45
	ether	0xff0
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Nihon Unisys, Ltd. JPF0400-LAN
card "Nihon Unisys, Ltd." "JPF0400-LAN"
	config	auto "ed" ?
#	ether	0xff0 00:80:45
	ether	0xff0
	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	0x20 "ed" ? 0x10
	logstr	"UE2216"
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Melco LPC-T (PIO mode)
card "PCMCIA" "UE2212"
	config	auto "ed" ? 0x10
	ether	0xff0
	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
card "PCMCIAs" "ComboCard"
	config	0x24 "ed" ? 0x10
	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" ?
	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
	ether	0x7f0
	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" ?
	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
	ether	0xff0
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# RPTI EP401 Ethernet card
card "RPTI" "EP401 Ethernet NE2000 Compatible"
	config	0x22 "ed" 9 
	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
	ether	0xff0
	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
	ether	0xff0
	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" ?
	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 and RE550T
card "Telecom Device K.K." "/SuperSocket RE[45]50T/"
	config	auto "ed" ?
	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

# 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	0x1 "ep" ? 0x1
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# 3Com Megahertz 3CXEM556 (only lan side) doesn't work yet
card "3Com" "Megahertz 3CXEM556"
	config	0x1 "ep" ? 0x1
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# 3Com Megahertz 3CCFEM556BI, 3CXEM556B
# as ethernet
card "3Com" "/Megahertz 3C.*EM556/"
	config	default "ep" ? 0x1
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# 3Com Megahertz 574B
card "3Com" "Megahertz 574B"
	config	0x1 "ep" ? 0x1
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

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

# 3Com OfficeConnect 3CXSH572BT
card "3Com" "OfficeConnect 572B"
	config	0x1 "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 -link0 link1
#	remove	/sbin/ifconfig $device delete

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

# 3Com Etherlink III 3C589D
card "3Com Corporation" "3C589D"
	config	0x1 "ep" ?
#	config	auto "ep" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Farallon EtherMac
card "Farallon" "ENet"
	config	0x1 "ep" ?
	insert	/etc/pccard_ether $device start
#	insert	/etc/pccard_ether $device start link0
	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
	ether	0x58 
	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	0xf2c			#FMV-J182
#	ether	0x1cc 00:00:0e		#FMV-J182A
	ether	0x1cc			#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
	ether	0x332 
	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
	ether	0x200
	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
	ether	0x1fc
	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 ##########

# XXX NOT SUPPORTED YET
# IO DATA PCJOY
#card    "IO DATA" "PCJOY"
#	config	default "joy" pio
##	config	0x1 "joy" pio
##	config	0x2 "joy" pio

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

# XXX NOT SUPPORTED YET
# New Media Corporation BASICS SCSI
# (Do not put this entry under Bustoaster)
#card "BASICS by New Media Corporation" "SCSI Sym53C500"
#	config	0x14 "ncv" ?

# XXX NOT SUPPORTED YET
# Media Intelligent SCSI-2 PC Card MSC-200
#card "EPSON" "SCSI-2 PC Card SC200"
#	config	0x12 "ncv" ?

# XXX NOT SUPPORTED YET
# KME (TAXAN ICD-400PN, etc.)
#card "KME" "KXLC002"
#	config	0x26 "ncv" ? 0xb4d00000

# XXX NOT SUPPORTED YET
# KME KXLC004
#card "KME" "KXLC004"
#	config	default "ncv" ? 0xb4d00001

# XXX NOT SUPPORTED YET
# IO DATA PCSC-DV
# Macnica Miracle SCSI mPS100
#card "MACNICA" "MIRACLE SCSI" "mPS100" "D.0"
#	config	0x11 "ncv" ? 0xb6250000

# XXX NOT SUPPORTED YET
# Macnica Miracle SCSI-II mPS110
#card "MACNICA" "MIRACLE SCSI-II mPS110"
#	config	0x15 "ncv" ? 0

# XXX NOT SUPPORTED YET
# NEC PC-9801N-J03R
#card "NEC" "PC-9801N-J03R"
#	config	0x15 "ncv" ? 0

# XXX NOT SUPPORTED YET
# Qlogic Fast SCSI
#card "QLOGIC CORPORATION" "pc05"
#	config	0x2f "ncv" ? 0x84d00000

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

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

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

# XXX NOT SUPPORTED YET
# WORKBIT Ninja SCSI series
#card "IO DATA" "CBSC16       "
#	config	default "nsp" ?

# XXX NOT SUPPORTED YET
# WORKBIT Ninja SCSI series
#card "WBT" "NinjaSCSI-3"
#	config	default "nsp" ?

# XXX NOT SUPPORTED YET
# WORKBIT Ninja SCSI series (PIO mode)
#card "WBT" "NinjaSCSI-3"
#	config	default "nsp" ? 0x1

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

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

########## 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	0x23 "sio" ?

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

# 3Com Etherlink III 3C562 (as Modem)
card "3Com Corporation" "3C562"
	config	0x09 "sio" ?

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

# AIWA PV-JF288
card "AIWA CO.,LTD." "PV-JF288  "
	config	0x23 "sio" ?

# Apex Data 28.8 PC Card "MOBILE PLUS Cellular" modem. 
card "AD PC_CARD" "RC288ACL" 
	config	0x22 "sio" ? 
#	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" ?

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

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

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

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

# COM1 SA
card "COM1 SA" "MC218 CARD"
	config	0x3 "sio" ?

# COM1 SA
card "COM1 SA" "MC220 CARD"
	config	0x3 "sio" ?

# Digiteam Expresso 14.4 Modem
card "Digiteam GmbH" "Expresso Modem"
	config	0x24 "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	0x5 "sio" ?

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

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

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

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

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

# IBM 56k PCCCARD modem
card "IBM" "56K PC Card Modem"
	config	0x22 "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" ?

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

# Intelligent SurfCard
card "Intelligent" "PCMCIA FAX+MODEM"
	config	0x1f "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
card "MEGAHERTZ" "XJ1144"
	config	0x23 "sio" ?

# Megahertz XJ2144 (US)
card "MEGAHERTZ" "XJ2144"
	config	0x23 "sio" ?

# Megahertz XJ2144 (JP)
card "MEGAHERTZ" "XJ2144-81"
	config	0x23 "sio" ?

# Megahertz XJ2288
card "MEGAHERTZ" "XJ2288"
	config	0x23 "sio" ?

# Megahertz XJ3288
card "MEGAHERTZ" "XJ3288"
	config	0x21 "sio" ?

# Megahertz XJ-CC4288
card "Megahertz" "XJ-CC4288"
	config	0x23 "sio" ?

# Megahertz XJ4336
card "Megahertz" "XJ4336-CC4336"
	config	0x22 "sio" ?
#	config	auto "sio" ?
#	config	0x23 "sio" ?

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

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

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

# Nokia Card Phone 2.0 (gsm900/dcs1800 HSCSD terminal)
card "Nokia Mobile Phones" "Nokia Card Phone"
	config 0x3 "sio" ?

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

# NTT DoCoMo Mobile D Card 96P1
card "NTT DoCoMo" "Mobile D Card 96P1"
#	config	0x22 "sio" ? 0x82
	config	0x23 "sio" ? 0x82
#	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	0x23 "sio" ?

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

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

# Nokia Cellular Data Card
card "Nokia Mobile Phones" "DTP-2"
	config	0x22 "sio" ?
	config	0x23 "sio" ?

# 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" ?

# Novalink NovaModem 144
card "NovaLink Tech." "NovaModem 144   "
	config	0x23 "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	0x23 "sio" ?

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

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

# Banksia CardModem 56
card "PCCardModem" "CardModem 56"
	config	0x22 "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	23 "sio" ?

# Actiontec Datalink with v.90 upgrade
card "PCMCIA  " "56K V.90 Fax Modem (LK)  "
	config	0x1f "sio" ?

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

# PREMAX FM288 FAX/Data Modem
card "PREMAX" "FM288 "
	config	0x23 "sio" ?

# Panasonic FM-RADIO card
card "Panasonic" "CF-JVR101"
	config	0x22 "sio" ?

# Panasonic KX-PH402D
card "Panasonic" "KX-PH402D"
	config	0x23 "sio" ?

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

# Panasonic Modem Card TO-706C
card "Panasonic" "TO-CAF288"
	config	0x23 "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	0x23 "sio" ?

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

# SII MC-6530
card "SII" "PHS DATA 32S"
	config	auto "sio" ? 0x40000

# SII (DDI) MC-6550
card "SII" "PHS DATA 64"
	config	auto "sio" ? 0x40000

# TDK 14.4 FAX/Data Modem
card "TDK" "DF1414 DATA/FAX MOD"
	config	0x23 "sio" ?

# TDK 14.4 FAX/Data Modem
card "TDK" "DF1414EX DATA/FAX M"
	config	0x23 "sio" ?

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

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

# XXX NOT SURE SUPPORTED
# 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" ?

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

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

# U.S. Robotics XJ1560J
card "U.S. Robotics" "XJ/CC1560J"
	config	0x22 "sio" ?

# Megahertz XJ1336
card "U.S. Robotics" "XJ/CC1336"
	config	0x21 "sio" ?

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

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

# Xircom CreditCard Ethernet+Modem (Modem only !!!)
card "Xircom" "CreditCard Ethernet"
	config	0x23 "sio" ?

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

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

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

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

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

# Megahertz X-Jack Ethernet
card "Megahertz" "CC10BT/2"
	config	0x1 "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	attr2hex 00:00:86
	ether	attr2
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

# Megahertz X-Jack Ethernet/Modem 14.4K
#card "MEGAHERTZ" "XJEM1144/CCEM1144"
#	multifunc
#	config	default "sn" ?
#	config	0x27 "sio" shared

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

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

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

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

# REX5535AC, REX5535X SCSI
card "PCMCIA SCSI MBH1040" "01"
	config	0x3a "spc" ?

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

# XXX NOT SUPPORTED YET
# RATOC REX-5536, Melco IFC-SC
#card "1195 RATOC System Inc." "REX5536 SCSI2 CARD"
#	config	0x7 "stg" ? 0

# XXX NOT SUPPORTED YET
# Future Domain SCSI2GO
#card "Future Domain Corporation" "SCSI PCMCIA Credit Card Controller"
#	config	default "stg" ?

# XXX NOT SUPPORTED YET
# IBM SCSI PCMCIA Card
#card "IBM Corp." "SCSI PCMCIA Card"
#	config	default "stg" ?

# XXX NOT SUPPORTED YET
# RATOC REX-5536AM, REX-9836A, ICM PSC-2401 SCSI
# (Don't put this entry under REX5535 series!)
# There's a buggy revision of this card which has broken CIS tupples.
# if you can't use this card, please use the point enabler. (for example,
# type "pccardc enabler 0 stg0 -a 0x4140 -i 5" from root command prompt)
#card "PCMCIA SCSI MBH10404" "01"
#	config	0x37 "stg" ?
#	logstr	"RATOC REX-5536AM SCSI"

# XXX NOT SUPPORTED YET
# RATOC REX-5536M
#card "PCMCIA SCSI2 CARD" "01"
#	config	0x5 "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 ##########

# Cabletron RoamAbout, WaveLAN/IEEE clone
card "Cabletron" "RoamAbout 802.11 DS"
	config	0x1 "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

# 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

# Laneed Wireless card
	config auto "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

# 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" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

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

# Melco Airconnect
card "MELCO" "WLI-PCM-L11"
	config	0x1 "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

# PLANEX GeoWave/GW-NS110
card "PLANEX" "GeoWave/GW-NS110"
	config	0x1 "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


########## 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	0x1 "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	0x1 "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 Realport card + modem
card "Xircom" "16-bit Ethernet + Modem 56"
	config	0x27 "xe" 9
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

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

# Xircom CreditCard 10Base-T "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)
card "Xircom" "CreditCard Ethernet 10/100 + Modem 56"
	config	0x27 "xe" ?
	insert	/etc/pccard_ether $device start
	remove	/etc/pccard_ether $device stop

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

# GENERIC PCMCIA modem
generic serial
	config	auto "sio" ?
	reset	10000			# for unstable cards
	logstr	"GENERIC PCMCIA modem"

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

OpenPOWER on IntegriCloud