home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / utility / misc / ffsflopp.lha / FfsMountList < prev    next >
Encoding:
Text File  |  1992-06-28  |  1.2 KB  |  44 lines

  1. /* Note: These mountlist entries differ from the examples given in the readme
  2.  * file in that the line "PreAlloc = 11" has been removed. This is not needed
  3.  * and caused 4K to be unuseable.  These entries are identical to what 2.04
  4.  * uses for ffs floppies. Feel free to increase the number of buffers in the
  5.  * "Buffers = " line below.  I used a value of 30 for my system.
  6.  * -- Lance Tagliapietra - 28-June-92
  7.  */
  8. /* Entries to mount the normal DF0: and DF1: as FF0: and FF1:, those new
  9.  * handlers will use FFS.
  10.  */
  11. FF0:       Device = trackdisk.device
  12.        FileSystem = l:FastFileSystem
  13.        GlobVec = -1
  14.        Mask = 0x7FFF
  15.        Unit   = 0
  16.        Flags  = 1
  17.        Surfaces  = 2
  18.        Mount = 1
  19.        BlocksPerTrack = 11
  20.        Reserved = 2
  21.        Interleave = 0
  22.        LowCyl = 0  ;  HighCyl = 79
  23.        Buffers = 5
  24.        BufMemType = 3
  25.        DosType = 0x444F5301
  26. #
  27.  
  28. FF1:       Device = trackdisk.device
  29.        FileSystem = l:FastFileSystem
  30.        GlobVec = -1
  31.        Mask = 0x7FFF
  32.        Unit   = 1
  33.        Flags  = 1
  34.        Surfaces  = 2
  35.        Mount =1
  36.        BlocksPerTrack = 11
  37.        Reserved = 2
  38.        Interleave = 0
  39.        LowCyl = 0  ;  HighCyl = 79
  40.        Buffers = 5
  41.        BufMemType = 3
  42.        DosType = 0x444F5301
  43. #
  44. /* end ffs mountlist entries */