home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / disks / disk451.lzh / RRamDisk / mountlist < prev    next >
Text File  |  1991-02-06  |  2KB  |  83 lines

  1. /* ramdisk.device has a maximum of 2048 blocks. It supports units 0 through
  2. 31 with flags:
  3.  
  4.       1  -  Recoverable. Data is preserved.
  5.       2  -  Formatable and Diskcopyable. You can diskcopy to this drive.
  6.             Note - Even though RamDisk is intelligent and will deallocate
  7.             memory for unused tracks, a format or diskcopy will force
  8.             the entire disk to be copied to memory before the deallocation
  9.             starts. This is guarinteed to fragment memory.
  10.       4  -  AutoBoot. Can boot from this drive. If this flag is set,
  11.             then the disk is remounted automatically on warm boot.
  12.             NOTE - Does Not Work with fastfilesystem. You will still have
  13.             to mount devices which do not boot to DOS. Also, if BootPri
  14.             is set higher than other devices, DOS will boot from this
  15.             drive.
  16.  
  17.    For instance, to set up a disk which is both recoverable, and also is
  18. automatically mounted on warmboot use:
  19.  
  20.          1 (Recoverable) + 4(AutoBoot) = 5
  21.  
  22.    RamDisk uses the bitmap to deallocate unused sectors. Therefore, non-
  23. AMIGA disks cannot be copied to RamDisk.
  24. */
  25.  
  26. /* Our boot disk. */
  27.  
  28. Boot:
  29.            Device = ramdisk.device
  30.            Unit   = 0
  31.            Flags  = 7
  32.            Surfaces  = 2
  33.            BlocksPerTrack = 11
  34.            Reserved = 2
  35.            Interleave = 0
  36.            LowCyl = 0 ;  HighCyl = 79
  37.            Buffers = 1
  38.            BufMemType = 5
  39.            Mount = 1
  40.            BootPri =127
  41.            Priority = 5
  42. #
  43.  
  44. /* non-recoverable ram disk for lots of intermediate stuff.
  45. Use this for fast DiskCopy's */
  46.  
  47. Disk:
  48.            Device = ramdisk.device
  49.            Unit   = 3
  50.            Flags  = 6
  51.            Surfaces  = 2
  52.            BlocksPerTrack = 11
  53.            Reserved = 2
  54.            Interleave = 0
  55.            LowCyl = 0 ;  HighCyl = 79
  56.            Buffers = 1
  57.            BufMemType = 5
  58.            Mount = 1
  59.            BootPri = -128
  60.            Priority = 5
  61. #
  62.  
  63. /* an example of a ramdisk using the FastFileSystem */
  64. Fast:
  65.            Device = ramdisk.device
  66.            Unit   = 30
  67.            Flags  = 1
  68.            Surfaces  = 2
  69.            BlocksPerTrack = 11
  70.            Reserved = 2
  71.            Interleave = 0
  72.            LowCyl = 0 ;  HighCyl = 79
  73.            Buffers = 1
  74.            BufMemType = 5
  75.            Mount = 1
  76.            GlobVec = -1
  77.            FileSystem = l:FastFileSystem
  78.            MaxTransfer = 512
  79.            DosType = 0x444F5301
  80.            BootPri = -128
  81. #
  82.  
  83.