|
There is an error in the /etc/pcmcia/ide script. This script contains the following lines:
27 if [ ! -b /dev/$DEVICE ] ; then
28 cd /dev
29 mknod $DEVICE b $MAJOR 0
30 for $minor in 1 2 3 4 5 6 7 8 ; do
31 mknod ${DEVICE}$minor b $MAJOR $minor
32 done
33 fi
34 eval `/sbin/ide_info /dev/$DEVICE` || usage
The "$" in front of "minor" in line 30 should not be there.
|