head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	96.03.14.18.24.03;	author nate;	state dead;
branches;
next	1.1;

1.1
date	96.03.12.15.39.23;	author nate;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Renamed the relevant PC-Card support files to reflect the newest release.
@
text
@#!/bin/sh -
#
# PC-card startup script
# HOSOKAWA, Tatsumi <hosokawa@@mt.cs.keio.ac.jp>
#

if [ "x$apm_enable" = "xYES" ] ; then
	echo "Enable APM BIOS."
	/usr/sbin/apmconf -e
fi

if [ "x$pccard_enable" != "xNO" ] ; then
	if [ "x$pccard_mem" != "xNO" ] ; then
		/usr/sbin/pccardc pccardmem $pccard_mem
	else
		/usr/sbin/pccardc pccardmem 0xd0000
	fi
	echo -n "Enable PC-card." 
	/usr/sbin/pccardd 2>&1 > /var/log/pccardd.debug &
fi
@


1.1
log
@PC-CARD hooks.  Someday it will actually enable working code. :)

Reviewed by:	phk
Submitted by:	Tatsumi Hosokawa <hosokawa@@mt.cs.keio.ac.jp> & BSD Nomads

I re-wrote alot of this, but the ideas are based on the code from the
most recent pccard-snapshot.
@
text
@@
