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