Home | History | Annotate | Line # | Download | only in conf
RAMDISK revision 1.10.6.4
      1  1.10.6.4  nathanw #	$NetBSD: RAMDISK,v 1.10.6.4 2002/04/01 07:41:19 nathanw Exp $
      2  1.10.6.2  nathanw 
      3  1.10.6.2  nathanw #
      4  1.10.6.2  nathanw # RAMDISK: Root/swap on ramdisk
      5  1.10.6.2  nathanw # This kernel is used to initially bootstrap
      6  1.10.6.2  nathanw # a NetBSD/mvme68k installation, and install
      7  1.10.6.2  nathanw # the miniroot in a swap partition.
      8  1.10.6.2  nathanw #
      9  1.10.6.2  nathanw # It is not designed to be used in a production enviroment
     10  1.10.6.2  nathanw # due to its cut-down nature.
     11  1.10.6.2  nathanw #
     12  1.10.6.2  nathanw 
     13  1.10.6.2  nathanw include		"arch/mvme68k/conf/std.mvme68k"
     14  1.10.6.2  nathanw 
     15  1.10.6.2  nathanw # Boards this kernel supports
     16  1.10.6.2  nathanw options 	MVME147
     17  1.10.6.2  nathanw options 	MVME162
     18  1.10.6.2  nathanw options 	MVME167
     19  1.10.6.2  nathanw options 	MVME172
     20  1.10.6.2  nathanw options 	MVME177
     21  1.10.6.2  nathanw 
     22  1.10.6.2  nathanw maxusers	2
     23  1.10.6.2  nathanw 
     24  1.10.6.2  nathanw # Needed on m68040 boards to emulate some missing FP instructions
     25  1.10.6.2  nathanw options 	FPSP
     26  1.10.6.2  nathanw 
     27  1.10.6.2  nathanw # Needed on m68060 boards
     28  1.10.6.2  nathanw options 	M060SP
     29  1.10.6.2  nathanw 
     30  1.10.6.2  nathanw # File-system options
     31  1.10.6.2  nathanw file-system 	FFS
     32  1.10.6.2  nathanw file-system 	NFS
     33  1.10.6.2  nathanw file-system 	KERNFS
     34  1.10.6.2  nathanw file-system 	CD9660
     35  1.10.6.2  nathanw 
     36  1.10.6.2  nathanw # Networking options
     37  1.10.6.2  nathanw options 	INET
     38  1.10.6.2  nathanw options 	INET6		# IPV6
     39  1.10.6.2  nathanw 
     40  1.10.6.2  nathanw # Enable the hooks used for initializing the ram-disk.
     41  1.10.6.2  nathanw options 	MEMORY_DISK_HOOKS
     42  1.10.6.2  nathanw options 	MEMORY_DISK_IS_ROOT
     43  1.10.6.4  nathanw options 	MEMORY_DISK_SIZE=1600
     44  1.10.6.2  nathanw 
     45  1.10.6.3  nathanw options		PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     46  1.10.6.3  nathanw 
     47  1.10.6.2  nathanw ## "generic" boot (put root on boot device)
     48  1.10.6.2  nathanw config netbsd		root on ? type ?
     49  1.10.6.2  nathanw 
     50  1.10.6.2  nathanw # Which protocol to use when booting over NFS
     51  1.10.6.2  nathanw options 	NFS_BOOT_DHCP		# Diskless client w/ dhcp
     52  1.10.6.2  nathanw options 	NFS_BOOT_BOOTP		# Diskless client w/ bootp
     53  1.10.6.2  nathanw options 	NFS_BOOT_BOOTPARAM	# Diskless client w/ bootparamd
     54  1.10.6.2  nathanw 
     55  1.10.6.2  nathanw pseudo-device	sl
     56  1.10.6.2  nathanw pseudo-device	ppp	1
     57  1.10.6.2  nathanw pseudo-device	loop
     58  1.10.6.2  nathanw pseudo-device	md	1
     59  1.10.6.2  nathanw 
     60  1.10.6.2  nathanw mainbus0	at root
     61  1.10.6.2  nathanw 
     62  1.10.6.2  nathanw # MVME147 specific devices
     63  1.10.6.2  nathanw pcc0		at mainbus0
     64  1.10.6.2  nathanw clock0		at pcc? ipl 5
     65  1.10.6.2  nathanw zsc*		at pcc? ipl 4
     66  1.10.6.2  nathanw le0		at pcc? ipl 3
     67  1.10.6.2  nathanw wdsc0		at pcc? ipl 2
     68  1.10.6.2  nathanw 
     69  1.10.6.2  nathanw # MVME1x2 and MVME1x7 shared devices
     70  1.10.6.2  nathanw pcctwo0		at mainbus0
     71  1.10.6.2  nathanw memc*		at mainbus0
     72  1.10.6.2  nathanw clock0		at pcctwo? ipl 5
     73  1.10.6.2  nathanw ie0		at pcctwo? ipl 3
     74  1.10.6.2  nathanw osiop0		at pcctwo? ipl 2
     75  1.10.6.2  nathanw 
     76  1.10.6.2  nathanw # MVME162/MVME172 specific devices
     77  1.10.6.2  nathanw zsc*		at pcctwo? ipl 4
     78  1.10.6.2  nathanw 
     79  1.10.6.2  nathanw # MVME167/MVME177 specific devices
     80  1.10.6.2  nathanw clmpcc0		at pcctwo? ipl 4
     81  1.10.6.2  nathanw 
     82  1.10.6.2  nathanw # Common front-end for MVME147 and MVME1x2 `zs' device
     83  1.10.6.2  nathanw zstty*		at zsc? channel ?
     84  1.10.6.2  nathanw 
     85  1.10.6.2  nathanw scsibus*	at wdsc?
     86  1.10.6.2  nathanw scsibus*	at osiop?
     87  1.10.6.2  nathanw sd*		at scsibus? target ? lun ?
     88  1.10.6.2  nathanw st*		at scsibus? target ? lun ?
     89  1.10.6.2  nathanw cd*		at scsibus? target ? lun ?
     90