#!/bin/sh -
#
# pccardether interfacename [ifconfig option]
#
# example: pccardether nep0 link1
#

pccarddir=/var/tmp/.pccard

if [ -f $pccarddir/pccard_dhcp ] ; then
# currently not implemented....
else 
	if [ -f $pccarddir/pccard_ether ] ; then
		interface=$1
		shift
		ifconfig $interface `cat $pccarddir/pccard_ether` $*
	fi
fi
