Home | History | Annotate | Line # | Download | only in conf
GENERIC revision 1.131
      1 #	$NetBSD: GENERIC,v 1.131 1999/11/21 14:00:38 itojun Exp $
      2 
      3 #
      4 #if 0
      5 # GENERIC Amiga or DraCo
      6 #
      7 # This configuration file contains all possible options
      8 #
      9 # make AMIGA extracts the AMIGA configuration file.
     10 # make DRACO extracts the DRACO configuration file.
     11 #endif
     12 #
     13 
     14 include "arch/amiga/conf/std.amiga"
     15 
     16 maxusers	8
     17 options 	RTC_OFFSET=0
     18 
     19 #
     20 # mainboards to support (in addition to Amiga)
     21 #
     22 #ifdef DRACO_CONFIGURATION
     23 options 	DRACO
     24 
     25 #endif
     26 #ifdef AMIGA_CONFIGURATION
     27 options 	BB060STUPIDROM	# You need this, if you have a non-DraCo
     28 				# MC68060 with an OS ROM up to (at least) 
     29 				# V40 (OS3.1) and want to boot with the
     30 				# bootblock.
     31 				# You do not need this if you have a DraCo,
     32 				# have no 68060 or NEVER use the bootblock
     33 options		P5PPC68KBOARD	# Phase5 PPC/68K board support
     34 #endif
     35 #
     36 # processors this kernel should support
     37 #
     38 options 	M68060		# support for 060
     39 options 	M060SP		# MC68060 software support (Required for 060)
     40 #ifdef AMIGA_CONFIGURATION
     41 options 	M68040		# support for 040
     42 options 	FPSP		# MC68040 floating point support
     43 options 	M68030		# support for 030
     44 options 	M68020		# support for 020/851
     45 options 	FPU_EMULATE	# FPU emulation
     46 #endif
     47 
     48 # Pull in config fragments for kernel crypto.  This is required for
     49 # options IPSEC etc. to work. If you want to run with IPSEC, uncomment
     50 # one of these, based on whether you use crypto-us or crypto-intl, and
     51 # adjust the prefixes as necessary.
     52 
     53 #prefix ../crypto-us/sys
     54 #cinclude "conf/files.crypto-us"
     55 #prefix
     56 
     57 #prefix ../crypto-intl/sys
     58 #cinclude "conf/files.crypto-intl"
     59 #prefix
     60 
     61 #
     62 # Networking options
     63 #
     64 options 	INET		# IP networking support (Required)
     65 options 	INET6		# IPV6
     66 #options 	IPSEC		# IP security
     67 #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
     68 #options 	IPSEC_DEBUG	# debug for IP security
     69 #options 	GATEWAY		# Packet forwarding
     70 #options 	DIRECTED_BROADCAST	# Broadcast across subnets
     71 #options 	MROUTING	# Multicast routing
     72 options 	NS		# XNS
     73 #options 	NSIP		# XNS tunneling over IP
     74 options 	ISO,TPIP	# OSI
     75 options 	EON		# OSI tunneling over IP
     76 options 	CCITT,LLC,HDLC	# X.25
     77 options 	NETATALK	# AppleTalk networking protocols
     78 options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
     79 options 	PPP_DEFLATE	# Deflate compression support for PPP
     80 options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
     81 options 	PFIL_HOOKS	# pfil(9) packet filter hooks
     82 options 	IPFILTER_LOG	# ipmon(8) log support
     83 
     84 # Filesystems
     85 file-system 	FFS		# Berkeley fast file system
     86 file-system 	EXT2FS		# second extended file system (linux)
     87 #file-system 	LFS		# log-structured filesystem (experimental)
     88 file-system 	MFS		# Memory based filesystem
     89 file-system 	NFS		# Network File System client side code
     90 file-system 	ADOSFS		# AmigaDOS file system
     91 file-system 	CD9660		# ISO 9660 + Rock Ridge filesystem
     92 file-system 	MSDOSFS		# MS-DOS filesystem
     93 file-system 	FDESC		# user file descriptor filesystem
     94 file-system 	KERNFS		# kernel data-structure filesystem
     95 file-system 	NULLFS		# loopback filesystem
     96 #file-system 	PORTAL		# Portal filesystem
     97 file-system 	PROCFS		# /proc filesystem
     98 file-system 	UMAPFS		# NULLFS + uid and gid remapping
     99 file-system 	UNION		# union filesystem
    100 
    101 # Filesystem options
    102 options 	QUOTA		# User and group quotas in FFS
    103 #options 	FFS_EI		# FFS Endian Independant support
    104 #options 	SOFTDEP         # FFS soft updates support.
    105 options 	NFSSERVER	# Network File System server side code
    106 #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
    107 				# immutable) behave as system flags.
    108 
    109 #
    110 # Compatability options for various existing systems
    111 #
    112 options 	TCP_COMPAT_42	# compatibility with 4.2BSD TCP/IP
    113 options 	COMPAT_43	# compatibility with 4.3BSD interfaces
    114 options 	COMPAT_09	# compatibility with NetBSD 0.9
    115 options 	COMPAT_10	# compatibility with NetBSD 1.0
    116 options 	COMPAT_12	# compatibility with NetBSD 1.2
    117 options 	COMPAT_13	# compatibility with NetBSD 1.3
    118 options 	COMPAT_14	# compatibility with NetBSD 1.4
    119 options 	COMPAT_SUNOS	# Support to run Sun (m68k) executables
    120 options 	COMPAT_SVR4	# Support to run SVR4 (m68k) executables
    121 options 	COMPAT_NOMID	# allow nonvalid machine id executables
    122 #options 	COMPAT_LINUX	# Support to run Linux/m68k executables
    123 options 	EXEC_ELF32	# 32-bit ELF executables (Linux, SVR4)
    124 
    125 #
    126 # Support for System V IPC facilities.
    127 #
    128 options 	SYSVSHM		# System V-like shared memory
    129 options 	SYSVMSG		# System V-like messages
    130 options 	SYSVSEM		# System V-like semaphores
    131 
    132 #
    133 # Support for various kernel options
    134 #
    135 options 	KTRACE		# system call tracing support
    136 options 	LKM		# Loadable kernel modules
    137 options 	NKMEMCLUSTERS=256	# Size of kernel malloc area
    138 options 	UCONSOLE	# anyone can redirect a virtual console
    139 #options 	INSECURE	# allow, among other insecure stuff, LKM 
    140 				# loading in multi-user mode.
    141 options 	SCSIVERBOSE	# Verbose SCSI errors
    142 
    143 options 	NTP		# NTP phase/frequency locked loop
    144 
    145 #
    146 # Misc. debugging options
    147 #
    148 options 	DDB		# Kernel debugger
    149 #options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
    150 options 	DIAGNOSTIC	# Extra kernel sanity checks
    151 #options 	DEBUG		# Enable misc. kernel debugging code
    152 #options 	SYSCALL_DEBUG	# debug all syscalls.
    153 #options 	SCSIDEBUG	# Add SCSI debugging statements
    154 #options 	PANICBUTTON	# Forced crash via keypress (???)
    155 
    156 #
    157 # Amiga specific options
    158 #
    159 #options 	LIMITMEM=24	# Do not use more than LIMITMEM MB of the
    160 				# first bank of RAM. (default: unlimited)
    161 #options	NKPTADD=4	# set this for 4 additional KPT pages
    162 #options	NKPTADDSHIFT=24	# set this for 1 additional KPT page
    163 				# per 16 MB (1<<24 bytes) of RAM
    164                                 # define and decrease this, or define and
    165                                 # increase NKPTADD if you get "out of PT pages"
    166                                 # panics.
    167 
    168 # ATTENTION: There is NO WARRANTY AT ALL that the sync will be complete
    169 # before the 10 secondinterval ends, or that KBDRESET does work at all.
    170 #options 	KBDRESET	# sync on Ctrl-Amiga-Amiga
    171 
    172 # These options improve performance with the built-in serial port
    173 # on slower Amigas.  Try the larger buffers first then lev6_defer.
    174 #options 	SERIBUF_SIZE=4096
    175 #options 	SEROBUF_SIZE=32
    176 #options 	LEV6_DEFER	# defers l6 to l4 (below serial l5)
    177 
    178 options 	RETINACONSOLE	# enable code to allow retina to be console
    179 #ifdef AMIGA_CONFIGURATION
    180 options 	ULOWELLCONSOLE	# enable code to allow a2410 to be console
    181 options 	CL5426CONSOLE	# Cirrus console
    182 options 	CV64CONSOLE	# CyberVision console
    183 options 	TSENGCONSOLE	# Tseng console
    184 options 	CV3DCONSOLE	# CyberVision 64/3D console
    185 #endif
    186 
    187 #ifdef AMIGA_CONFIGURATION
    188 options 	GRF_ECS		# Enhanced Chip Set
    189 options 	GRF_NTSC	# NTSC
    190 options 	GRF_PAL		# PAL
    191 options 	GRF_A2024	# Support for the A2024
    192 options 	GRF_AGA		# AGA Chip Set
    193 options 	GRF_AGA_VGA	# AGA VGAONLY timing
    194 options 	GRF_SUPER72	# AGA Super-72
    195 #endif
    196 #options 	KFONT_8X11	# 8x11 font
    197 
    198 # This is how you would tell the kernel the A2410 oscillator frequencies:
    199 # The used frequencies are the defaults, and do not need option setting
    200 #options 	ULOWELL_OSC1=36000000
    201 #options 	ULOWELL_OSC2=66667000
    202 
    203 # This is how you specify the blitting speed, higher values may speed up blits
    204 # a littel bit.  If you raise this value too much some trash may appear.
    205 # the commented version is the default.
    206 #options 	RH_MEMCLK=61000000
    207 # this option enables the 64 bit sprite which does not work
    208 # for quite a few people.  E.g. The cursor sprite will turn to a block
    209 # when moved to the top of the screen in X.
    210 #options 	RH_64BIT_SPRITE
    211 # enables fast scroll code appears to now work on 040 systems.
    212 #options 	RETINA_SPEED_HACK
    213 # enables the Hardwarecursor which does not work on some systems.
    214 #options 	RH_HARDWARECURSOR
    215 
    216 #ifdef AMIGA_CONFIGURATION
    217 grfcc0		at mainbus0		# custom chips
    218 grfrt0		at zbus0		# retina II
    219 #endif
    220 grfrh0		at zbus0		# retina III
    221 #ifdef AMIGA_CONFIGURATION
    222 grfcl*		at zbus0		# Picasso II/Piccalo/Spectrum
    223 grful0		at zbus0		# A2410
    224 grfcv0		at zbus0		# CyberVision 64
    225 grfet*		at zbus0		# Tseng (oMniBus, Domino, Merlin)
    226 grfcv3d0	at zbus0		# CyberVision 64/3D
    227 #endif
    228 
    229 #ifdef AMIGA_CONFIGURATION
    230 grf0		at grfcc0
    231 grf1		at grfrt0
    232 #endif
    233 grf2		at grfrh0
    234 #ifdef AMIGA_CONFIGURATION
    235 grf3		at grfcl?
    236 grf4		at grful0
    237 grf5		at grfcv0
    238 grf6		at grfet?
    239 grf7		at grfcv3d0
    240 #endif
    241 #ifdef AMIGA_CONFIGURATION
    242 ite0		at grf0			# terminal emulators for grfs
    243 ite1		at grf1			# terminal emulators for grfs
    244 #endif
    245 ite2		at grf2			# terminal emulators for grfs
    246 #ifdef AMIGA_CONFIGURATION
    247 ite3		at grf3			# terminal emulators for grfs
    248 ite4		at grf4			# terminal emulators for grfs
    249 ite5		at grf5			# terminal emulators for grfs
    250 ite6		at grf6			# terminal emulators for grfs
    251 ite7		at grf7			# terminal emulators for grfs
    252 #endif
    253 
    254 msc0		at zbus0		# A2232 MSC multiport serial.
    255 mfc0		at zbus0		# MultiFaceCard I/O board
    256 mfcs0		at mfc0 unit 0		# MFC serial
    257 mfcs1		at mfc0 unit 1		# MFC serial
    258 #mfcp0		at mfc0 unit 0		# MFC parallel [not available yet]
    259 #mfc1		at zbus0		# MultiFaceCard 2nd I/O board
    260 #mfcs2		at mfc1 unit 0
    261 #mfcs3		at mfc1 unit 1
    262 #mfcp1		at mfc1 unit 0
    263 
    264 hyper*		at zbus?		# zbus HyperCom3/3+/4/4+
    265 #hyper*		at mainbus0		# not yet: HyperCom1 + HyperCom3
    266 com*		at hyper? port ?	# Hypercom3/4 serial ports
    267 lpt*		at hyper? port ?	# Hypercom3+/4+ parallel port
    268 
    269 #ifdef AMIGA_CONFIGURATION
    270 #
    271 # Amiga Mainboard devices (sans graphics and keyboard)
    272 #
    273 
    274 ser0		at mainbus0		# Amiga onboard serial
    275 par0		at mainbus0		# Amiga onboard parallel
    276 ms*		at mainbus0		# Amiga mice
    277 fdc0		at mainbus0		# Amiga FDC
    278 fd*		at fdc0 unit ?		# floppy disks on the later
    279 a34kbbc0	at mainbus0		# A3000/A4000 battery backed clock
    280 a2kbbc0 	at mainbus0		# A2000 battery backed clock
    281 aucc*		at mainbus0		# Amiga CC audio
    282 audio*		at aucc?
    283 #endif
    284 
    285 #ifdef DRACO_CONFIGURATION
    286 #
    287 # DraCo Mainboard devices (sans keyboard)
    288 #
    289 
    290 drbbc0		at mainbus0		# DraCo battery backed clock
    291 drsupio0	at mainbus0		# DraCo superio chip
    292 com*		at drsupio? port ?	# DraCo serial
    293 lpt0		at drsupio? port ?	# DraCo parallel
    294 #endif
    295 
    296 #
    297 # Zorro-II, Zorro-III, DraCo Direct-Bus devices (sans graphics)
    298 #
    299 
    300 #ifndef DRACO_CONFIGURATION
    301 # Alas, Melody-Z2 dont configure in the DraCo bus. 
    302 melody* 	at zbus0		# Melody MPEG audio decoder
    303 audio*		at melody?
    304 #endif
    305 
    306 # Ethernet cards:
    307 le*		at zbus0		# A2065, Ameristar, Ariadne
    308 ne*		at zbus0		# AriadneII
    309 ed*		at zbus0		# Hydra, ASDG LanRover
    310 es*		at zbus0		# CEI A4066 EthernetPLUS
    311 qn*		at zbus0		# Quicknet
    312 
    313 # Arcnet
    314 bah*		at zbus0		# C=/Ameristar A2060 / 560
    315 
    316 #ifdef AMIGA_CONFIGURATION
    317 # Greater Valley Product Bus
    318 gvpbus* 	at zbus0
    319 
    320 # scsi stuff, all possible
    321 gtsc0		at gvpbus?		# GVP series II scsi
    322 scsibus*	at gtsc0
    323 ahsc0		at mainbus0		# A3000 scsi
    324 scsibus*	at ahsc0
    325 atzsc0		at zbus0		# A2091 scsi
    326 scsibus*	at atzsc0
    327 wstsc0		at zbus0		# Wordsync II scsi
    328 scsibus*	at wstsc0
    329 ivsc0		at zbus0		# IVS scsi
    330 scsibus*	at ivsc0
    331 mlhsc0		at zbus0		# Hacker scsi
    332 scsibus*	at mlhsc0
    333 otgsc0		at zbus0		# 12 gauge scsi
    334 scsibus*	at otgsc0
    335 zssc0		at zbus0		# Zeus scsi
    336 scsibus*	at zssc0
    337 mgnsc0		at zbus0		# Magnum scsi
    338 scsibus*	at mgnsc0
    339 wesc0		at zbus0		# Warp Engine scsi
    340 scsibus*	at wesc0
    341 afsc0		at zbus0		# A4091 scsi
    342 scsibus*	at afsc0
    343 aftsc0		at mainbus0		# A4000T scsi
    344 scsibus*	at aftsc0
    345 flsc0		at zbus0		# FastlaneZ3 scsi
    346 scsibus*	at flsc0
    347 bzsc0		at zbus0		# Blizzard 1230 I,II scsi 
    348 scsibus*	at bzsc0
    349 bzivsc0 	at zbus0		# Blizzard 12x0 IV scsi 
    350 scsibus*	at bzivsc0
    351 bztzsc0 	at zbus0		# Blizzard 2060 scsi
    352 scsibus*	at bztzsc0
    353 cbsc0		at zbus0		# CyberSCSI I
    354 scsibus*	at cbsc0
    355 cbiisc0 	at zbus0		# CyberSCSI II
    356 scsibus*	at cbiisc0
    357 cbiiisc0 	at zbus0		# Cyberstorm mk.III/Cyberstorm PPC SCSI
    358 scsibus*	at cbiiisc0
    359 empsc0		at zbus0		# Emplant scsi
    360 scsibus*	at empsc0
    361 idesc0		at mainbus0		# A4000 & A1200 IDE
    362 scsibus*	at idesc0
    363 #endif
    364 
    365 #ifdef DRACO_CONFIGURATION
    366 drsc0		at mainbus0		# DraCo scsi
    367 scsibus*	at drsc0
    368 #endif
    369 
    370 
    371 # each hard drive from low target to high
    372 # will configure to the next available sd unit number
    373 sd*	at scsibus? target ? lun ?	# scsi disks
    374 st*	at scsibus? target ? lun ?	# scsi tapes
    375 cd*	at scsibus? target ? lun ?	# scsi cds
    376 ss*	at scsibus? target ? lun ?	# scsi scanner
    377 ch*	at scsibus? target ? lun ?	# scsi autochangers
    378 uk*	at scsibus? target ? lun ?	# scsi unknown
    379 
    380 pseudo-device	loop			# loopback network interface
    381 pseudo-device	sl		1	# SLIP network interfaces
    382 pseudo-device	ppp		1	# PPP network interfaces
    383 pseudo-device	tun		1	# network tunnel line discipline
    384 #pseudo-device	gre		2	# generic L3 over IP tunnel
    385 #pseudo-device	ipip		2	# IP Encapsulation within IP (RFC 2003)
    386 pseudo-device	bpfilter	16	# Berkeley packet filter
    387 pseudo-device	ipfilter		# IP Filter package
    388 pseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
    389 #pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
    390 
    391 pseudo-device	view		4	# views (needed for grfcc)
    392 pseudo-device	pty		16	# pseudo ptys
    393 
    394 pseudo-device	vnd		4	# vnode pseudo-disks
    395 pseudo-device	ccd		4	# concatenated disk devices
    396 #pseudo-device	raid		4	# RAIDframe disk driver
    397 
    398 # rnd is EXPERIMENTAL at this point.
    399 #pseudo-device  rnd                     # /dev/random and in-kernel generator
    400 #options        RND_COM                 # use "com" randomness as well (BROKEN)
    401 
    402 config	netbsd root on ? type ?
    403