1# $NetBSD: DISKLESS3X,v 1.61 2020/06/19 10:35:11 tsutsui Exp $ 2 3# DISKLESS - Root and swap on NFS 4# Desktop machines only (3/80) 5# 6# Includes devices needed to run as an X-terminal 7 8include "arch/sun3/conf/std.sun3x" 9 10#options INCLUDE_CONFIG_FILE # embed config file in kernel binary 11 12makeoptions COPTS="-Os -fno-unwind-tables" # bootloader has size limit (~2MB) 13 14# Machines to be supported by this kernel 15# options FPU_EMULATE # XXX - Ever needed? 16# options HAVE_IOCACHE # XXX - Not yet supported. 17 18# Needs to be set per system. i.e change these as you see fit 19maxusers 2 20 21# Standard system options 22#options KTRACE # system call tracing 23#options SYSVMSG # System V message queues 24#options SYSVSEM # System V semaphores 25#options SYSVSHM # System V shared memory 26#options INSECURE # disable kernel security level 27options USERCONF # userconf(4) support 28#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 29#options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 30 31# Which kernel debugger? Uncomment either this: 32#options DDB 33# ... or these for KGDB (gdb remote target) 34#makeoptions DEBUG="-g" # debugging symbols for gdb 35#options KGDB 36#options KGDB_DEV=0x0C01 # ttya=0C00 ttyb=0C01 37 38# Other debugging options 39#options DDB_HISTORY_SIZE=100 # enable history editing in DDB 40#options DEBUG # kernel debugging code 41#options DIAGNOSTIC # extra kernel sanity checking 42#options PMAP_DEBUG 43 44# Compatibility options 45include "conf/compat_netbsd10.config" 46 47#options COMPAT_LINUX # can run Linux/m68k executables 48#options COMPAT_SUNOS # can run SunOS 4.1.1 executables 49 50# Filesystem options 51#file-system FFS # Berkeley Fast Filesystem 52file-system NFS # Sun NFS client support 53#file-system CD9660 # ISO 9660 + Rock Ridge file system 54#file-system MSDOSFS # MS-DOS FAT file system 55#file-system FDESC # /dev/fd/* 56#file-system KERNFS # /kern 57#file-system NULLFS # loopback file system 58#file-system PROCFS # /proc 59#file-system UNION # union file system 60#file-system MFS # memory-based filesystem 61#file-system PTYFS # /dev/pts/N support 62 63#options NFSSERVER # nfs server support 64#options QUOTA # legacy UFS quotas 65#options QUOTA2 # new, in-filesystem UFS quotas 66#options FFS_EI # FFS Endian Independent support 67 68# Networking options 69options INET # IP protocol stack support 70#options GATEWAY # IP packet forwarding 71#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 72 73# Work-around for root on slow servers (insurance...) 74options NFS_BOOT_RWSIZE=1024 75options NFS_BOOT_BOOTPARAM 76 77config netbsd root on ? type nfs 78 79# On-board I/O space (required) 80include "arch/sun3/conf/obio.sun3x" 81 82# On-board memory (optional) 83# See frame-buffers 84obmem0 at mainbus? 85 86# VME bus support (optional) 87# (none on desktop machines) 88 89# 90# Serial ports 91# 92zstty0 at zsc1 channel 0 # ttya 93zstty1 at zsc1 channel 1 # ttyb 94 95kbd0 at zsc0 channel 0 # keyboard 96ms0 at zsc0 channel 1 # mouse 97 98# 99# Network devices 100# 101 102# Intel Ethernet (onboard, or VME) 103#ie0 at obio0 addr 0x65000000 ipl 3 104#ie1 at vme2 addr 0xe88000 ipl 3 vect 0x75 105 106# Lance Ethernet (only onboard) 107le0 at obio0 addr 0x65002000 ipl 3 108 109# 110# Frame buffer devices 111# 112 113# P4 Monochrome frame buffer. 114bwtwo0 at obmem0 addr 0x50300000 115 116# P4 8-bit color frame buffer 117cgfour0 at obmem0 addr 0x50300000 118 119# P4 accelerated 8-bit color frame buffer 120# cgsix0 at obmem0 addr 0x50000000 121 122# P4 24-bit color frame buffer 123# cgeight0 at obmem0 addr 0x50300000 124 125# Sun-3 color board, or CG5 8-bit frame buffer (VME A24/D16). 126# This driver is going to need work in its mmap function. 127# cgtwo0 at vme2 addr 0x400000 ipl 4 vect 0xA8 128 129# Support for the CG9 24-bit frame buffer (VME A32/D32). 130# cgnine0 at vme5 addr 0x08000000 ipl 4 vect 0xAA 131 132# Misc. 133pseudo-device loop # network loopback 134pseudo-device bpfilter # packet filter 135pseudo-device sl # CSLIP 136pseudo-device ppp # PPP 137pseudo-device tun # network tunneling over tty 138#pseudo-device gre # generic L3 over IP tunnel 139#pseudo-device npf # NPF packet filter 140 141pseudo-device pty # pseudo-terminals 142pseudo-device clockctl # user control of clock subsystem 143