Home | History | Annotate | Line # | Download | only in conf
GENERIC revision 1.17
      1 #	$NetBSD: GENERIC,v 1.17 1995/03/10 23:52:10 gwr Exp $
      2 
      3 #
      4 # GENERIC kernel - supports root on: ie0, le0, sd*, ...
      5 #
      6 
      7 include "std.sun3"
      8 
      9 # Machines to be supported by this kernel
     10 options		"SUN3_50"
     11 options		"SUN3_60"
     12 options		"SUN3_110"
     13 options		"SUN3_160"
     14 options		"SUN3_260"
     15 options		GENERIC
     16 options 	FPCOPROC
     17 options 	FPU_EMULATE
     18 
     19 # Needs to be set per system.  i.e change these as you see fit
     20 maxusers	4
     21 options		TIMEZONE=300		# minutes west of GMT (for param.c)
     22 options 	DST=2			# daylight savings rules (for param.c)
     23 
     24 # Standard system options
     25 options		SWAPPAGER, VNODEPAGER, DEVPAGER	# paging
     26 options		KTRACE				# system call tracing support
     27 #makeoptions	DEBUG="-g"			# symbols for kgdb + nm
     28 # I use DDB by copying in the symbols with dbsym.
     29 options		DDB
     30 options		SYMTAB_SPACE=92000
     31 
     32 # Filesystem options
     33 options 	NFSSERVER			# nfs server support
     34 options 	NFSCLIENT			# nfs client support
     35 options 	FFS				# ufs file system
     36 options		KERNFS		# /kern
     37 options		PROCFS		# /proc
     38 
     39 # Networking options
     40 options		INET				# IP prototol stack support
     41 # XXX - Work-around for slow SunOS/Sun3 servers (sigh...)
     42 options 	NFS_BOOT_RWSIZE=1024
     43 
     44 # Compatability options
     45 options		COMPAT_SUNOS	# can run SunOS 4.1.1 executables
     46 options		COMPAT_09	# NetBSD 0.9,
     47 options		COMPAT_10	# NetBSD 1.0,
     48 options		COMPAT_43	# and 4.3BSD
     49 options		TCP_COMPAT_42	# TCP bug compatibility with 4.2BSD
     50 
     51 # Sun3-specific debugging options
     52 options 	CONTEXT_DEBUG
     53 options 	PMAP_DEBUG
     54 #options 	VMFAULT_TRACE
     55 #options 	SYSCALL_DEBUG
     56 options 	EXEC_DEBUG
     57 options 	DIAGNOSTIC
     58 options 	SCSIDEBUG
     59 
     60 config		netbsd swap generic
     61 
     62 # Devices
     63 
     64 bwtwo0 at obmem? addr ?
     65 cgfour0 at obmem? addr ?
     66 
     67 ie0 at obio0 addr ? level ?
     68 ie1 at vmes0 addr 0xffe88000 level 3 vect 0x75
     69 
     70 le0 at obio0 addr ? level ?
     71 
     72 si0 at obio0 addr ? level ?
     73 si0 at vmes0 addr 0xff200000 level 2 vect 0x40
     74 si1 at vmes0 addr 0xff204000 level 2 vect 0x41
     75 
     76 scsibus* at scsi?
     77 
     78 # Sun compatible scsi device mappings
     79 sd0 at scsibus? target 0 lun 0
     80 sd1 at scsibus? target 0 lun 1
     81 sd2 at scsibus? target 1 lun 0
     82 sd3 at scsibus? target 1 lun 1
     83 sd* at scsibus? target ? lun ?
     84 
     85 st0 at scsibus? target 4 lun 0
     86 st1 at scsibus? target 5 lun 0
     87 st* at scsibus? target ? lun ?
     88 
     89 cd0 at scsibus? target 6 lun 0
     90 cd* at scsibus? target ? lun ?
     91 
     92 #ch* at scsibus? target ? lun ?
     93 
     94 pseudo-device	loop	1		# network loopback
     95 pseudo-device	bpfilter 8		# packet filter
     96 pseudo-device	sl	2		# CSLIP
     97 pseudo-device	ppp	2		# PPP
     98 pseudo-device	tun	2		# network tunneling over tty
     99 
    100 pseudo-device	pty	64		# pseudo-terminals
    101 #pseudo-device	vnd	4		# paging to files
    102 
    103