Home | History | Annotate | Line # | Download | only in conf
SLAB revision 1.6.2.3
      1  1.6.2.3  jdolecek # $NetBSD: SLAB,v 1.6.2.3 2002/06/23 17:38:56 jdolecek Exp $
      2      1.1    deberg #
      3      1.1    deberg # deberg's development machine
      4      1.1    deberg #
      5      1.1    deberg #
      6      1.1    deberg 
      7      1.1    deberg include "arch/next68k/conf/std.next68k"
      8      1.1    deberg 
      9  1.6.2.3  jdolecek #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     10  1.6.2.3  jdolecek 
     11      1.1    deberg # Needs to be set per system.  i.e change these as you see fit
     12      1.1    deberg maxusers	16
     13      1.1    deberg 
     14      1.1    deberg # Standard system options
     15      1.1    deberg options 	KTRACE		# system call tracing
     16      1.1    deberg options 	SYSVMSG		# System V message queues
     17      1.1    deberg options 	SYSVSEM		# System V semaphores
     18      1.1    deberg options 	SYSVSHM		# System V shared memory
     19      1.1    deberg #options 	SHMMAXPGS=1024	# 1024 pages is the default
     20      1.1    deberg 
     21      1.1    deberg options 	LKM		# loadable kernel modules
     22      1.1    deberg options 	INSECURE	# disable kernel security level
     23      1.1    deberg options 	UCONSOLE	# Allow non-root TIOCCONS
     24  1.6.2.3  jdolecek #options 	USERCONF	# userconf(4) support
     25  1.6.2.2  jdolecek #options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     26      1.1    deberg 
     27      1.1    deberg options 	DEBUG		# kernel debugging code
     28      1.1    deberg options 	DIAGNOSTIC	# extra kernel sanity checking
     29      1.1    deberg 
     30      1.1    deberg # Which kernel debugger?  Uncomment either this:
     31      1.1    deberg options 	DDB
     32      1.1    deberg options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
     33      1.1    deberg 
     34      1.1    deberg # ... or these for KGDB (gdb remote target)
     35  1.6.2.1   thorpej makeoptions	DEBUG="-g"		# debugging symbols for gdb
     36  1.6.2.1   thorpej #options 	KGDB			# support for kernel gdb
     37  1.6.2.1   thorpej #options 	KGDB_DEV=0xc01		# kgdb device number (dev_t)
     38  1.6.2.1   thorpej #options 	KGDB_DEVRATE=9600	# baud rate
     39      1.1    deberg 
     40      1.1    deberg # Other debugging options
     41      1.1    deberg options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
     42      1.1    deberg #options 	PMAP_DEBUG
     43      1.1    deberg options 	SCSIDEBUG
     44      1.1    deberg options 	SCSIVERBOSE		# Verbose SCSI errors
     45  1.6.2.1   thorpej options 	SWAPDEBUG
     46      1.1    deberg 
     47      1.5       wiz # Compatibility options
     48      1.1    deberg #options 	COMPAT_43	# and 4.3BSD and ...
     49      1.1    deberg #options 	COMPAT_44	# and 4.4BSD and ...
     50      1.1    deberg #options 	COMPAT_09	# NetBSD 0.9
     51      1.1    deberg #options 	COMPAT_10	# NetBSD 1.0
     52      1.1    deberg #options 	COMPAT_11	# NetBSD 1.1
     53      1.1    deberg #options 	COMPAT_12	# NetBSD 1.2
     54      1.1    deberg #options 	COMPAT_13	# NetBSD 1.3
     55      1.1    deberg options 	COMPAT_14	# NetBSD 1.4
     56      1.1    deberg 
     57      1.6       abs #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     58      1.6       abs 
     59      1.1    deberg #options 	COMPAT_M68K4K	# compatibility with NetBSD/m68k4k binaries
     60      1.1    deberg #options 	COMPAT_NOMID	# compatibility with 386BSD, BSDI, NetBSD 0.8,
     61      1.1    deberg #options 	COMPAT_SUNOS	# can run SunOS 4.1.1 executables
     62      1.1    deberg #options 	COMPAT_SVR4	# can run SVR4 executables
     63      1.1    deberg #options 	COMPAT_LINUX	# can run Linux/m68k executables
     64      1.4       chs options 	COMPAT_AOUT_M68K # support for NetBSD a.out executables
     65      1.4       chs options 	EXEC_AOUT	# support for a.out executables
     66      1.1    deberg 
     67      1.1    deberg # File systems
     68      1.1    deberg #file-system 	FFS		# UFS
     69      1.1    deberg #file-system 	EXT2FS		# second extended file system (linux)
     70      1.1    deberg #file-system 	LFS		# log-structured file system
     71      1.1    deberg file-system 	MFS		# memory file system
     72      1.1    deberg file-system 	NFS		# Network File System client
     73      1.1    deberg #file-system 	CD9660		# ISO 9660 + Rock Ridge file system
     74      1.1    deberg #file-system 	MSDOSFS		# MS-DOS file system
     75      1.1    deberg file-system 	FDESC		# /dev/fd
     76      1.1    deberg file-system 	KERNFS		# /kern
     77      1.1    deberg file-system 	NULLFS		# loopback file system
     78      1.1    deberg #file-system 	PORTAL		# portal filesystem (still experimental)
     79      1.1    deberg #file-system 	PROCFS		# /proc
     80      1.1    deberg #file-system 	UMAPFS		# NULLFS + uid and gid remapping
     81      1.1    deberg #file-system 	UNION		# union file system
     82      1.1    deberg 
     83      1.1    deberg #options 	NFSSERVER	# nfs server support
     84      1.1    deberg #options 	QUOTA		# FFS quotas
     85  1.6.2.1   thorpej #options 	SOFTDEP		# FFS soft updates support.
     86      1.1    deberg #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
     87      1.1    deberg 				# immutable) behave as system flags.
     88      1.1    deberg 
     89      1.1    deberg # Networking options
     90      1.1    deberg #options 	GATEWAY		# packet forwarding
     91      1.1    deberg options 	INET		# IP + ICMP + TCP + UDP
     92      1.1    deberg options 	INET6		# IPV6
     93      1.1    deberg #options 	IPSEC		# IP security
     94      1.1    deberg #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
     95      1.1    deberg #options 	IPSEC_DEBUG	# debug for IP security
     96      1.1    deberg #options 	MROUTING	# IP multicast routing
     97      1.1    deberg #options 	NS		# XNS
     98      1.1    deberg #options 	NSIP		# XNS tunneling over IP
     99      1.1    deberg #options 	ISO,TPIP	# OSI
    100      1.1    deberg #options 	EON		# OSI tunneling over IP
    101      1.1    deberg #options 	CCITT,LLC,HDLC	# X.25
    102      1.1    deberg #options 	NETATALK	# AppleTalk networking protocols
    103      1.1    deberg #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    104      1.1    deberg #options 	PPP_DEFLATE	# Deflate compression support for PPP
    105      1.1    deberg #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    106      1.1    deberg #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
    107      1.6       abs #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
    108      1.1    deberg 
    109      1.1    deberg # NeXT specific options
    110      1.1    deberg options 	M68040
    111      1.1    deberg options 	M68030
    112      1.1    deberg options 	FPSP
    113      1.1    deberg #options 	FPU_EMULATE
    114      1.1    deberg 
    115      1.1    deberg options 	ZS_CONSOLE_ABORT	# drop to debugger on break
    116      1.1    deberg #options 	SERCONSOLE		# use serial console
    117      1.1    deberg 
    118      1.1    deberg options 	NFS_BOOT_BOOTP
    119      1.1    deberg options 	NFS_BOOT_DHCP
    120      1.1    deberg 
    121      1.1    deberg # wscons options
    122  1.6.2.1   thorpej options 	RCONS_2BPP		# necessary for nextdisplay
    123  1.6.2.1   thorpej options 	RCONS_16BPP		# necessary for nextdisplay
    124      1.1    deberg #options 	WSEMUL_SUN		# sun terminal emulation
    125      1.1    deberg options 	WSEMUL_VT100		# VT100 / VT220 emulation
    126      1.1    deberg options 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
    127      1.1    deberg options 	WSDISPLAY_COMPAT_USL		# VT handling
    128      1.1    deberg options 	WSDISPLAY_COMPAT_RAWKBD	# can get raw scancodes
    129      1.1    deberg # see dev/wskbdmap_next.h for implemented layouts
    130      1.1    deberg #options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
    131      1.1    deberg 
    132      1.1    deberg config		netbsd root on ? type ?
    133      1.1    deberg 
    134      1.1    deberg #
    135      1.1    deberg # Device configuration
    136      1.1    deberg #
    137      1.1    deberg 
    138      1.1    deberg # The root node:
    139      1.1    deberg mainbus0 at root
    140      1.1    deberg 
    141      1.1    deberg #fpu0 at mainbus?
    142      1.1    deberg 
    143      1.1    deberg # device space
    144  1.6.2.1   thorpej intio0	at mainbus?
    145      1.1    deberg 
    146  1.6.2.1   thorpej nextkbd0	at intio? ipl 3
    147  1.6.2.1   thorpej nextdisplay0	at mainbus?
    148      1.1    deberg 
    149  1.6.2.1   thorpej wsdisplay*	at nextdisplay? console ?
    150  1.6.2.1   thorpej wskbd*		at nextkbd? console ?
    151      1.1    deberg 
    152      1.1    deberg # INTIO
    153  1.6.2.1   thorpej zsc0	at intio? ipl 5
    154  1.6.2.1   thorpej #zsc1	at intio? ipl 5
    155      1.1    deberg 
    156  1.6.2.1   thorpej xe*	at intio? ipl 3			# ethernet
    157      1.1    deberg 
    158  1.6.2.1   thorpej #esp0	at intio? ipl 3	flags 0xff00	# Turn off sync negotiation
    159      1.1    deberg 
    160      1.1    deberg #
    161      1.1    deberg # Serial ports
    162      1.1    deberg #
    163      1.1    deberg zstty0	at zsc0 channel 0	# ttya
    164      1.1    deberg zstty1	at zsc0 channel 1	# ttyb
    165      1.1    deberg 
    166      1.1    deberg # SCSI bus support
    167      1.1    deberg #scsibus* at scsi?
    168      1.1    deberg 
    169      1.1    deberg # SCSI devices
    170      1.1    deberg #sd*	at scsibus? target ? lun ?	# SCSI disk drives
    171      1.1    deberg #st*	at scsibus? target ? lun ?	# SCSI tape drives
    172      1.1    deberg #cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    173      1.1    deberg #ch*	at scsibus? target ? lun ?	# SCSI autochangers
    174      1.1    deberg #se*	at scsibus? target ? lun ?	# SCSI ethernet
    175      1.1    deberg #ss*	at scsibus? target ? lun ?	# SCSI scanners
    176      1.1    deberg #uk*	at scsibus? target ? lun ?	# SCSI unknown
    177      1.1    deberg 
    178      1.1    deberg 
    179      1.1    deberg # Memory-disk drivers
    180      1.1    deberg pseudo-device	md		2
    181      1.1    deberg 
    182      1.1    deberg # Misc.
    183      1.1    deberg pseudo-device	loop		1	# network loopback
    184      1.1    deberg pseudo-device	bpfilter	8	# packet filter
    185      1.1    deberg pseudo-device	sl		2	# CSLIP
    186      1.1    deberg pseudo-device	ppp		2	# PPP
    187      1.1    deberg pseudo-device	tun		2	# network tunneling over tty
    188      1.1    deberg #pseudo-device	gre		2	# generic L3 over IP tunnel
    189      1.1    deberg pseudo-device	ipfilter		# ip filter
    190      1.1    deberg pseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
    191      1.1    deberg #pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
    192      1.1    deberg #pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
    193      1.1    deberg # rnd is EXPERIMENTAL
    194      1.1    deberg #pseudo-device	rnd			# /dev/random and in-kernel generator
    195  1.6.2.1   thorpej #pseudo-device	wsmux			# mouse & keyboard multiplexor
    196      1.1    deberg 
    197      1.2  jdolecek pseudo-device	pty			# pseudo-terminals
    198      1.1    deberg pseudo-device	vnd		4	# paging to files
    199      1.1    deberg #pseudo-device	raid		4	# RAIDframe disk driver
    200      1.1    deberg #options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    201      1.1    deberg pseudo-device	ccd		4	# concatenated disks
    202