Home | History | Annotate | Line # | Download | only in conf
GENERIC revision 1.6
      1  1.1  jonathan #
      2  1.5  jonathan # Distribition miniroot kernel (any  model) kernel config file
      3  1.5  jonathan 
      4  1.1  jonathan #
      5  1.6  jonathan # 	$NetBSD: GENERIC,v 1.6 1996/10/13 05:40:45 jonathan Exp $
      6  1.1  jonathan #
      7  1.5  jonathan include		"arch/pmax/conf/std.pmax"
      8  1.1  jonathan 
      9  1.5  jonathan maxusers	64
     10  1.1  jonathan 
     11  1.6  jonathan options		MIPS1			# R2000/R3000 support (new)
     12  1.6  jonathan #options	MIPS3			# R4000/R4400 support (not finished)
     13  1.6  jonathan 
     14  1.1  jonathan 
     15  1.5  jonathan # Support for specific models of DECstation
     16  1.5  jonathan options		DS3100			# PMAX (kn01) DECstation 2100, 3100
     17  1.5  jonathan options		DS5000_25		# MAXINE (kn02ca/xine) support
     18  1.5  jonathan options		DS5000_100		# 3MIN (kn02ba/kmin) support
     19  1.5  jonathan options		DS5000_200		# 3MAX (kn02) support
     20  1.1  jonathan options		DS5000_240		# 3MAXPLUS (kn03) support
     21  1.1  jonathan 
     22  1.5  jonathan 
     23  1.1  jonathan 
     24  1.1  jonathan 
     25  1.1  jonathan # You need to set this locally, but it doesn't do much outside the kernel.
     26  1.1  jonathan # Set up /etc/localtime instead.
     27  1.5  jonathan options		TIMEZONE=0
     28  1.1  jonathan options		DST=0			# use daylight savings rules
     29  1.1  jonathan 
     30  1.1  jonathan 
     31  1.1  jonathan # Standard system options
     32  1.1  jonathan options		SWAPPAGER		# swap pager (anonymous and swap space)
     33  1.1  jonathan options		VNODEPAGER		# vnode pager (mapped files)
     34  1.1  jonathan options		DEVPAGER		# device pager (mapped devices)
     35  1.1  jonathan #options	DIAGNOSTIC		# extra kernel debugging checks
     36  1.5  jonathan #options	DEBUG			# extra kernel debugging support
     37  1.1  jonathan options		"COMPAT_43"		# compatibility with 4.3BSD binaries
     38  1.1  jonathan options		KTRACE			# system call tracing support
     39  1.1  jonathan options		"NKMEMCLUSTERS=1024"	# 4K pages in kernel malloc pool
     40  1.1  jonathan #options	KGDB			# support for kernel gdb
     41  1.1  jonathan #options	"KGDBRATE=19200"	# kernel gdb port rate (default 9600)
     42  1.1  jonathan #options	"KGDBDEV=15*256+0"	# device for kernel gdb
     43  1.1  jonathan 
     44  1.5  jonathan options		NTP			# network time protocol
     45  1.5  jonathan #options	UCONSOLE		# users can redirect console (unsafe)
     46  1.5  jonathan 
     47  1.5  jonathan 
     48  1.1  jonathan # Filesystem options
     49  1.1  jonathan options		FIFO		# POSIX fifo support (in all filesystems)
     50  1.5  jonathan options		FFS             # fast filesystem with user and group quotas
     51  1.1  jonathan options		MFS		# memory-based filesystem
     52  1.1  jonathan options		NFSCLIENT	# Sun NFS-compatible filesystem (client)
     53  1.1  jonathan options		NFSSERVER	# Sun NFS-compatible filesystem (server)
     54  1.5  jonathan #options	KERNFS		# kernel data-structure filesystem
     55  1.1  jonathan #options	FDESC		# user file descriptor filesystem
     56  1.1  jonathan #options	UMAPFS		# uid/gid remapping filesystem
     57  1.1  jonathan options		NULLFS		# null layer filesystem
     58  1.5  jonathan options         UNION
     59  1.1  jonathan #options	LFS		# Log-based filesystem (still experimental)
     60  1.1  jonathan #options	PORTAL		# portal filesystem (still experimental)
     61  1.1  jonathan 
     62  1.1  jonathan # Networking options
     63  1.1  jonathan options		INET		# Internet protocols
     64  1.1  jonathan options		"TCP_COMPAT_42"	# compatibility with 4.2BSD TCP/IP
     65  1.1  jonathan options		GATEWAY		# IP packet forwarding
     66  1.1  jonathan #options	MULTICAST	# Multicast support
     67  1.1  jonathan #options	MROUTING	# Multicast routing support
     68  1.1  jonathan #options	ISO		# OSI networking
     69  1.1  jonathan #options	TPIP
     70  1.1  jonathan #options	EON
     71  1.1  jonathan 
     72  1.5  jonathan # NetBSD backwards compatibility
     73  1.6  jonathan #options	COMPAT_10	# NetBSD 1.0, (needed for X on 386?)
     74  1.6  jonathan #options	COMPAT_11	# NetBSD 1.1,
     75  1.6  jonathan options		COMPAT_12	# Netbsd 1.2 reboot()
     76  1.1  jonathan 
     77  1.5  jonathan 
     78  1.1  jonathan # pmax specific
     79  1.1  jonathan options		COMPAT_ULTRIX	# ultrix compatibility
     80  1.6  jonathan options		EXEC_ECOFF	# Ultrix RISC binaries are ECOFF format
     81  1.3  jonathan options		"HZ=256"	# RTC rate required
     82  1.1  jonathan 
     83  1.6  jonathan # Note that this configuration is unlikely to work, yet...
     84  1.5  jonathan #config		netbsd root on rz0a swap on rz0b and rz1b dumps on rz0b
     85  1.1  jonathan config		gennetbsd	swap generic
     86  1.1  jonathan 
     87  1.1  jonathan 
     88  1.1  jonathan ########################################################################
     89  1.5  jonathan ###                   I/O bus and device options                     ###
     90  1.1  jonathan ########################################################################
     91  1.1  jonathan 
     92  1.5  jonathan # TC bus and supported options. (All but PMAXes have a turbochannel.)
     93  1.6  jonathan include 	"arch/pmax/conf/tc.std"
     94  1.1  jonathan 
     95  1.5  jonathan # ioasic standard baseboard options (5000/2x, 5000/1xx, 5000/2[46]0)
     96  1.6  jonathan include 	"arch/pmax/conf/builtin.ioasic"
     97  1.1  jonathan 
     98  1.5  jonathan # MAXINE-only ioasic baseboard devices and on-baseboard "options"
     99  1.6  jonathan include 	"arch/pmax/conf/builtin.maxine"
    100  1.1  jonathan 
    101  1.5  jonathan # 5000/200-only (aka 3MAX aka KN02) baseboard devices.
    102  1.5  jonathan # (KN02 has turbochannel but no	IOASIC).
    103  1.6  jonathan include 	"arch/pmax/conf/builtin.3max"
    104  1.1  jonathan 
    105  1.5  jonathan # 2100/3100-only (aka PMAX aka KN01) baseboard devices.
    106  1.5  jonathan # (may also be present on a 5100).
    107  1.6  jonathan include 	"arch/pmax/conf/builtin.3100"
    108  1.1  jonathan 
    109  1.1  jonathan ########################################################################
    110  1.1  jonathan # SCSI configuration                                                   #
    111  1.1  jonathan ########################################################################
    112  1.1  jonathan 
    113  1.5  jonathan oldscsibus*	at sii?
    114  1.5  jonathan oldscsibus*	at asc?
    115  1.1  jonathan #
    116  1.5  jonathan # SCSI configuration for old 4.4bsd/pmax DECstation SCSI driver
    117  1.1  jonathan #
    118  1.6  jonathan include 	"arch/pmax/conf/scsi.pmax"
    119  1.6  jonathan #include	"arch/pmax/conf/mi.scsi"		# not yet supported
    120  1.1  jonathan 
    121  1.1  jonathan 
    122  1.5  jonathan ########################################################################
    123  1.5  jonathan ###                        Pseudo-devices                            ###
    124  1.5  jonathan ########################################################################
    125  1.1  jonathan 
    126  1.1  jonathan pseudo-device	sl		 4	# serial-line IP ports
    127  1.5  jonathan pseudo-device   ppp              2      # serial-line IP ports
    128  1.1  jonathan pseudo-device	pty		64	# pseudo ptys
    129  1.1  jonathan pseudo-device	bpfilter	16	# packet filter ports
    130  1.1  jonathan pseudo-device	loop
    131  1.1  jonathan pseudo-device	vnd		4	# virtual disk ick
    132  1.5  jonathan pseudo-device   ccd             4       # concatenated disks
    133  1.1  jonathan 
    134  1.1  jonathan #pseudo-device	ether			# From old config. what does it mean?
    135  1.1  jonathan pseudo-device	rasterconsole	1 	# NB: raster console requires "fb"
    136  1.6  jonathan pseudo-device	fb		1	# up to 3 framebuffers
    137