Package: dosemu
Version: 0.60.3-1

a) dosemu is still a.out

file /usr/bin/dos
/usr/bin/dos: setuid Linux/i386 impure executable (OMAGIC)

b) dosemu config script asks:
echo " "
echo "What size is floppy drive B:"
echo "  0 3.5inch  1 5.25inch"
read FLOPSIZE
if [ "$FLOPSIZE" != "1" ]; then
  echo "floppy { device /dev/fd1 threeinch }" >>$CONFFILE
else
  echo "floppy { device /dev/fd1 fiveinch }" >>$CONFFILE
fi

better :

echo " "
echo "What size is floppy drive B:"
echo "  0 3.5inch  1 5.25inch 2 none"
read FLOPSIZE
if [ "$FLOPSIZE" != "1" ]; then
  if [ "$FLOPSIZE" != "2" ]; then
    echo "floppy { device /dev/fd1 threeinch }" >>$CONFFILE
  fi
else
  echo "floppy { device /dev/fd1 fiveinch }" >>$CONFFILE
fi


Regards,

        Andreas


Reply via email to