Home | History | Annotate | Line # | Download | only in conf
      1 # 	$NetBSD: LIBERO,v 1.71 2025/11/29 23:48:06 tsutsui Exp $
      2 
      3 #	NEWS1750 config file;
      4 #
      5 #	"The far way to the eventual news68k port"
      6 #
      7 include 	"arch/news68k/conf/std.news68k"
      8 
      9 #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     10 
     11 makeoptions	COPTS="-O2 -fno-reorder-blocks -fno-unwind-tables -fno-omit-frame-pointer"
     12 	# See share/mk/sys.mk. -fno-omit-frame-pointer is necessary for
     13 	# backtraces in DDB.
     14 
     15 maxusers	8
     16 
     17 options 	news1700		# news1[4567]00 support
     18 options 	CPU_SINGLE		# Will IOP be supported eventually?
     19 #options 	FPU_EMULATE
     20 
     21 # Standard system options
     22 options 	NTP			# NTP phase/frequency locked loop
     23 options 	KTRACE			# system call tracing support
     24 options 	SYSVMSG			# System V message queues
     25 options 	SYSVSEM			# System V semaphores
     26 options 	SYSVSHM			# System V shared memory
     27 #options 	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 # Alternate buffer queue strategies for better responsiveness under high
     32 # disk I/O load.
     33 #options 	BUFQ_READPRIO
     34 #options 	BUFQ_PRIOCSCAN
     35 
     36 # Debugging options
     37 options 	DDB			# kernel dynamic debugger
     38 #options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
     39 #options 	DEBUG			# extra kernel debugging support
     40 options 	DIAGNOSTIC		# extra kernel sanity checking
     41 options 	SCSIVERBOSE		# Verbose SCSI errors
     42 #options 	SCSIDEBUG		#
     43 
     44 # Compatibility options
     45 include 	"conf/compat_netbsd13.config"
     46 options 	COMPAT_AOUT_M68K	# compatibility with NetBSD/m68k a.out
     47 
     48 options 	COMPAT_SUNOS		# binary compatibility with SunOS
     49 #options 	COMPAT_LINUX		# binary compatibllity with Linux/m68k
     50 #options 	COMPAT_OSSAUDIO		# binary compatibllity with Linux/m68k
     51 
     52 # Filesystem options
     53 file-system	FFS		# Berkeley Fast Filesystem
     54 file-system	NFS		# Sun NFS-compatible filesystem client
     55 file-system	MFS		# memory-based filesystem
     56 file-system	CD9660		# ISO 9660 + Rock Ridge file system
     57 file-system	MSDOSFS		# MS-DOS FAT file system
     58 file-system	KERNFS		# /kern
     59 file-system	PROCFS		# /proc
     60 file-system	FDESC		# /dev/fd/*
     61 file-system	NULLFS		# loopback file system
     62 #file-system	UNION		# union file system
     63 file-system	PTYFS		# /dev/pts/N support
     64 
     65 options 	NFSSERVER	# nfs server support
     66 #options 	QUOTA		# legacy UFS quotas
     67 #options 	QUOTA2		# new, in-filesystem UFS quotas
     68 #options 	FFS_EI		# ffs endian independent support
     69 options 	FFS_NO_SNAPSHOT	# FFS snapshot support
     70 
     71 # Networking options
     72 options 	INET		# Internet protocols
     73 options 	INET6		# IPv6
     74 #options 	IPSEC		# IP security
     75 #options 	IPSEC_DEBUG	# debug for IP security
     76 #options 	GATEWAY		# IP packet forwarding
     77 #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     78 options 	NFS_BOOT_BOOTPARAM
     79 
     80 config	netbsd root on ? type ?
     81 #config	netbsd root on ? type nfs
     82 
     83 #
     84 # device declarations
     85 #
     86 
     87 mainbus0 at root
     88 
     89 # NEWS HYPER-BUS
     90 hb0	at mainbus0 systype NEWS1700
     91 
     92 # interval timer
     93 timer0	at hb0 addr 0xe1000000 ipl 6
     94 
     95 # MK48T02 TOD clock
     96 mkclock0 at hb0 addr 0xe0d80000
     97 
     98 # onboard LANCE ethernet
     99 le0	at hb0 addr 0xe0f00000 ipl 4
    100 
    101 # keyboard/mouse
    102 kbc0	at hb0 addr 0xe0d00000 ipl 5
    103 kb0	at kbc0
    104 ms0	at kbc0
    105 
    106 wskbd*	at kb?
    107 wsmouse* at ms?
    108 
    109 # onboard z8530 SCC
    110 zsc0	at hb0 addr 0xe0d40000 ipl 5 vect 64 flags 0x0
    111 zstty0	at zsc0 channel 0
    112 zstty1	at zsc0 channel 1
    113 
    114 # Frame buffer devices; not yet
    115 #fb0	at hb0 addr 0xf0700000			# NWB225
    116 #fb1	at hb0 addr 0xf0f00000			# NWB512
    117 
    118 # onboard uPD72067 FDC; not yet
    119 #fdc0	at hb0 addr 0xe0c80000 ipl 3
    120 #fd*	at fdc0
    121 
    122 # onboard CXD1180 SCSI controller
    123 #
    124 # This driver has several flags which may be enabled using
    125 # the "flags" directive.  Valid flags are:
    126 #
    127 # 0x000ff	Set (1<<target) to disable disconnect/reselect
    128 # 0x0ff00	Set (1<<(target+8)) to disable parity checking
    129 # 0x10000	Set this bit to disable DMA interrupts (poll)
    130 # 0x20000	Set this bit to disable DMA entirely (use PIO)
    131 #
    132 # For example: "flags 0x1000f" would disable DMA interrupts,
    133 # and disable disconnect/reselect for targets 0-3
    134 #
    135 si0	at hb0 addr 0xe0cc0000 ipl 4 flags 0x0
    136 scsibus* at si0
    137 
    138 sd*	at scsibus? target ? lun ?		# SCSI disks
    139 st*	at scsibus? target ? lun ?		# SCSI tapes
    140 cd*	at scsibus? target ? lun ?		# SCSI CD-ROMs
    141 #ch*	at scsibus? target ? lun ?		# SCSI changer devices
    142 #ss*	at scsibus? target ? lun ?		# SCSI scanners
    143 #uk*	at scsibus? target ? lun ?		# unknown SCSI devices
    144 
    145 # Misc.
    146 pseudo-device	loop			# loopback interface; required
    147 pseudo-device	pty			# pseudo-terminals
    148 pseudo-device	md			# memory disk device
    149 pseudo-device	vnd			# disk-like interface to files
    150 #pseudo-device	ccd			# concatenated and striped disks
    151 #pseudo-device	raid			# RAIDframe disk driver
    152 #pseudo-device	fss			# file system snapshot device
    153 #pseudo-device	sl			# SLIP interfaces
    154 #pseudo-device	ppp			# PPP interfaces
    155 #pseudo-device	tun			# Network "tunnel" device
    156 #pseudo-device	gre			# generic L3 over IP tunnel
    157 pseudo-device	bpfilter		# Berkeley Packet Filter
    158 #pseudo-device	npf			# NPF packet filter
    159 pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
    160 #pseudo-device	faith			# IPv[46] tcp relay translation i/f
    161 pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
    162 pseudo-device	clockctl		# user control of clock subsystem
    163 pseudo-device	wsmux
    164 pseudo-device	ksyms
    165