home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 206.lha / RamDev / ramdev-mountlist < prev    next >
Text File  |  1988-12-28  |  1KB  |  68 lines

  1. /*
  2.  * Mountlist for manually mounting the sample ramdisk driver.
  3.  *
  4.  * F0: and F1: are set up for the V1.3 fast file system (FFS).
  5.  * S2: and S3: are setup for the old file system (OFS).
  6.  *
  7.  *
  8.  * After mounting, the drives must be formatted.  Be sure to
  9.  * use the FFS flag when formatting the Fast File System
  10.  * ramdrives:
  11.  *
  12.  *    ;make sure "ramdev.device" is in DEVS:
  13.  *
  14.  *    mount f0: from mydev-mountlist
  15.  *    format drive f0: name "Zippy" FFS
  16.  *
  17.  */
  18. F0:       Device = ramdev.device
  19.        Unit   = 0
  20.        LowCyl = 0 ; HighCyl = 14
  21.        Surfaces  = 1
  22.        Buffers = 1
  23.        BlocksPerTrack = 10
  24.        Flags  = 0
  25.        Reserved = 2
  26.        GlobVec = -1
  27.        BufMemType = 0
  28.        DosType = 0x444F5301
  29.        StackSize = 4000
  30.        FileSystem = l:fastfilesystem
  31. #
  32. F1:       Device = ramdev.device
  33.        Unit   = 1
  34.        LowCyl = 0 ; HighCyl = 14
  35.        Surfaces  = 1
  36.        Buffers = 1
  37.        BlocksPerTrack = 10
  38.        Flags  = 0
  39.        Reserved = 2
  40.        GlobVec = -1
  41.        BufMemType = 0
  42.        DosType = 0x444F5301
  43.        StackSize = 4000
  44.        FileSystem = l:fastfilesystem
  45. #
  46. S2:       Device = ramdev.device
  47.        Unit   = 2
  48.        Flags  = 0
  49.        Surfaces  = 1
  50.        BlocksPerTrack = 10
  51.        Reserved = 1
  52.        Interleave = 0
  53.        LowCyl = 0  ;  HighCyl = 14
  54.        Buffers = 1
  55.        BufMemType = 0
  56. #
  57. S3:       Device = ramdev.device
  58.        Unit   = 3
  59.        Flags  = 0
  60.        Surfaces  = 1
  61.        BlocksPerTrack = 10
  62.        Reserved = 1
  63.        Interleave = 0
  64.        LowCyl = 0  ;  HighCyl = 14
  65.        Buffers = 1
  66.        BufMemType = 0
  67. #
  68.