home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 2: Collection B / 17Bit_Collection_B.iso / files / 2260.dms / in.adf / devs / MountList < prev    next >
Encoding:
Text File  |  1991-12-03  |  3.3 KB  |  158 lines

  1. /* MountList for V1.3 */
  2.  
  3. /*  Mount Entry for the new Console Handler */
  4.  
  5. NEWCON: 
  6.     Handler = L:Newcon-Handler
  7.     Priority = 5
  8.     StackSize = 1000
  9. #
  10.  
  11. /* This is an example of a non-filing system mount using a handler written
  12.    in C.
  13. */
  14.  
  15. SPEAK:     
  16.     Handler = L:Speak-Handler
  17.     Stacksize = 6000
  18.     Priority = 5
  19.     GlobVec = -1
  20. #
  21.  
  22. /*  This is an example of an alternative type of non-filing device mount,
  23.     used to mount the non-buffered serial handler
  24. */
  25.  
  26. AUX:
  27.     Handler = L:Aux-Handler
  28.     Stacksize = 1000
  29.     Priority = 5
  30. #
  31. /*  This is a non-filing system device */
  32.  
  33. PIPE:      
  34.     Handler = L:Pipe-Handler
  35.     Stacksize = 6000
  36.     Priority = 5
  37.     GlobVec = -1
  38. #
  39.  
  40. /*   ConMan's Pipe device. */
  41.  
  42. PIP:
  43.    Handler = L:ConHandler
  44.    Stacksize = 600
  45.    Priority = 5
  46.    GlobVec = 0
  47. #
  48.  
  49. /* This is an example of a mount list entry for using the recoverable 
  50.    ram disk.  Depending on the amount of memory you wish to devote to
  51.    it, you may want to change the HighCyl value.
  52. */
  53.  
  54. RAD:
  55.    Device = ramdrive.device
  56.    Unit   = 0
  57.    Flags  = 0
  58.    Surfaces  = 2
  59.    BlocksPerTrack = 11
  60.    Reserved = 2
  61.    Interleave = 0
  62.    LowCyl = 0  ;  HighCyl = 9
  63.    Buffers = 5
  64.    BufMemType = 1
  65. #
  66.  
  67. /*   This is an entry for RRD: serving as a warm boot device */
  68.  
  69. BOOT:   Device = ramdisk.device
  70.    Unit   = 0
  71.    Flags  = 5
  72.    Surfaces  = 2
  73.    BlocksPerTrack = 11
  74.    Reserved = 2
  75.    Interleave = 0
  76.    LowCyl = 0  ;  HighCyl = 29
  77.    Buffers = 1
  78.    BufMemType = 5
  79.    Mount = 1
  80.    Priority = 5
  81.    BootPri = 127
  82. #
  83.  
  84. RRD:   Device = ramdisk.device
  85.    Unit   = 0
  86.    Flags  = 1
  87.    Surfaces  = 2
  88.    BlocksPerTrack = 11
  89.    Reserved = 2
  90.    Interleave = 0
  91.    LowCyl = 0  ;  HighCyl = 29
  92.    Buffers = 1
  93.    BufMemType = 5
  94.    Mount = 1
  95.    Priority =5
  96.    BootPri=-128
  97. #
  98.  
  99. /* Mount a 5.25" disk drive to be mounted as DF2: */
  100.  
  101. DF2:       Device = trackdisk.device
  102.            Unit   = 2
  103.            Flags  = 1
  104.            Surfaces  = 2
  105.            BlocksPerTrack = 11
  106.            Reserved = 2
  107.            Interleave = 0
  108.            LowCyl = 0  ;  HighCyl = 39
  109.            Buffers = 20
  110.            BufMemType = 3
  111. #
  112.  
  113. /* An example mount entry using the fast file system with a partition
  114.    of the hard disk using the 2090 disk controller.  PREP has been
  115.    used to create the first partition (up to cylinder 20).  The second
  116.    partition is MOUNTed, using the following entry:
  117.    NOTE: Some hard disk drivers require more stack than specified here.
  118.    Some may required less.
  119.    (The hard disk is not included; this is only an example.)
  120. */
  121.  
  122. FAST:
  123.     Device = hddisk.device
  124.     FileSystem = l:FastFileSystem
  125.     Unit   = 1
  126.     Flags  = 0
  127.     Surfaces  = 4
  128.     BlocksPerTrack = 17
  129.     Reserved = 2
  130.     Interleave = 0
  131.     LowCyl = 21  ;  HighCyl = 800
  132.     Buffers = 30
  133.     GlobVec = -1
  134.     BufMemType = 1
  135.     Mount = 1
  136.     DosType = 0x444F5301
  137.     StackSize = 4000
  138. #
  139.  
  140. /* Let's say you have an A2000 with an internal drive, and an external
  141.    drive, and you want to refer to the external drive as DF1: as well
  142.    as DF2:   Well, this MountList entry will do it for you.  This technique
  143.    can be extended to provide you with a drive A: and B: if you really
  144.    want.
  145. */
  146.  
  147. DF1:       Device = trackdisk.device
  148.            Unit   = 2
  149.            Flags  = 1
  150.            Surfaces  = 2
  151.            BlocksPerTrack = 11
  152.            Reserved = 2
  153.            Interleave = 0
  154.            LowCyl = 0  ;  HighCyl = 79
  155.            Buffers = 20
  156.            BufMemType = 3
  157. #
  158.