井上です。
私が前々から疑問に思っていることを確認させてください。
Vine 2.5 or 2.6 で
/etc/sysconfig/pcmcia
の設定が無視されているのはなぜでしょうか?
仕様なのでしょうか?
というのも私の使用しているマシンのうち1台が非常に古いノートで
CardBus対応ではないので yenta_socket. では動作しません。
とりあえず現在は以下のようにしています。
/etc/rc.d/init.d/pcmcia
if [ "$PCIC" = "" ] ; then
echo $"PCIC module not defined in startup options!"
break
else
kernel=`uname -r | cut -d. -f1-2`
if [ $PCIC = yenta_socket -a $kernel = 2.2 ]; then
PCIC=i82365
fi
# if [ $PCIC != yenta_socket -a $kernel = 2.4 ]; then
# PCIC=yenta_socket
# fi
fi
よろしくお願いいたします。