diff --git a/util/floppy-attach b/util/floppy-attach index 4ede53a..b26f53e 100755 --- a/util/floppy-attach +++ b/util/floppy-attach @@ -3,6 +3,11 @@ ### # This will mount an existing floppy disk image on a loop device # Or, it will create a disk image, and then mount it on a loop device +# +# If you don't supply a filename, then the script will create a blank default. +# +# Make sure to set your MEDIADIR as desired. +# ### MEDIADIR="/media/gmgauthier" diff --git a/util/floppy-make b/util/floppy-make index 6d09eb9..014ff37 100755 --- a/util/floppy-make +++ b/util/floppy-make @@ -1,7 +1,15 @@ #!/usr/bin/env bash ### -# This will create a new 1.44mb floppy disk image +# This will create a new 1.44mb floppy disk image by default +# But you can create a disk of any size. +# +# The first argument should be the filename +# If you supply a filename, then you have to supply a disk size +# valid sizes are 360, 720, 1440. +# +# Make sure to set DISKDIR to your chosen location for blanks +# ### DISKDIR="/home/gmgauthier/Retro/BLANKS"