diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 10:39:24 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 10:39:24 +0000 |
commit | c9328c850e70436131e06a34f73c14cc230c18f9 (patch) | |
tree | 564c8be172778428383f3dd51aae889a6a073f15 /sys/arch/pica/conf/TEST | |
parent | d6583bb2a13f329cf0332ef2570eb8bb8fc0e39c (diff) |
initial import of pica stuff (a few theo modifications already in here)
Diffstat (limited to 'sys/arch/pica/conf/TEST')
-rw-r--r-- | sys/arch/pica/conf/TEST | 121 |
1 files changed, 121 insertions, 0 deletions
diff --git a/sys/arch/pica/conf/TEST b/sys/arch/pica/conf/TEST new file mode 100644 index 00000000000..d7e5c1fe035 --- /dev/null +++ b/sys/arch/pica/conf/TEST @@ -0,0 +1,121 @@ +# +# GENERIC DECstation (3100 or 5000/xxx) +# +# first cut at new-style configu +# $NetBSD: NEWCONF,v 1.1 1995/04/28 23:34:45 jonathan Exp $ +# +include "std.pica" + +maxusers 8 + +# does not really do anything anymore, but this replaces "ident GENERIC" +options GENERIC + + +# Need to set locally +options TIMEZONE="8*60" # minutes west of GMT (for) +options DST=1 # use daylight savings rules + + +# Standard system options +options SWAPPAGER # swap pager (anonymous and swap space) +options VNODEPAGER # vnode pager (mapped files) +options DEVPAGER # device pager (mapped devices) +options DIAGNOSTIC # extra kernel debugging checks +options DEBUG # extra kernel debugging support +options "COMPAT_43" # compatibility with 4.3BSD binaries +#options KTRACE # system call tracing support +options "NKMEMCLUSTERS=1024" # 4K pages in kernel malloc pool +#options KGDB # support for kernel gdb +#options "KGDBRATE=19200" # kernel gdb port rate (default 9600) +#options "KGDBDEV=15*256+0" # device for kernel gdb + +# System V options +#options SYSVMSG # System V-like message queues +#options SYSVSEM # System V-like semaphores +#options SYSVSHM # System V-like memory sharing +#options SHMMAXPGS=1024 # 1024 pages is the default + +# Filesystem options +options FIFO # POSIX fifo support (in all filesystems) +options FFS,QUOTA # fast filesystem with user and group quotas +options MFS # memory-based filesystem +options NFSCLIENT # Sun NFS-compatible filesystem (client) +options NFSSERVER # Sun NFS-compatible filesystem (server) +options KERNFS # kernel data-structure filesystem +options MSDOSFS # Ability to read write MS-Dos filsystem +options FDESC # user file descriptor filesystem +#options UMAPFS # uid/gid remapping filesystem +#options NULLFS # null layer filesystem +#options LFS # Log-based filesystem (still experimental) +#options PORTAL # portal filesystem (still experimental) + +# Networking options +options INET # Internet protocols +options "TCP_COMPAT_42" # compatibility with 4.2BSD TCP/IP +options GATEWAY # IP packet forwarding +#options MULTICAST # Multicast support +#options MROUTING # Multicast routing support +#options ISO # OSI networking +#options TPIP +#options EON + +# pmax/pica specific +options COMPAT_ULTRIX # ultrix compatibility + +# Use generic for swaping now.... +config netbsd swap generic + +##################################################################### +# # +# PICA Mainbus, this is where the CPU hooks on... # +# # +##################################################################### + +mainbus0 at root + +cpu* at mainbus0 + +pica* at mainbus0 + +clock0 at pica? +pc0 at pica? +pms0 at pica? +com0 at pica? +com1 at pica? +lpt0 at pica? +le0 at pica? + +##################################################################### +# # +# Floppy disc controller and associated drives. # +# # +##################################################################### + +fdc0 at pica? + +fd* at fdc? drive ? + +##################################################################### +# # +# SCSI bus and devices. Only asc driver for now. # +# We want disk, tape and cd. (sd, st and cd). # +# # +##################################################################### + +asc0 at pica? + +scsibus* at asc? + +sd* at scsibus? target ? lun ? +st* at scsibus? target ? lun ? +cd* at scsibus? target ? lun ? + +# +# Pseudo devices +# +pseudo-device sl 4 # serial-line IP ports +pseudo-device pty 64 # pseudo ptys +pseudo-device bpfilter 16 # packet filter ports +pseudo-device loop +pseudo-device vnd 4 # viritual disk |