1 1.2.4.1 gwr # $NetBSD: RAMDISK3X,v 1.2.4.1 1998/01/27 19:13:06 gwr Exp $ 2 1.1 jeremy 3 1.1 jeremy # RAMDISK: Root/swap on ramdisk 4 1.1 jeremy # This kernel is used to: 5 1.1 jeremy # format the disk (not yet implemented) 6 1.1 jeremy # partition the disk (disklabel) 7 1.1 jeremy # install the miniroot in the swap partition 8 1.1 jeremy 9 1.2.4.1 gwr include "arch/sun3/conf/std.sun3" 10 1.2.4.1 gwr 11 1.2.4.1 gwr # Machines to be supported by this kernel. Note: 12 1.2.4.1 gwr # The SUN3 and SUN3X options are mutually exclusive! 13 1.2.4.1 gwr # (Your kernel will only run on one or the other.) 14 1.2.4.1 gwr makeoptions MACHTYPE=sun3x 15 1.2.4.1 gwr options _SUN3X_ 16 1.2.4.1 gwr 17 1.2.4.1 gwr # options FPU_EMULATE # Every Sun3X has an FPU, right? 18 1.2.4.1 gwr # options HAVE_IOCACHE # XXX - Not yet supported. 19 1.1 jeremy 20 1.1 jeremy # Needs to be set per system. i.e change these as you see fit 21 1.1 jeremy maxusers 2 22 1.1 jeremy 23 1.1 jeremy # Standard system options 24 1.2 gwr # ... debugging options 25 1.2.4.1 gwr options DDB 26 1.2 gwr # Compatability options 27 1.2.4.1 gwr options COMPAT_13 # NetBSD 1.3 28 1.2 gwr 29 1.2 gwr # Filesystem options 30 1.2 gwr # Need FFS for the ramdisk image. 31 1.2 gwr file-system FFS # Berkeley Fast Filesystem 32 1.2 gwr # May need these to get miniroot image. 33 1.2 gwr file-system NFS # Sun NFS client support 34 1.2 gwr file-system CD9660 # ISO 9660 + Rock Ridge file system 35 1.2 gwr 36 1.2 gwr options FIFO # named pipes used during install 37 1.1 jeremy 38 1.2.4.1 gwr # Enable the hooks used for initializing the root memory-disk. 39 1.1 jeremy options MEMORY_DISK_HOOKS 40 1.2.4.1 gwr options MEMORY_DISK_IS_ROOT # force root on memory disk 41 1.2.4.1 gwr options MEMORY_DISK_SERVER=0 # no userspace memory disk support 42 1.2.4.1 gwr options MINIROOTSIZE=512 # size of memory disk, in blocks 43 1.1 jeremy 44 1.1 jeremy # Networking options 45 1.1 jeremy options INET # IP prototol stack support 46 1.2 gwr options TCP_COMPAT_42 # compatibility with 4.2BSD TCP/IP 47 1.2 gwr 48 1.2 gwr # Work-around for root on slow servers (insurance...) 49 1.1 jeremy options NFS_BOOT_RWSIZE=1024 50 1.1 jeremy 51 1.1 jeremy config netbsd root on md0 type ffs 52 1.1 jeremy 53 1.2.4.1 gwr # On-board I/O space (required) 54 1.2.4.1 gwr include "arch/sun3/conf/obio.sun3x" 55 1.2.4.1 gwr 56 1.2.4.1 gwr # On-board memory (optional) 57 1.2.4.1 gwr # See frame-buffers 58 1.2.4.1 gwr # obmem0 at mainbus? 59 1.2.4.1 gwr 60 1.2.4.1 gwr # VME bus support (optional) 61 1.2.4.1 gwr # One unit for each address space 62 1.2.4.1 gwr vme0 at mainbus? # A16/D16 63 1.2.4.1 gwr vme1 at mainbus? # A16/D32 64 1.2.4.1 gwr vme2 at mainbus? # A24/D16 65 1.2.4.1 gwr vme3 at mainbus? # A24/D32 66 1.2.4.1 gwr vme4 at mainbus? # A32/D16 67 1.2.4.1 gwr vme5 at mainbus? # A32/D32 68 1.2.4.1 gwr 69 1.1 jeremy # 70 1.1 jeremy # Serial ports 71 1.1 jeremy # 72 1.1 jeremy zstty0 at zsc1 channel 0 # ttya 73 1.1 jeremy zstty1 at zsc1 channel 1 # ttyb 74 1.1 jeremy 75 1.1 jeremy kbd0 at zsc0 channel 0 # keyboard 76 1.1 jeremy ms0 at zsc0 channel 1 # mouse 77 1.1 jeremy 78 1.1 jeremy # 79 1.1 jeremy # Network devices 80 1.1 jeremy # 81 1.1 jeremy 82 1.2 gwr # Intel Ethernet 83 1.2 gwr ie0 at obio0 addr 0x65000000 ipl 3 84 1.2.4.1 gwr ie1 at vme2 addr 0xe88000 ipl 3 vect 0x75 85 1.2 gwr 86 1.1 jeremy # Lance Ethernet (only onboard) 87 1.1 jeremy le0 at obio0 addr 0x65002000 ipl 3 88 1.1 jeremy 89 1.1 jeremy # 90 1.1 jeremy # Disk and tape devices 91 1.1 jeremy # 92 1.1 jeremy 93 1.2 gwr # Emulex SCSI (3/80 only) 94 1.2 gwr # See GENERIC for flags description. 95 1.1 jeremy esp0 at obio0 addr 0x66000000 ipl 2 flags 0xff0f 96 1.1 jeremy 97 1.1 jeremy # Floppy drive 98 1.1 jeremy fdc0 at obio0 addr 0x6e000000 ipl 6 vect 0x40 99 1.1 jeremy fd0 at fdc0 # First (and only) floppy drive. 100 1.1 jeremy 101 1.2.4.1 gwr # Sun3 "si" SCSI controller (NCR 5380) 102 1.2.4.1 gwr # See GENERIC for flags description. 103 1.2.4.1 gwr si0 at vme2 addr 0x200000 ipl 2 vect 0x40 104 1.2.4.1 gwr si1 at vme2 addr 0x204000 ipl 2 vect 0x41 105 1.2.4.1 gwr 106 1.2.4.1 gwr # Xylogics 450/451 controllers (VME A16/D16) 107 1.2.4.1 gwr xyc0 at vme0 addr 0xee40 ipl 2 vect 0x48 108 1.2.4.1 gwr xyc1 at vme0 addr 0xee48 ipl 2 vect 0x49 109 1.2.4.1 gwr xy* at xyc? drive ? 110 1.2.4.1 gwr 111 1.2.4.1 gwr # Xylogics 7053 controllers (VME A16/D32) 112 1.2.4.1 gwr xdc0 at vme1 addr 0xee80 ipl 2 vect 0x44 113 1.2.4.1 gwr xdc1 at vme1 addr 0xee90 ipl 2 vect 0x45 114 1.2.4.1 gwr xd* at xdc? drive ? 115 1.2.4.1 gwr 116 1.2.4.1 gwr # Xylogics 472 tape controllers? 117 1.2.4.1 gwr 118 1.1 jeremy # 119 1.1 jeremy # Frame buffer devices 120 1.2.4.1 gwr # (Not needed for the RAMDISK installation kernel) 121 1.1 jeremy 122 1.1 jeremy # 123 1.1 jeremy # SCSI infrastructure 124 1.1 jeremy # 125 1.1 jeremy scsibus* at scsi? 126 1.1 jeremy 127 1.1 jeremy sd* at scsibus? target ? lun ? # SCSI disks 128 1.1 jeremy st* at scsibus? target ? lun ? # SCSI tapes 129 1.1 jeremy cd* at scsibus? target ? lun ? # SCSI CD-ROMs 130 1.1 jeremy #ch* at scsibus? target ? lun ? # SCSI changer devices 131 1.1 jeremy #ss* at scsibus? target ? lun ? # SCSI scanners 132 1.2.4.1 gwr #uk* at scsibus? target ? lun ? # unknown SCSI devices 133 1.1 jeremy 134 1.2.4.1 gwr # Memory-disk (root for install tape) 135 1.1 jeremy pseudo-device md 2 136 1.1 jeremy 137 1.1 jeremy # Misc. 138 1.1 jeremy pseudo-device loop 1 # network loopback 139 1.1 jeremy pseudo-device sl 2 # CSLIP 140 1.1 jeremy pseudo-device ppp 2 # PPP 141