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