#!/bin/sh


echo "Please insert a blank floppy in /dev/fd0."
echo "WARNING: the contents of the floppy will be permanently erased!"
echo "Press ^C to abort, Enter to continue."
read junk

echo "Writing picobsd.flp..."
dd if=picobsd.flp of=/dev/rfd0
echo "Done."
