home *** CD-ROM | disk | FTP | other *** search
/ Amiga GigaPD 3 / Amiga_GigaPD_v3_3of3.iso / netbsd / contrib / ados / bffs1.25.lzh / bffs1.25 / MountList.BFFS < prev    next >
Text File  |  1993-04-10  |  1KB  |  37 lines

  1. /* Sample for scsi drive 0 partition */
  2. UH0:
  3.     FileSystem = l:BFFSFileSystem  /* If you have it in a different place,
  4.                        change the name put here. */
  5.     Device = scsi.device  /* This is for 2091.  You may have to change it */
  6.     Unit = 0          /* Disk unit number - HDToolBox will tell this */
  7.     Flags = 0          /* This is passed to the device */
  8.     Mount = 1          /* Mount immediately */
  9.     Stacksize = 1024      /* This can be brought down to about 500 */
  10.     Priority = 5      /* Eventually, this should be 5 */
  11.     GlobVec = -1      /* BCPL device vector - do no change */
  12.     LowCyl = 0          /* This must be what HDToolBox gives you */
  13.     HighCyl = 1          /* Does not matter */
  14.     Surfaces = 4      /* Number of drive heads */
  15.     BlocksPerTrack = 36   /* Your disk's sectors per track */
  16.     Buffers = 64;      /* Use up to 32K for disk buffers */
  17.     Reserved = 0;         /* Unix partition */
  18. #
  19.  
  20. /* Sample driver for a 720k floppy disk (messydisk.device required) */
  21. UF0:
  22.     FileSystem = l:BFFSFileSystem
  23.     Device = messydisk.device
  24.     Unit = 0
  25.     Flags = 0
  26.     Mount = 1
  27.     Stacksize = 1024
  28.     Priority = 0
  29.     GlobVec = -1
  30.     LowCyl = 0
  31.     HighCyl = 1
  32.     Surfaces = 2
  33.     BlocksPerTrack = 9
  34.     Buffers = 64
  35.     Reserved = 0;
  36. #
  37.