home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 2 / CDPD_II_2352.bin / devs / mountlist < prev    next >
Text File  |  1992-11-10  |  1KB  |  66 lines

  1. /* MountList for V2.0 */
  2.  
  3. /* This is an example of a non-filing system mount using a handler written
  4.    in C.
  5. */
  6.  
  7. SPEAK:     
  8.     Handler = L:Speak-Handler
  9.     Stacksize = 6000
  10.     Priority = 5
  11.     GlobVec = -1
  12. #
  13.  
  14. /*  This is an example of an alternative type of non-filing device mount,
  15.     used to mount the non-buffered serial handler
  16. */
  17.  
  18. AUX:
  19.     Handler = L:Aux-Handler
  20.     Stacksize = 1000
  21.     Priority = 5
  22. #
  23.  
  24. /* I think this is for PARNET */
  25.  
  26.  
  27. /*  This is a non-filing system device */
  28. net:
  29.    stacksize = 50000
  30.    priority = 5
  31.    globvec = -1
  32.    unit = 0
  33.    device = devs:parnet.device
  34.    surfaces = 0
  35.    blockspertrack = 0
  36.    reserved = 0
  37.    lowcyl = 0
  38.    highcyl = 0
  39.    filesystem = l:netpnet-handler
  40. #
  41.  
  42. PIPE:      
  43.     Handler = L:Queue-Handler
  44.     Stacksize = 3000
  45.     Priority = 5
  46.     GlobVec = -1
  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:       Device = ramdrive.device
  55.            Unit   = 0
  56.            Flags  = 0
  57.            Surfaces  = 2
  58.            BlocksPerTrack = 11
  59.            Reserved = 2
  60.            Interleave = 0
  61.            LowCyl = 0  ;  HighCyl = 79
  62.            Buffers = 5
  63.            BufMemType = 1
  64. #
  65.  
  66.