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