/* MountList for V1.3 */

/*  Mount Entry for the new Console Handler */

NEWCON: 
    Handler = L:Newcon-Handler
    Priority = 5
    StackSize = 1000
#

/* This is an example of a non-filing system mount using a handler written
   in C.
*/
 
SPEAK:     
    Handler = L:Speak-Handler
    Stacksize = 6000
    Priority = 5
    GlobVec = -1
#

/*  This is an example of an alternative type of non-filing device mount,
    used to mount the non-buffered serial handler
*/

AUX:
    Handler = L:Aux-Handler
    Stacksize = 1000
    Priority = 5
#
/*  This is a non-filing system device */

PIPE:      
    Handler = L:Pipe-Handler
    Stacksize = 6000
    Priority = 5
    GlobVec = -1
#

/* This is an example of a mount list entry for using the recoverable 
   ram disk.  Depending on the amount of memory you wish to devote to
   it, you may want to change the HighCyl value.
*/

RAD:       Device = ramdrive.device
           Unit   = 0
           Flags  = 0
           Surfaces  = 2
           BlocksPerTrack = 11
           Reserved = 2
           Interleave = 0
           LowCyl = 0  ;  HighCyl = 79
           Buffers = 5
           BufMemType = 1
#

/* Mount a 5.25" disk drive to be mounted as DF2: */

DF2:       Device = trackdisk.device
           Unit   = 2
           Flags  = 1
           Surfaces  = 2
           BlocksPerTrack = 11
           Reserved = 2
           Interleave = 0
           LowCyl = 0  ;  HighCyl = 39
           Buffers = 20
           BufMemType = 3
#

/* An example mount entry using the fast file system with a partition
   of the hard disk using the 2090 disk controller.  PREP has been
   used to create the first partition (up to cylinder 20).  The second
   partition is MOUNTed, using the following entry:
   NOTE: Some hard disk drivers require more stack than specified here.
   Some may required less.
   (The hard disk is not included; this is only an example.)
*/

FAST:
    Device = hddisk.device
    FileSystem = l:FastFileSystem
    Unit   = 1
    Flags  = 0
    Surfaces  = 4
    BlocksPerTrack = 17
    Reserved = 2
    Interleave = 0
    LowCyl = 21  ;  HighCyl = 800
    Buffers = 30
    GlobVec = -1
    BufMemType = 1
    Mount = 1
    DosType = 0x444F5301
    StackSize = 4000
#

/* Let's say you have an A2000 with an internal drive, and an external
   drive, and you want to refer to the external drive as DF1: as well
   as DF2:   Well, this MountList entry will do it for you.  This technique
   can be extended to provide you with a drive A: and B: if you really
   want.
*/

DF1:       Device = trackdisk.device
           Unit   = 2
           Flags  = 1
           Surfaces  = 2
           BlocksPerTrack = 11
           Reserved = 2
           Interleave = 0
           LowCyl = 0  ;  HighCyl = 79
           Buffers = 20
           BufMemType = 3
#

/*
 *  This Mountlist is just an example. Edit the locations of
 *  messydisk.device and MessyFileSystem appropriately.
 *
 *
 *  Messy file system on messy blocks:
 */
 MS0:   FileSystem = L:fat95
    Device = messydisk.device
    Unit = 0
    Flags = 0
    LowCyl = 0 ; HighCyl = 79
    Reserved = 0
    Surfaces = 2
    BlocksPerTrack = 9
    Buffers = 20
/*    DosType = 0x4D534400 */
    DosType = 0x46415400
    Interleave = 65536
    BufMemType = 1
    BootPri = 0
    Stacksize = 4096
    Priority = 9
    GlobVec  = -1
    Mount = 1
#

CD1:
	Handler = L:cdrom-handler
	Stacksize = 10000
	Priority = 10
	GlobVec = -1
	Mount = 1
	Startup = "scsi.device-4-MAYBELOWERCASE-ROCKRIDGE-ANY"
#

/* The following works only with kickstart > 1.3 */
CD0:
	FileSystem     = L:CacheCDFS
	Device         = "scsi.device"
	Unit           = 4
	Flags          = 0
	BlocksPerTrack = 351000
	BlockSize      = 2048
	Mask           = 0x7ffffffe
	MaxTransfer    = 0x1000000
	Reserved       = 0
	Interleave     = 0
	LowCyl         = 0
	HighCyl        = 0
	Surfaces       = 1
	Buffers        = 50
	BufMemType     = 513
	BootPri        = 2
	GlobVec        = -1
	Mount          = 1
	Priority       = 10
	DosType        = 0x43443031
	StackSize      = 3000
	Control        = "MD=0 LC=1 DC=8 L LV AL LFC=1 S"
#

CD2:
	Device=scsi.device
	unit=4
	buffers=192
	bufmemtype=5
	mask=0xffffffe
	flags=0
	filesystem=cdh0:AsimCDFS
	DosType=0x662dabac
	globvec=-1
	mount=1
	reserved=0
	lowcyl=0
	highcyl=999
	surfaces=1
	blockspertrack=32
	priority=10
	stacksize=5000
#
