diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-11-19 13:52:05 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-11-19 13:52:05 +0000 |
commit | 9a05fdd4b794876325d6a3b47fc6a0d3b4545633 (patch) | |
tree | bdb9a63db43d0bde305e6df693febdab6803be44 /sys/arch/sun3/conf/RAMDISK | |
parent | 05fbfd3fbd35377bde4ecdca4d889dc901831995 (diff) |
from netbsd; Switch to ncr_si (will just do PIO for now) and cleanup
Diffstat (limited to 'sys/arch/sun3/conf/RAMDISK')
-rw-r--r-- | sys/arch/sun3/conf/RAMDISK | 62 |
1 files changed, 46 insertions, 16 deletions
diff --git a/sys/arch/sun3/conf/RAMDISK b/sys/arch/sun3/conf/RAMDISK index b9db67cc3fa..162db395a3d 100644 --- a/sys/arch/sun3/conf/RAMDISK +++ b/sys/arch/sun3/conf/RAMDISK @@ -1,4 +1,4 @@ -# $NetBSD: RAMDISK,v 1.1 1995/10/08 23:38:44 gwr Exp $ +# $NetBSD: RAMDISK,v 1.1.2.1 1995/11/18 07:16:14 gwr Exp $ # # RAMDISK: Root/swap on ramdisk @@ -13,15 +13,17 @@ include "std.sun3" # Machines to be supported by this kernel options HAVECACHE # Sun3/260 VAC -# Enable the hooks used for initializing the ram-disk. -options RAMDISK_HOOKS -options MINIROOTSIZE=512 # 256K - # Needs to be set per system. i.e change these as you see fit maxusers 2 # Standard system options options SWAPPAGER, VNODEPAGER, DEVPAGER # paging +#makeoptions DEBUG="-g" # symbols for kgdb + nm +#options DDB + +# Enable the hooks used for initializing the ram-disk. +options RAMDISK_HOOKS +options MINIROOTSIZE=512 # 256K # Filesystem options # May need NFSCLIENT to get miniroot image @@ -32,8 +34,6 @@ options FIFO # FIFOs; RECOMMENDED # Networking options options INET # IP prototol stack support -# XXX - Work-around for slow SunOS/Sun3 servers (sigh...) -options NFS_BOOT_RWSIZE=1024 # Compatability options (XXX - Need these?) #options COMPAT_SUNOS # can run SunOS 4.1.1 executables @@ -43,28 +43,51 @@ options COMPAT_43 # and 4.3BSD options TCP_COMPAT_42 # TCP bug compatibility with 4.2BSD # Sun3-specific debugging options -# options DDB options DIAGNOSTIC # The config program assumes all devices have partions... # Is it OK to put swap on a non-existent partition? config netbsd root on rd0a swap on rd0b -# Devices - -# RAM Disk (root for install tape) -rd0 at mainbus? - -# No frame-buffer devices. +# +# Network devices +# +# Intel Ethernet (onboard, or VME) ie0 at obio0 addr ? level ? ie1 at vmes0 addr 0xffe88000 level 3 vect 0x75 +# Lance Ethernet (only onboard) le0 at obio0 addr ? level ? -si0 at obio0 addr ? level ? -si0 at vmes0 addr 0xff200000 level 2 vect 0x40 +# +# Disk and tape devices +# + +# Sun3 "si" SCSI controller (NCR 5380) +ncr_si0 at obio0 addr ? level ? +ncr_si0 at vmes0 addr 0xff200000 level 2 vect 0x40 +ncr_si1 at vmes0 addr 0xff204000 level 2 vect 0x41 + +# Xylogics 7053 controllers +# xdc0 at vmel0 addr 0xffffee80 level 2 vect 0x44 +# xdc1 at vmel0 addr 0xffffee90 level 2 vect 0x45 +# xd* at xdc? drive ? + +# Xylogics 450/451 controllers +# xyc0 at vmes0 addr 0xffffee40 level 2 vect 0x48 +# xyc1 at vmes0 addr 0xffffee48 level 2 vect 0x49 +# xy* at xyc? drive ? + +# Xylogics 472 tape controllers? + +# +# Frame buffer devices +# (Not needed for the RAMDISK installation kernel) +# +# SCSI infrastructure +# scsibus* at scsi? # Sun compatible scsi device mappings @@ -83,5 +106,12 @@ cd* at scsibus? target ? lun ? #ch* at scsibus? target ? lun ? + +# RAM Disk (root for install tape) +rd0 at mainbus? + +# Misc. pseudo-device loop 1 # network loopback +pseudo-device sl 2 # CSLIP +pseudo-device ppp 2 # PPP |