INSTALL
Run make install

UNINSTALL
Run make uninstall

SYNOPSIS
mkbootdisk [--version] [--noprompt] [--verbose]
           [--mkinitrdargs <args>] [--device <devicefile>]
           [--loop] [--compact] [--kernelargs <args>] <kernel>

DESCRIPTION
mkbootdisk  creates  a  boot floppy appropriate for the running system.
The boot disk is  entirely  self-contained,  and  includes  an  initial
ramdisk  image  which  loads any necessary SCSI modules for the system.
The created boot disk looks for the root filesystem on the device  sug-
gested by /etc/fstab.  The only required argument is the kernel version
to put onto the boot floppy.

OPTIONS
--device <devicefile>
       The boot image is created on <devicefile>. If --device is  not
       specified, /dev/fd0 is used.

--loop <imagefile>
       If  --loop is specified, boot image will be copied to image file
       instead of floppy disk.  Before using  --loop  option  you  will
       have  to create an image file manually. For example, if you want
       an image size of 1.44 floppy disk, you can create this image  by
       following these two steps:
         1. dd if=/dev/zero of=imagefile bs=1k count=1440
         2. mkfs.vfat imagefile

--mkinitrdargs <args>
       Passes <args> to mkinitrd (which is used to create the initial
       ramdisk image for the boot floppy). Any mkinitrd  arguments  may
       be specified.

--noprompt
       Normally,  mkbootdisk  instructs the user to insert a floppy and
       waits for confirmation before continuing. If --noprompt is spec-
       ified, no prompt is displayed.

--verbose
       Instructs mkbootdisk to talk about what it's doing as it's doing
       it. Normally, there is no output from mkbootdisk.

--version
       Displays the version of mkbootdisk and exits.

--compact
       Use the "compact" LILO option.

--kernelargs <args>
       Adds <args> to the arguments appended on  the  kernel  command
       line.

AUTHOR
Erik Troan <ewt@redhat.com> - original author
Josip Deanovic <djosip@linuxpages.org> - added --loop option
