Date: Sun, 2 Dec 2001 11:44:50 -0600 From: "denny white" <dennyboy@cableone.net> To: <freebsd-questions@FreeBSD.ORG> Subject: RE: IPv6 & NIC problems, slow access using linksys pccard and ed driver Message-ID: <000f01c17b59$0db5ab40$6601a8c0@hal>
next in thread | raw e-mail | index | archive | help
(2nd post: Am resending this message before with the =
/etc/defaults/pccard.conf
included this time. Read some posts & saw it would probably be needed)
Had written to the group previously about this problem, then used
another system for awhile on my laptop instead of FreeBSD in order
to get some work done. Now am running FreeBSD again, version 4.4
& everything is working fine except am still getting dismal speeds on
my cable Internet connection. When I had IPv6 enabled in the kernel &
in rc.conf, I would get the message "DAD detected duplicate IPv6 address
fe80:0004::02e0:98ff:fe8a:a1fc: NS in/out=3D1/1 NA in =3D0". I had read =
where
someone else had similar problems & that's when I commented IPv6 out
in rc.conf, took it out of the kernel & recompiled it. The 1st time =
after reboot,
I got great speeds for awhile. Then later it was back to about ISDN =
rates &
often much lower. On Ted Mittelstaedt's advice from message back from
several months ago, I've ordered a 3com 3c589c nic, because he said
that's the 1st thing anyone would ask me, if I had the same the problem =
with
any other cards, but while I'm waiting on it, I'd still like to get to =
the bottom of
this if I could. Below are copies of the current ifconfig & dmesg output =
along
with pccard_ether & the kernel config info. Please advise if there's =
anything
else I can post to help.=20
The pcmcia nic info is:
LinkSys Fast Ethernet 10/100 PC Card - Model NP100
Thanks to all for any & all help.
Dennis White
-------------------------------------------------------------------------=
-------------------------------
ifconfig output:
lp0: flags=3D8810<POINTOPOINT,SIMPLEX,MULTICAST> mtu 1500
lo0: flags=3D8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
inet 127.0.0.1 netmask 0xff000000
ed1: flags=3D8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
inet 192.168.1.101 netmask 0xffffff00 broadcast 192.168.1.255
ether 00:e0:98:8a:a1:fc
media: Ethernet autoselect (10baseT/UTP)
status: active
---------------------------------------------------------------------
pccard_ether:
#!/bin/sh -
#
# $FreeBSD: src/etc/pccard_ether,v 1.15.2.9.2.1 2001/09/14 17:32:25 imp =
Exp $
#
# pccard_ether interfacename [start|stop] [ifconfig option]
#
# example: pccard_ether ep0 start -link0
#
stop_dhcp() {
if [ -s /var/run/dhclient.${interface}.pid ]; then
pidfile=3D"/var/run/dhclient.${interface}.pid"
elif [ -s /var/run/dhcpc.${interface}.pid ]; then
pidfile=3D"/var/run/dhcpc.${interface}.pid"
else
return
fi
kill `cat ${pidfile}`
rm -f ${pidfile}
}
start_dhcp() {
stop_dhcp
if [ -x "${dhcp_program}" ]; then
if [ `basename ${dhcp_program}` =3D "dhclient" ]; then
pidfile=3D"/var/run/dhclient.${interface}.pid"
dhcp_flags=3D"${dhcp_flags} -pf ${pidfile}"
fi
${dhcp_program} ${dhcp_flags} ${interface}
else
echo "${dhcp_program}: DHCP client software not available"
fi
}
# Suck in the configuration variables
#
if [ -r /etc/defaults/rc.conf ]; then
. /etc/defaults/rc.conf
source_rc_confs
elif [ -r /etc/rc.conf ]; then
. /etc/rc.conf
fi
interface=3D$1
shift
startstop=3D$1
shift
case ${pccard_ether_delay} in
[Nn][Oo])
;;
[0-9])
sleep ${pccard_ether_delay}
;;
*) # Default until it has had a chance to make it to =
/etc/defaults/rc.conf
sleep 5
;;
esac
case ${pccard_ifconfig} in
[Nn][Oo] | '')
;;
*)
# Backward compatible
eval ifconfig_${interface}=3D\${pccard_ifconfig}
;;
esac
case ${startstop} in
[Ss][Tt][Aa][Rr][Tt] | '')
if [ -r /etc/start_if.${interface} ]; then
. /etc/start_if.${interface}
fi
eval ifconfig_args=3D\$ifconfig_${interface}
case ${ifconfig_args} in
[Nn][Oo] | '')
;;
[Dd][Hh][Cc][Pp])
# Start up the DHCP client program
start_dhcp
;;
*)
# Do the primary ifconfig if specified
ifconfig ${interface} ${ifconfig_args} $*
# Check to see if aliases need to be added
alias=3D0
while :
do
eval ifx_args=3D\$ifconfig_${interface}_alias${alias}
if [ -n "${ifx_args}" ]; then
ifconfig ${interface} ${ifx_args} alias
alias=3D`expr ${alias} + 1`
else
break;
fi
done
# Do ipx address if specified
eval ifx_args=3D\$ifconfig_${interface}_ipx
if [ -n "${ifx_args}" ]; then
ifconfig ${interface} ${ifx_args}
fi
# Add default route into $static_routes
case ${defaultrouter} in
[Nn][Oo] | '')
;;
*)
static_routes=3D"default ${static_routes}"
route_default=3D"default ${defaultrouter}"
;;
esac
# Add private route for this interface into $static_routes
eval ifx_routes=3D\$static_routes_${interface}
if [ -n "${ifx_routes}" ]; then
static_routes=3D"${ifx_routes} ${static_routes}"
fi
# Set up any static routes if specified
if [ -n "${static_routes}" ]; then
for i in ${static_routes}; do
eval route_args=3D\$route_${i}
route add ${route_args}
done
fi
;;
esac
# IPv6 setup
case ${ipv6_enable} in
[Yy][Ee][Ss])
if [ -r /etc/rc.network6 ]; then
. /etc/rc.network6
network6_interface_setup ${interface}
fi
;;
esac
;;
# Stop the interface
*)
if [ -r /etc/stop_if.${interface} ]; then
. /etc/stop_if.${interface}
fi
eval ifconfig_args=3D\$ifconfig_${interface}
case ${ifconfig_args} in
[Nn][Oo] | '')
;;
[Dd][Hh][Cc][Pp])
# Stop the DHCP client for this interface
stop_dhcp
;;
*)
# Delelte static route if specified
eval ifx_routes=3D\$static_routes_${interface}
if [ -n "${ifx_routes}" ]; then
for i in ${ifx_routes}; do
eval route_args=3D\$route_${i}
route delete ${route_args}
done
fi
# Delete aliases if exist
alias=3D0
while :
do
eval ifx_args=3D\$ifconfig_${interface}_alias${alias}
if [ -n "${ifx_args}" ]; then
ifconfig ${interface} ${ifx_args} alias delete
alias=3D`expr ${alias} + 1`
else
break;
fi
done
;;
esac
# Remove the network interface and clean the ARP table
ifconfig ${interface} delete
arp -d -a
;;
esac
--------------------------------------------------------------------
current kernel config
#
# GENERIC -- Generic kernel configuration file for FreeBSD/i386
#
# For more information on this file, please read the handbook section on
# Kernel Configuration Files:
#
# http://www.FreeBSD.org/handbook/kernelconfig-config.html
#
# The handbook is also available locally in /usr/share/doc/handbook
# if you've installed the doc distribution, otherwise always see the
# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
# latest information.
#
# An exhaustive list of options and more detailed explanations of the
# device lines is also present in the ./LINT configuration file. If you =
are
# in doubt as to the purpose or necessity of a line, check first in =
LINT.
#
# $FreeBSD: src/sys/i386/conf/GENERIC,v 1.246.2.34 2001/08/12 13:13:46 =
joerg Exp $
machine i386
#cpu I386_CPU
#cpu I486_CPU
#cpu I586_CPU
cpu I686_CPU
ident MYKERNEL2
maxusers 128
#makeoptions DEBUG=3D-g #Build kernel with gdb(1) debug symbols
#options MATH_EMULATE #Support for x87 emulation
options INET #InterNETworking
#options INET6 #IPv6 communications protocols
options FFS #Berkeley Fast Filesystem
options FFS_ROOT #FFS usable as root device [keep this!]
options SOFTUPDATES #Enable FFS soft updates support
options MFS #Memory Filesystem
options MD_ROOT #MD is a potential root device
#options NFS #Network Filesystem
#options NFS_ROOT #NFS usable as root device, NFS required
#options MSDOSFS #MSDOS Filesystem
#options CD9660 #ISO 9660 Filesystem
#options CD9660_ROOT #CD-ROM usable as root, CD9660 required
options PROCFS #Process filesystem
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
options SCSI_DELAY=3D15000 #Delay (in ms) before probing SCSI
options UCONSOLE #Allow users to grab the console
options USERCONFIG #boot -c editor
options VISUAL_USERCONFIG #visual boot -c editor
options KTRACE #ktrace(1) support
options SYSVSHM #SYSV-style shared memory
options SYSVMSG #SYSV-style message queues
options SYSVSEM #SYSV-style semaphores
options P1003_1B #Posix P1003_1B real-time extensions
options _KPOSIX_PRIORITY_SCHEDULING
options ICMP_BANDLIM #Rate limit bad replies
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
# To make an SMP kernel, the next two are needed
#options SMP # Symmetric MultiProcessor Kernel
#options APIC_IO # Symmetric (APIC) I/O
device isa
device eisa
device pci
device pcm0 at isa? irq 5 drq 1 flags 0x0
# Floppy drives
device fdc0 at isa? port IO_FD1 irq 6 drq 2
device fd0 at fdc0 drive 0
#device fd1 at fdc0 drive 1
#
# If you have a Toshiba Libretto with its Y-E Data PCMCIA floppy,
# don't use the above line for fdc0 but the following one:
#device fdc0
# ATA and ATAPI devices
device ata0 at isa? port IO_WD1 irq 14
#device ata1 at isa? port IO_WD2 irq 15
device ata
device atadisk # ATA disk drives
device atapicd # ATAPI CDROM drives
device atapifd # ATAPI floppy drives
device atapist # ATAPI tape drives
options ATA_STATIC_ID #Static device numbering
# SCSI Controllers
#device ahb # EISA AHA1742 family
#device ahc # AHA2940 and onboard AIC7xxx devices
#device amd # AMD 53C974 (Tekram DC-390(T))
#device isp # Qlogic family
#device ncr # NCR/Symbios Logic
#device sym # NCR/Symbios Logic (newer chipsets)
#options SYM_SETUP_LP_PROBE_MAP=3D0x40
# Allow ncr to attach legacy NCR devices when
# both sym and ncr are configured
device adv0 at isa?
device adw
device bt0 at isa?
device aha0 at isa?
device aic0 at isa?
device ncv # NCR 53C500
device nsp # Workbit Ninja SCSI-3
device stg # TMC 18C30/18C50
# SCSI peripherals
device scbus # SCSI bus (required)
#device da # Direct Access (disks)
#device sa # Sequential Access (tape etc)
#device cd # CD
device pass # Passthrough device (direct SCSI access)
# RAID controllers interfaced to the SCSI subsystem
#device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID
#device dpt # DPT Smartcache - See LINT for options!
#device mly # Mylex AcceleRAID/eXtremeRAID
# RAID controllers
#device aac # Adaptec FSA RAID, Dell PERC2/PERC3
#device ida # Compaq Smart RAID
#device amr # AMI MegaRAID
#device mlx # Mylex DAC960 family
#device twe # 3ware Escalade
# atkbdc0 controls both the keyboard and the PS/2 mouse
device atkbdc0 at isa? port IO_KBD
device atkbd0 at atkbdc? irq 1 flags 0x1
device psm0 at atkbdc? irq 12
device vga0 at isa?
# splash screen/screen saver
pseudo-device splash
# syscons is the default console driver, resembling an SCO console
device sc0 at isa? flags 0x100
# Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver
#device vt0 at isa?
#options XSERVER # support for X server on a vt console
#options FAT_CURSOR # start with block cursor
# If you have a ThinkPAD, uncomment this along with the rest of the PCVT =
lines
#options PCVT_SCANSET=3D2 # IBM keyboards are non-std
# Floating point support - do not disable.
device npx0 at nexus? port IO_NPX irq 13
# Power management support (see LINT for more options)
device apm0 at nexus? disable flags 0x20 # Advanced Power Management
# PCCARD (PCMCIA) support
device card
device pcic0 at isa? irq 0 port 0x3e0 iomem 0xd0000
device pcic1 at isa? irq 0 port 0x3e2 iomem 0xd4000 disable
# Serial (COM) ports
device sio0 at isa? port IO_COM1 flags 0x10 irq 4
device sio1 at isa? port IO_COM2 irq 3
device sio2 at isa? disable port IO_COM3 irq 5
device sio3 at isa? disable port IO_COM4 irq 9
# Parallel port
device ppc0 at isa? irq 7
device ppbus # Parallel port bus (required)
device lpt # Printer
device plip # TCP/IP over parallel
device ppi # Parallel port interface device
#device vpo # Requires scbus and da
# PCI Ethernet NICs.
#device de # DEC/Intel DC21x4x (``Tulip'')
#device txp # 3Com 3cR990 (``Typhoon'')
#device vx # 3Com 3c590, 3c595 (``Vortex'')
# PCI Ethernet NICs that use the common MII bus controller code.
# NOTE: Be sure to keep the 'device miibus' line in order to use these =
NICs!
device miibus # MII bus support
#device dc # DEC/Intel 21143 and various workalikes
#device fxp # Intel EtherExpress PRO/100B (82557, 82558)
#device pcn # AMD Am79C97x PCI 10/100 NICs
#device rl # RealTek 8129/8139
#device sf # Adaptec AIC-6915 (``Starfire'')
#device sis # Silicon Integrated Systems SiS 900/SiS 7016
#device ste # Sundance ST201 (D-Link DFE-550TX)
#device tl # Texas Instruments ThunderLAN
#device tx # SMC EtherPower II (83c170 ``EPIC'')
#device vr # VIA Rhine, Rhine II
#device wb # Winbond W89C840F
#device wx # Intel Gigabit Ethernet Card (``Wiseman'')
#device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')
# ISA Ethernet NICs.
# 'device ed' requires 'device miibus'
device ed0 at isa? port 0x280 irq 10 iomem 0xd8000
#device ex
#device ep
#device fe0 at isa? port 0x300
# Xircom Ethernet
#device xe
# PRISM I IEEE 802.11b wireless NIC.
#device awi
# WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really
# exists only as a PCMCIA device, so there is no ISA attachment needed
# and resources will always be dynamically assigned by the pccard code.
device wi
# Aironet 4500/4800 802.11 wireless NICs. Note: the declaration below =
will
# work for PCMCIA and PCI cards, as well as ISA cards set to ISA PnP
# mode (the factory default). If you set the switches on your ISA
# card for a manually chosen I/O address and IRQ, you must specify
# those parameters here.
device an
# The probe order of these is presently determined by =
i386/isa/isa_compat.c.
device ie0 at isa? port 0x300 irq 10 iomem 0xd0000
#device le0 at isa? port 0x300 irq 5 iomem 0xd0000
device lnc0 at isa? port 0x280 irq 10 drq 0
device cs0 at isa? port 0x300
device sn0 at isa? port 0x300 irq 10
# Pseudo devices - the number indicates how many units to allocate.
pseudo-device loop # Network loopback
pseudo-device ether # Ethernet support
#pseudo-device sl 1 # Kernel SLIP
#pseudo-device ppp 1 # Kernel PPP
pseudo-device tun # Packet tunnel.
pseudo-device pty # Pseudo-ttys (telnet etc)
pseudo-device md # Memory "disks"
#pseudo-device gif # IPv6 and IPv4 tunneling
#pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation)
#pseudo-device stf 1 # 6to4 IPv6 over IPv4 encapsulation
# The `bpf' pseudo-device enables the Berkeley Packet Filter.
# Be aware of the administrative consequences of enabling this!
pseudo-device bpf #Berkeley packet filter
# USB support
device uhci # UHCI PCI->USB interface
device ohci # OHCI PCI->USB interface
device usb # USB Bus (required)
device ugen # Generic
device uhid # "Human Interface Devices"
#device ukbd # Keyboard
#device ulpt # Printer
#device umass # Disks/Mass storage - Requires scbus and da
#device ums # Mouse
#device uscanner # Scanners
# USB Ethernet, requires mii
#device aue # ADMtek USB ethernet
#device cue # CATC USB ethernet
#device kue # Kawasaki LSI USB ethernet
--------------------------------------------------------------------
dmesg output:
Copyright (c) 1992-2001 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD 4.4-RELEASE #0: Sun Dec 2 04:31:01 CST 2001
dennyboy@mobile2.cableone.net:/usr/src/sys/compile/MYKERNEL2
Timecounter "i8254" frequency 1193182 Hz
CPU: Pentium II/Pentium II Xeon/Celeron (266.62-MHz 686-class CPU)
Origin =3D "GenuineIntel" Id =3D 0x652 Stepping =3D 2
=
Features=3D0x183f9ff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,=
CMOV,PAT,PSE36,MMX,FXSR>
real memory =3D 100597760 (98240K bytes)
avail memory =3D 94314496 (92104K bytes)
Preloaded elf kernel "kernel" at 0xc0356000.
Pentium Pro MTRR support enabled
md0: Malloc disk
Using $PIR table, 4 entries at 0xc00f1330
npx0: <math processor> on motherboard
npx0: INT 16 interface
pcib0: <Intel 82443BX host to PCI bridge (AGP disabled)> on motherboard
pci0: <PCI bus> on pcib0
pci_cfgintr_unique: hard-routed to irq 11
pci_cfgintr: 0:2 INTA routed to irq 11
pcic0: <Toshiba ToPIC97 PCI-CardBus Bridge> irq 11 at device 2.0 on pci0
pcic0: PCI Memory allocated: 0x44000000
pccard0: <PC Card bus (classic)> on pcic0
pci_cfgintr_linked: linked (61) to hard-routed irq 11
pci_cfgintr: 0:2 INTB routed to irq 11
pcic1: <Toshiba ToPIC97 PCI-CardBus Bridge> irq 11 at device 2.1 on pci0
pcic1: PCI Memory allocated: 0x44001000
pccard1: <PC Card bus (classic)> on pcic1
pci0: <Chips & Technologies 65555 SVGA controller> at 4.0
isab0: <Intel 82371AB PCI to ISA bridge> at device 7.0 on pci0
isa0: <ISA bus> on isab0
atapci0: <Intel PIIX4 ATA33 controller> port 0xfe60-0xfe6f at device 7.1 =
on pci0
ata0: at 0x1f0 irq 14 on atapci0
ata1: at 0x170 irq 15 on atapci0
uhci0: <Intel 82371AB/EB (PIIX4) USB controller> port 0xffe0-0xffff irq =
11 at device 7.2 on pci0
usb0: <Intel 82371AB/EB (PIIX4) USB controller> on uhci0
usb0: USB revision 1.0
uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
chip1: <Intel 82371AB Power management controller> port 0xfe70-0xfe7f at =
device 7.3 on pci0
chip2: <Toshiba Fast Infra Red controller> port 0xff80-0xff9f irq 11 at =
device 10.0 on pci0
orm0: <Option ROM> at iomem 0xc0000-0xcbfff on isa0
pcm0: <OPL3-SAx (YMF719)> at port =
0x530-0x537,0x538-0x539,0xf8c-0xf94,0xe0e irq 5 drq 1 flags 0xc100 on =
isa0
fdc0: <NEC 765 or clone> at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0
fd0: <1440-KB 3.5" drive> on fdc0 drive 0
atkbdc0: <Keyboard controller (i8042)> at port 0x60,0x64 on isa0
atkbd0: <AT Keyboard> flags 0x1 irq 1 on atkbdc0
kbd0 at atkbd0
psm0: <PS/2 Mouse> irq 12 on atkbdc0
psm0: model GlidePoint, device ID 0
vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on =
isa0
sc0: <System console> at flags 0x100 on isa0
sc0: VGA <16 virtual consoles, flags=3D0x300>
sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0
sio0: type 16550A
sio1: configured irq 3 not in bitmap of probed irqs 0
ppc0: <Parallel port> at port 0x378-0x37f irq 7 on isa0
ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode
ppc0: FIFO with 16/16/8 bytes threshold
plip0: <PLIP network interface> on ppbus0
lpt0: <Printer> on ppbus0
lpt0: Interrupt-driven port
ppi0: <Parallel I/O> on ppbus0
pccard: card inserted, slot 0
pccard: card inserted, slot 0
ata1-slave: ata_command: timeout waiting for intr
ata1-slave: identify failed
ad0: 4126MB <TOSHIBA MK4310MAT> [8944/15/63] at ata0-master UDMA33
acd0: CDROM <CD-224E> at ata1-master using PIO4
Mounting root from ufs:/dev/ad0s1a
ed1 at port 0x300-0x31f irq 11 slot 0 on pccard0
ed1: address 00:e0:98:8a:a1:fc, type Linksys (16 bit)
ukphy0: <Generic IEEE 802.3u media interface> on miibus0
ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
-------------------------------------------------------------------------=
----------------------------
pccard.conf
#
# Default PCCARD configuration file
#
# $FreeBSD: src/etc/defaults/pccard.conf,v 1.98.2.27 2001/09/10 08:15:29 =
imp Exp $
#
# 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 $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 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
########## 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 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
# 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" ?
# 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" ?
# 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" ?
# 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" ?
=20
########## 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
# 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 ##########
# 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.
# Xircom CreditCard Netwave
#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 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
# 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 LPC2-CLT
card "BUFFALO" "LPC2-CLT"
config auto "ed" ?
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 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
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
# Linksys Combo PCMCIA Ethernet Card
card "E-CARD" "E-CARD"=20
config auto "ed" ?=20
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=20
# other info. (such as additional information or OEM-ID/product-ID).
# 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 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 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)=20
card "Linksys" "Combo PCMCIA EthernetCard (EC2T)"
config auto "ed" ?=20
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
# 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
# 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 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 -link0 link1
# 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 -link0 link1
# insert /etc/pccard_ether $device start link0 -link1
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 ##########
# XXX NOT SUPPORTED YET
# IO DATA PCJOY
#card "IO DATA" "PCJOY"
# config default "joy" pio
## config 0x1 "joy" pio
## config 0x2 "joy" pio
########## 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.=20
card "AD PC_CARD" "RC288ACL"=20
config auto "sio" ?=20
# 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" ?
# 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=20
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=20
# 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
# Zoom 56K modem=20
# 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=20
# `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 ##########
# 3com 3crwe737A AirConnect Wireless LAN PC Card
#Something is wrong with this entry.
card "3Com" "3CRWE737A AirConnect Wireless LAN PC Card"
config auto "wi" ? 0x10000
insert /etc/pccard_ether $device start
remove /etc/pccard_ether $device stop
# Addtron AWP-100
card "Addtron" "AWP-100 Wireless PCMCIA"
config auto "wi" ? 0x10000
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
# 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
# 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" ? 0x10000
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" ? 0x10000
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
# Linksys Instant Wireless WPC11
card "Instant Wireless " " Network PC CARD"
config auto "wi" ? 0x10000
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" ? 0x10000
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
# Melco Airconnect (128bit WEP)
card "BUFFALO" "WLI-PCM-L11G"
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" ? 0x10000
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
# SMC's SMC2632W.
card "SMC" "SMC2632W"
config auto "wi" ? 0x10000
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 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
# -------------------------------------------------------------------
#=20
# "Wildcard" entries
#=20
# -------------------------------------------------------------------
# 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 auto "ata" ?
logstr "GENERIC Flash ATA / ATA HDD"
-------------------------------------------------------------------------=
----------------------------
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?000f01c17b59$0db5ab40$6601a8c0>
