This directory contains a GRUB floppy image that can be directly 
written to a 1.44 Mb floppy and booted.  

GRUB is the GRand Unified Bootloader and its official home is
http://www.gnu.org/software/grub/.

General Instructions
====================
The file grubmenu on the floppy contains the list of all executables
on the floppy and must be modified by hand if any executable is added
to or deleted from the floppy.

Instructions for Linux
======================

To write the floppy image on Linux:

   zcat grub144.gz | dd of=/dev/fd0 

OR:

   gunzip grub144.gz
   dd if=grub144 of=/dev/fd0 

To delete an image on the floppy:

   mdel a:UNWANTED_PROGRAM.exe

To put a new executable on the floppy:

  mcopy MYEXECUTABLE.exe a:


