0862a4aff9
(gotta get myself -current again, this is a drag). Also-fixes-problems-noted-by: Wolfgang Helbig & Joerg Wunsch
16 lines
317 B
Bash
16 lines
317 B
Bash
#!/bin/sh -
|
|
#
|
|
# PC-card startup script
|
|
# HOSOKAWA, Tatsumi <hosokawa@mt.cs.keio.ac.jp>
|
|
#
|
|
|
|
if [ "X$pccard_enable" = X"YES" ] ; then
|
|
if [ "x$pccard_mem" != "xDEFAULT" ] ; then
|
|
pccardc pccardmem $pccard_mem
|
|
else
|
|
pccardc pccardmem 0xd0000
|
|
fi
|
|
echo -n "Enable PC-card."
|
|
pccardd 2>&1 > /var/log/pccardd.debug &
|
|
fi
|