#!/bin/sh
echo "Please insert startup floppy in /dev/fd0 (drive a:),"
echo "and press Enter when ready (or Ctrl-C to abort)."
echo ""
read junk
echo -n "Updating /etc contents on startup floppy...  "
mount /dev/fd0c /start_floppy
cd /etc
cp -r . /start_floppy/etc/
umount /dev/fd0c
echo " Done."
echo "Now you can safely remove the floppy."
