#!/bin/sh

# this script inserts the ftape.o driver

echo "Make sure you don't have another floppy mounted"
echo "(RootDir  does not count as mounted after boot)"
echo "Insert BootDisk in floppy drive, then hit enter"
read ans;

echo "Mounting BootDisk ..."
mount -t ext2 /dev/fd0H1440 /fd0

echo "Inserting ftape driver ..."
/sbin/insmod /boot/modules/ftape.o

echo "Unmounting BootDisk ..."
umount /dev/fd0H1440

echo "Done."
