AMIGA revision 1.21
11.21Saugustss# $NetBSD: AMIGA,v 1.21 1999/07/29 10:37:14 augustss Exp $
21.9Sis#
31.9Sis# This file was automatically created. Changes will be
41.9Sis# lost when running make in this directory.
51.9Sis#
61.9Sis# Created from: 
71.20Sis#$ NetBSD: GENERIC,v 1.127 1999/07/28 05:55:19 is Exp $
81.9Sis
91.9Sisinclude "arch/amiga/conf/std.amiga"
101.9Sis
111.9Sismaxusers	8
121.9Sisoptions 	RTC_OFFSET=0
131.9Sis
141.9Sis#mainboards to support (in addition to Amiga)
151.9Sis
161.9Sisoptions 	BB060STUPIDROM	# You need this, if you have a non-DraCo
171.12Sis				# MC68060 with an OS ROM up to (at least) 
181.12Sis				# V40 (OS3.1) and want to boot with the
191.12Sis				# bootblock.
201.12Sis				# You do not need this if you have a DraCo,
211.12Sis				# have no 68060 or NEVER use the bootblock
221.9Sis
231.9Sis#processors this kernel should support
241.9Sis
251.9Sisoptions 	M68060		# support for 060
261.9Sisoptions 	M060SP		# MC68060 software support (Required for 060)
271.9Sis
281.9Sisoptions 	M68040		# support for 040
291.9Sisoptions 	FPSP		# MC68040 floating point support
301.9Sisoptions 	M68030		# support for 030
311.9Sisoptions 	M68020		# support for 020/851
321.9Sisoptions 	FPU_EMULATE	# FPU emulation
331.9Sis
341.9Sis#Networking options
351.9Sis
361.9Sisoptions 	INET		# IP networking support (Required)
371.9Sis#options 	GATEWAY		# Packet forwarding
381.9Sis#options 	DIRECTED_BROADCAST	# Broadcast across subnets
391.9Sis#options 	MROUTING	# Multicast routing
401.9Sisoptions 	NS		# XNS
411.9Sis#options 	NSIP		# XNS tunneling over IP
421.9Sisoptions 	ISO,TPIP	# OSI
431.9Sisoptions 	EON		# OSI tunneling over IP
441.9Sisoptions 	CCITT,LLC,HDLC	# X.25
451.9Sisoptions 	NETATALK	# AppleTalk networking protocols
461.9Sisoptions 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
471.9Sisoptions 	PPP_DEFLATE	# Deflate compression support for PPP
481.9Sisoptions 	PPP_FILTER	# Active filter support for PPP (requires bpf)
491.9Sisoptions 	PFIL_HOOKS	# pfil(9) packet filter hooks
501.9Sisoptions 	IPFILTER_LOG	# ipmon(8) log support
511.9Sis
521.9Sisfile-system 	FFS		# Berkeley fast file system
531.15Stronfile-system 	EXT2FS		# second extended file system (linux)
541.9Sis#file-system 	LFS		# log-structured filesystem (experimental)
551.9Sisfile-system 	MFS		# Memory based filesystem
561.9Sisfile-system 	NFS		# Network File System client side code
571.9Sisfile-system 	ADOSFS		# AmigaDOS file system
581.9Sisfile-system 	CD9660		# ISO 9660 + Rock Ridge filesystem
591.9Sisfile-system 	MSDOSFS		# MS-DOS filesystem
601.9Sisfile-system 	FDESC		# user file descriptor filesystem
611.9Sisfile-system 	KERNFS		# kernel data-structure filesystem
621.9Sisfile-system 	NULLFS		# loopback filesystem
631.9Sis#file-system 	PORTAL		# Portal filesystem
641.9Sisfile-system 	PROCFS		# /proc filesystem
651.9Sisfile-system 	UMAPFS		# NULLFS + uid and gid remapping
661.9Sisfile-system 	UNION		# union filesystem
671.9Sis
681.9Sis#Filesystem options
691.9Sisoptions 	QUOTA		# User and group quotas in FFS
701.9Sis#options 	FFS_EI		# FFS Endian Independant support
711.15Stronoptions 	NFSSERVER	# Network File System server side code
721.15Stron#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
731.15Stron				# immutable) behave as system flags.
741.9Sis
751.9Sis#Compatability options for various existing systems
761.9Sis
771.9Sisoptions 	TCP_COMPAT_42	# compatibility with 4.2BSD TCP/IP
781.9Sisoptions 	COMPAT_43	# compatibility with 4.3BSD interfaces
791.9Sisoptions 	COMPAT_09	# compatibility with NetBSD 0.9
801.9Sisoptions 	COMPAT_10	# compatibility with NetBSD 1.0
811.9Sisoptions 	COMPAT_12	# compatibility with NetBSD 1.2
821.9Sisoptions 	COMPAT_13	# compatibility with NetBSD 1.3
831.21Saugustssoptions 	COMPAT_14	# compatibility with NetBSD 1.4
841.10Sisoptions 	COMPAT_SUNOS	# Support to run Sun (m68k) executables
851.15Stronoptions 	COMPAT_SVR4	# Support to run SVR4 (m68k) executables
861.9Sisoptions 	COMPAT_NOMID	# allow nonvalid machine id executables
871.10Sis#options 	COMPAT_LINUX	# Support to run Linux/m68k executables
881.18Sisoptions 	EXEC_ELF32	# 32-bit ELF executables (Linux, SVR4)
891.9Sis
901.9Sis#Support for System V IPC facilities.
911.9Sis
921.9Sisoptions 	SYSVSHM		# System V-like shared memory
931.9Sisoptions 	SYSVMSG		# System V-like messages
941.9Sisoptions 	SYSVSEM		# System V-like semaphores
951.9Sis
961.9Sis#Support for various kernel options
971.9Sis
981.9Sisoptions 	KTRACE		# system call tracing support
991.9Sisoptions 	LKM		# Loadable kernel modules
1001.9Sisoptions 	NKMEMCLUSTERS=256	# Size of kernel malloc area
1011.9Sisoptions 	UCONSOLE	# anyone can redirect a virtual console
1021.9Sis#options 	INSECURE	# allow, among other insecure stuff, LKM 
1031.12Sis				# loading in multi-user mode.
1041.9Sisoptions 	SCSIVERBOSE	# Verbose SCSI errors
1051.9Sis
1061.9Sisoptions 	NTP		# NTP phase/frequency locked loop
1071.9Sis
1081.9Sis#Misc. debugging options
1091.9Sis
1101.9Sisoptions 	DDB		# Kernel debugger
1111.9Sis#options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
1121.9Sisoptions 	DIAGNOSTIC	# Extra kernel sanity checks
1131.9Sis#options 	DEBUG		# Enable misc. kernel debugging code
1141.9Sis#options 	SYSCALL_DEBUG	# debug all syscalls.
1151.9Sis#options 	SCSIDEBUG	# Add SCSI debugging statements
1161.9Sis#options 	PANICBUTTON	# Forced crash via keypress (???)
1171.9Sis
1181.9Sis#Amiga specific options
1191.9Sis
1201.10Sis#options 	LIMITMEM=24	# Do not use more than LIMITMEM MB of the
1211.12Sis				# first bank of RAM. (default: unlimited)
1221.9Sis#options	NKPTADD=4	# set this for 4 additional KPT pages
1231.9Sis#options	NKPTADDSHIFT=24	# set this for 1 additional KPT page
1241.12Sis				# per 16 MB (1<<24 bytes) of RAM
1251.12Sis                                # define and decrease this, or define and
1261.12Sis                                # increase NKPTADD if you get "out of PT pages"
1271.12Sis                                # panics.
1281.12Sis
1291.9Sis#ATTENTION: There is NO WARRANTY AT ALL that the sync will be complete
1301.9Sis#before the 10 secondinterval ends, or that KBDRESET does work at all.
1311.9Sis#options 	KBDRESET	# sync on Ctrl-Amiga-Amiga
1321.9Sis
1331.9Sis#These options improve performance with the built-in serial port
1341.9Sis#on slower Amigas.  Try the larger buffers first then lev6_defer.
1351.9Sis#options 	SERIBUF_SIZE=4096
1361.9Sis#options 	SEROBUF_SIZE=32
1371.9Sis#options 	LEV6_DEFER	# defers l6 to l4 (below serial l5)
1381.9Sis
1391.9Sisoptions 	RETINACONSOLE	# enable code to allow retina to be console
1401.9Sis
1411.9Sisoptions 	ULOWELLCONSOLE	# enable code to allow a2410 to be console
1421.9Sisoptions 	CL5426CONSOLE	# Cirrus console
1431.9Sisoptions 	CV64CONSOLE	# CyberVision console
1441.9Sisoptions 	TSENGCONSOLE	# Tseng console
1451.9Sisoptions 	CV3DCONSOLE	# CyberVision 64/3D console
1461.9Sis
1471.9Sisoptions 	GRF_ECS		# Enhanced Chip Set
1481.9Sisoptions 	GRF_NTSC	# NTSC
1491.9Sisoptions 	GRF_PAL		# PAL
1501.9Sisoptions 	GRF_A2024	# Support for the A2024
1511.9Sisoptions 	GRF_AGA		# AGA Chip Set
1521.12Sisoptions 	GRF_AGA_VGA	# AGA VGAONLY timing
1531.9Sisoptions 	GRF_SUPER72	# AGA Super-72
1541.9Sis
1551.9Sis#options 	KFONT_8X11	# 8x11 font
1561.9Sis
1571.9Sis#This is how you would tell the kernel the A2410 oscillator frequencies:
1581.12Sis#The used frequencies are the defaults, and do not need option setting
1591.9Sis#options 	ULOWELL_OSC1=36000000
1601.9Sis#options 	ULOWELL_OSC2=66667000
1611.9Sis
1621.9Sis#This is how you specify the blitting speed, higher values may speed up blits
1631.9Sis#a littel bit.  If you raise this value too much some trash may appear.
1641.9Sis#the commented version is the default.
1651.9Sis#options 	RH_MEMCLK=61000000
1661.10Sis#this option enables the 64 bit sprite which does not work
1671.9Sis#for quite a few people.  E.g. The cursor sprite will turn to a block
1681.9Sis#when moved to the top of the screen in X.
1691.9Sis#options 	RH_64BIT_SPRITE
1701.9Sis#enables fast scroll code appears to now work on 040 systems.
1711.9Sis#options 	RETINA_SPEED_HACK
1721.9Sis#enables the Hardwarecursor which does not work on some systems.
1731.9Sis#options 	RH_HARDWARECURSOR
1741.9Sis
1751.9Sisgrfcc0		at mainbus0		# custom chips
1761.9Sisgrfrt0		at zbus0		# retina II
1771.9Sis
1781.9Sisgrfrh0		at zbus0		# retina III
1791.9Sis
1801.9Sisgrfcl*		at zbus0		# Picasso II/Piccalo/Spectrum
1811.9Sisgrful0		at zbus0		# A2410
1821.9Sisgrfcv0		at zbus0		# CyberVision 64
1831.9Sisgrfet*		at zbus0		# Tseng (oMniBus, Domino, Merlin)
1841.9Sisgrfcv3d0	at zbus0		# CyberVision 64/3D
1851.9Sis
1861.9Sisgrf0		at grfcc0
1871.9Sisgrf1		at grfrt0
1881.9Sis
1891.9Sisgrf2		at grfrh0
1901.9Sis
1911.9Sisgrf3		at grfcl?
1921.9Sisgrf4		at grful0
1931.9Sisgrf5		at grfcv0
1941.9Sisgrf6		at grfet?
1951.9Sisgrf7		at grfcv3d0
1961.9Sis
1971.10Sisite0		at grf0			# terminal emulators for grfs
1981.10Sisite1		at grf1			# terminal emulators for grfs
1991.9Sis
2001.10Sisite2		at grf2			# terminal emulators for grfs
2011.9Sis
2021.10Sisite3		at grf3			# terminal emulators for grfs
2031.10Sisite4		at grf4			# terminal emulators for grfs
2041.10Sisite5		at grf5			# terminal emulators for grfs
2051.10Sisite6		at grf6			# terminal emulators for grfs
2061.10Sisite7		at grf7			# terminal emulators for grfs
2071.9Sis
2081.9Sismsc0		at zbus0		# A2232 MSC multiport serial.
2091.9Sismfc0		at zbus0		# MultiFaceCard I/O board
2101.9Sismfcs0		at mfc0 unit 0		# MFC serial
2111.9Sismfcs1		at mfc0 unit 1		# MFC serial
2121.9Sis#mfcp0		at mfc0 unit 0		# MFC parallel [not available yet]
2131.9Sis#mfc1		at zbus0		# MultiFaceCard 2nd I/O board
2141.9Sis#mfcs2		at mfc1 unit 0
2151.9Sis#mfcs3		at mfc1 unit 1
2161.9Sis#mfcp1		at mfc1 unit 0
2171.9Sis
2181.16Sishyper*		at zbus?		# zbus HyperCom3/3+/4/4+
2191.9Sis#hyper*		at mainbus0		# not yet: HyperCom1 + HyperCom3
2201.9Siscom*		at hyper? port ?	# Hypercom3/4 serial ports
2211.16Sislpt*		at hyper? port ?	# Hypercom3+/4+ parallel port
2221.9Sis
2231.12Sis#Amiga Mainboard devices (sans graphics and keyboard)
2241.9Sis
2251.9Sisser0		at mainbus0		# Amiga onboard serial
2261.9Sispar0		at mainbus0		# Amiga onboard parallel
2271.9Sisms*		at mainbus0		# Amiga mice
2281.9Sisfdc0		at mainbus0		# Amiga FDC
2291.9Sisfd*		at fdc0 unit ?		# floppy disks on the later
2301.9Sisa34kbbc0	at mainbus0		# A3000/A4000 battery backed clock
2311.9Sisa2kbbc0 	at mainbus0		# A2000 battery backed clock
2321.9Sisaucc*		at mainbus0		# Amiga CC audio
2331.9Sisaudio*		at aucc?
2341.9Sis
2351.9Sis#Zorro-II, Zorro-III, DraCo Direct-Bus devices (sans graphics)
2361.9Sis
2371.10Sis#Alas, Melody-Z2 dont configure in the DraCo bus. 
2381.9Sismelody* 	at zbus0		# Melody MPEG audio decoder
2391.9Sisaudio*		at melody?
2401.9Sis
2411.9Sis#Ethernet cards:
2421.9Sisle*		at zbus0		# A2065, Ameristar, Ariadne
2431.9Sisne*		at zbus0		# AriadneII
2441.17Sised*		at zbus0		# Hydra, ASDG LanRover
2451.17Sises*		at zbus0		# CEI A4066 EthernetPLUS
2461.17Sisqn*		at zbus0		# Quicknet
2471.9Sis
2481.9Sisbah*		at zbus0		# C=/Ameristar A2060 / 560
2491.9Sis
2501.9Sis#Greater Valley Product Bus
2511.9Sisgvpbus* 	at zbus0
2521.9Sis
2531.9Sis#scsi stuff, all possible
2541.9Sisgtsc0		at gvpbus?		# GVP series II scsi
2551.9Sisscsibus*	at gtsc0
2561.9Sisahsc0		at mainbus0		# A3000 scsi
2571.9Sisscsibus*	at ahsc0
2581.9Sisatzsc0		at zbus0		# A2091 scsi
2591.9Sisscsibus*	at atzsc0
2601.9Siswstsc0		at zbus0		# Wordsync II scsi
2611.9Sisscsibus*	at wstsc0
2621.9Sisivsc0		at zbus0		# IVS scsi
2631.9Sisscsibus*	at ivsc0
2641.9Sismlhsc0		at zbus0		# Hacker scsi
2651.9Sisscsibus*	at mlhsc0
2661.9Sisotgsc0		at zbus0		# 12 gauge scsi
2671.9Sisscsibus*	at otgsc0
2681.9Siszssc0		at zbus0		# Zeus scsi
2691.9Sisscsibus*	at zssc0
2701.9Sismgnsc0		at zbus0		# Magnum scsi
2711.9Sisscsibus*	at mgnsc0
2721.9Siswesc0		at zbus0		# Warp Engine scsi
2731.9Sisscsibus*	at wesc0
2741.9Sisafsc0		at zbus0		# A4091 scsi
2751.9Sisscsibus*	at afsc0
2761.9Sisaftsc0		at mainbus0		# A4000T scsi
2771.9Sisscsibus*	at aftsc0
2781.9Sisflsc0		at zbus0		# FastlaneZ3 scsi
2791.9Sisscsibus*	at flsc0
2801.9Sisbzsc0		at zbus0		# Blizzard 1230 I,II scsi 
2811.9Sisscsibus*	at bzsc0
2821.9Sisbzivsc0 	at zbus0		# Blizzard 12x0 IV scsi 
2831.9Sisscsibus*	at bzivsc0
2841.9Sisbztzsc0 	at zbus0		# Blizzard 2060 scsi
2851.9Sisscsibus*	at bztzsc0
2861.9Siscbsc0		at zbus0		# CyberSCSI I
2871.9Sisscsibus*	at cbsc0
2881.9Siscbiisc0 	at zbus0		# CyberSCSI II
2891.9Sisscsibus*	at cbiisc0
2901.10Siscbiiisc0 	at zbus0		# Cyberstorm mk.III/Cyberstorm PPC SCSI
2911.10Sisscsibus*	at cbiiisc0
2921.9Sisempsc0		at zbus0		# Emplant scsi
2931.9Sisscsibus*	at empsc0
2941.9Sisidesc0		at mainbus0		# A4000 & A1200 IDE
2951.9Sisscsibus*	at idesc0
2961.9Sis
2971.9Sis#each hard drive from low target to high
2981.9Sis#will configure to the next available sd unit number
2991.9Sissd*	at scsibus? target ? lun ?	# scsi disks
3001.9Sisst*	at scsibus? target ? lun ?	# scsi tapes
3011.10Siscd*	at scsibus? target ? lun ?	# scsi cds
3021.9Sisss*	at scsibus? target ? lun ?	# scsi scanner
3031.9Sisch*	at scsibus? target ? lun ?	# scsi autochangers
3041.9Sisuk*	at scsibus? target ? lun ?	# scsi unknown
3051.9Sis
3061.9Sispseudo-device	loop			# loopback network interface
3071.9Sispseudo-device	sl		1	# SLIP network interfaces
3081.9Sispseudo-device	ppp		1	# PPP network interfaces
3091.9Sispseudo-device	tun		1	# network tunnel line discipline
3101.9Sis#pseudo-device	gre		2	# generic L3 over IP tunnel
3111.14Stron#pseudo-device	ipip		2	# IP Encapsulation within IP (RFC 2003)
3121.9Sispseudo-device	bpfilter	16	# Berkeley packet filter
3131.9Sispseudo-device	ipfilter		# IP Filter package
3141.9Sis
3151.19Sispseudo-device	view		4	# views (needed for grfcc)
3161.9Sispseudo-device	pty		16	# pseudo ptys
3171.9Sis
3181.9Sispseudo-device	vnd		4	# vnode pseudo-disks
3191.9Sispseudo-device	ccd		4	# concatenated disk devices
3201.9Sis#pseudo-device	raid		4	# RAIDframe disk driver
3211.9Sis
3221.9Sis#rnd is EXPERIMENTAL at this point.
3231.12Sis#pseudo-device  rnd                     # /dev/random and in-kernel generator
3241.9Sis#options        RND_COM                 # use "com" randomness as well (BROKEN)
3251.9Sis
3261.9Sisconfig	netbsd root on ? type ?
327