Home | History | Annotate | Line # | Download | only in conf
MDINSTALL revision 1.14
      1  1.14       abs #	$NetBSD: MDINSTALL,v 1.14 2002/07/05 13:40:11 abs Exp $
      2   1.1        is 
      3   1.1        is #
      4   1.1        is # INSTALL kernel for ramdisk installation
      5   1.1        is #
      6   1.1        is 
      7   1.1        is include "arch/amiga/conf/std.amiga"
      8  1.12    atatat 
      9  1.12    atatat #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     10   1.1        is 
     11   1.1        is maxusers	8
     12   1.1        is options 	RTC_OFFSET=0
     13   1.1        is 
     14   1.1        is #
     15   1.1        is # mainboards to support (in addition to Amiga)
     16   1.1        is #
     17   1.1        is options 	DRACO
     18   1.1        is options 	BB060STUPIDROM	# You need this, if you have a non-DraCo
     19   1.5     lukem 				# MC68060 with an OS ROM up to (at least)
     20   1.1        is 				# V40 (OS3.1) and want to boot with the
     21   1.1        is 				# bootblock.
     22   1.1        is 				# You do not need this if you have a DraCo,
     23   1.1        is 				# have no 68060 or NEVER use the bootblock
     24   1.1        is #
     25   1.1        is # processors this kernel should support
     26   1.1        is #
     27   1.1        is options 	M68060		# support for 060
     28   1.1        is options 	M060SP		# MC68060 software support (Required for 060)
     29   1.1        is options 	M68040		# support for 040
     30   1.1        is options 	FPSP		# MC68040 floating point support
     31   1.1        is options 	M68030		# support for 030
     32   1.1        is options 	M68020		# support for 020/851
     33   1.1        is options 	FPU_EMULATE	# FPU emulation
     34   1.1        is #
     35   1.1        is # Networking options
     36   1.1        is #
     37   1.1        is options 	INET		# IP networking support (Required)
     38   1.1        is options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
     39   1.1        is options 	PPP_DEFLATE	# Deflate compression support for PPP
     40   1.1        is options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
     41   1.1        is 
     42   1.1        is # Filesystems
     43   1.1        is file-system 	FFS		# Berkeley fast file system
     44   1.1        is file-system 	MFS		# Memory based filesystem
     45   1.1        is file-system 	NFS		# Network File System client side code
     46   1.1        is file-system 	ADOSFS		# AmigaDOS file system
     47   1.1        is file-system 	CD9660		# ISO 9660 + Rock Ridge filesystem
     48   1.1        is file-system 	MSDOSFS		# MS-DOS filesystem
     49   1.1        is file-system 	KERNFS		# kernel data-structure filesystem
     50   1.1        is 
     51  1.14       abs options 	VNODE_OP_NOINLINE	# Not inlining vnode op calls saves mem
     52  1.14       abs 
     53   1.1        is #
     54   1.1        is # Support for various kernel options
     55   1.1        is #
     56   1.1        is options 	KTRACE		# system call tracing support
     57   1.1        is options 	UCONSOLE	# anyone can redirect a virtual console
     58   1.6  jdolecek #options 	INSECURE	# disable kernel security levels
     59   1.6  jdolecek options 	SCSIVERBOSE	# human readable SCSI error messages
     60   1.1        is options 	NTP		# NTP phase/frequency locked loop
     61  1.10  gmcgarry #options 	USERCONF	# userconf(4) support
     62  1.14       abs options 	PIPE_SOCKETPAIR		# smaller, but slower pipe(2)
     63  1.14       abs options 	MALLOC_NOINLINE		# Not inlining MALLOC saves memory
     64   1.1        is 
     65   1.1        is #
     66   1.1        is # Misc. debugging options
     67   1.1        is #
     68   1.1        is options 	DDB		# Kernel debugger
     69   1.1        is #options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
     70   1.1        is options 	DIAGNOSTIC	# Extra kernel sanity checks
     71   1.1        is #options 	DEBUG		# Enable misc. kernel debugging code
     72   1.1        is #options 	SYSCALL_DEBUG	# debug all syscalls.
     73   1.1        is #options 	SCSIDEBUG	# Add SCSI debugging statements
     74  1.13   thorpej #options 	PANICBUTTON	# Forced crash via keypress (?)
     75   1.1        is 
     76   1.1        is #
     77   1.1        is # Amiga specific options
     78   1.1        is #
     79   1.1        is #options 	LIMITMEM=24	# Do not use more than LIMITMEM MB of the
     80   1.1        is 				# first bank of RAM. (default: unlimited)
     81   1.5     lukem #options 	NKPTADD=4	# set this for 4 additional KPT pages
     82   1.5     lukem #options 	NKPTADDSHIFT=24	# set this for 1 additional KPT page
     83   1.1        is 				# per 16 MB (1<<24 bytes) of RAM
     84   1.5     lukem 				# define and decrease this, or define and
     85   1.5     lukem 				# increase NKPTADD if you get "out of PT pages"
     86   1.5     lukem 				# panics.
     87   1.1        is 
     88   1.1        is # ATTENTION: There is NO WARRANTY AT ALL that the sync will be complete
     89   1.1        is # before the 10 secondinterval ends, or that KBDRESET does work at all.
     90   1.1        is #options 	KBDRESET	# sync on Ctrl-Amiga-Amiga
     91   1.1        is 
     92   1.1        is # These options improve performance with the built-in serial port
     93   1.1        is # on slower Amigas.  Try the larger buffers first then lev6_defer.
     94   1.1        is #options 	SERIBUF_SIZE=4096
     95   1.1        is #options 	SEROBUF_SIZE=32
     96   1.1        is #options 	LEV6_DEFER	# defers l6 to l4 (below serial l5)
     97   1.1        is 
     98   1.1        is options 	RETINACONSOLE	# enable code to allow retina to be console
     99   1.1        is options 	ULOWELLCONSOLE	# enable code to allow a2410 to be console
    100   1.1        is options 	CL5426CONSOLE	# Cirrus console
    101   1.1        is options 	CV64CONSOLE	# CyberVision console
    102   1.1        is options 	TSENGCONSOLE	# Tseng console
    103   1.1        is options 	CV3DCONSOLE	# CyberVision 64/3D console
    104   1.1        is 
    105   1.1        is options 	GRF_ECS		# Enhanced Chip Set
    106   1.1        is options 	GRF_NTSC	# NTSC
    107   1.1        is options 	GRF_PAL		# PAL
    108   1.1        is options 	GRF_A2024	# Support for the A2024
    109   1.1        is options 	GRF_AGA		# AGA Chip Set
    110   1.1        is options 	GRF_AGA_VGA	# AGA VGAONLY timing
    111   1.1        is options 	GRF_SUPER72	# AGA Super-72
    112   1.1        is #options 	KFONT_8X11	# 8x11 font
    113  1.11     heinz 
    114  1.11     heinz # select a font for the console according to the character set and keymap
    115  1.11     heinz # you want to use
    116  1.11     heinz options        KFONT_CONS_ISO8859_1
    117  1.11     heinz #options         KFONT_CONS_ISO8859_2
    118   1.1        is 
    119   1.1        is # This is how you would tell the kernel the A2410 oscillator frequencies:
    120   1.1        is # The used frequencies are the defaults, and do not need option setting
    121   1.1        is #options 	ULOWELL_OSC1=36000000
    122   1.1        is #options 	ULOWELL_OSC2=66667000
    123   1.1        is 
    124   1.1        is # This is how you specify the blitting speed, higher values may speed up blits
    125   1.1        is # a littel bit.  If you raise this value too much some trash may appear.
    126   1.1        is # the commented version is the default.
    127   1.1        is #options 	RH_MEMCLK=61000000
    128   1.1        is # this option enables the 64 bit sprite which does not work
    129   1.1        is # for quite a few people.  E.g. The cursor sprite will turn to a block
    130   1.1        is # when moved to the top of the screen in X.
    131   1.1        is #options 	RH_64BIT_SPRITE
    132   1.1        is # enables fast scroll code appears to now work on 040 systems.
    133   1.1        is #options 	RETINA_SPEED_HACK
    134   1.1        is # enables the Hardwarecursor which does not work on some systems.
    135   1.1        is #options 	RH_HARDWARECURSOR
    136   1.1        is 
    137   1.1        is grfcc0		at mainbus0		# custom chips
    138   1.1        is grfrt0		at zbus0		# retina II
    139   1.1        is grfrh0		at zbus0		# retina III
    140   1.1        is grfcl*		at zbus0		# Picasso II/Piccalo/Spectrum
    141   1.1        is grful0		at zbus0		# A2410
    142   1.1        is grfcv0		at zbus0		# CyberVision 64
    143   1.1        is grfet*		at zbus0		# Tseng (oMniBus, Domino, Merlin)
    144   1.1        is grfcv3d0	at zbus0		# CyberVision 64/3D
    145   1.1        is 
    146   1.1        is grf0		at grfcc0
    147   1.1        is grf1		at grfrt0
    148   1.1        is grf2		at grfrh0
    149   1.1        is grf3		at grfcl?
    150   1.1        is grf4		at grful0
    151   1.1        is grf5		at grfcv0
    152   1.1        is grf6		at grfet?
    153   1.1        is grf7		at grfcv3d0
    154   1.1        is 
    155   1.1        is ite0		at grf0			# terminal emulators for grfs
    156   1.1        is ite1		at grf1			# terminal emulators for grfs
    157   1.1        is ite2		at grf2			# terminal emulators for grfs
    158   1.1        is ite3		at grf3			# terminal emulators for grfs
    159   1.1        is ite4		at grf4			# terminal emulators for grfs
    160   1.1        is ite5		at grf5			# terminal emulators for grfs
    161   1.1        is ite6		at grf6			# terminal emulators for grfs
    162   1.1        is ite7		at grf7			# terminal emulators for grfs
    163   1.1        is 
    164   1.1        is msc0		at zbus0		# A2232 MSC multiport serial.
    165   1.1        is mfc0		at zbus0		# MultiFaceCard I/O board
    166   1.1        is mfcs0		at mfc0 unit 0		# MFC serial
    167   1.1        is mfcs1		at mfc0 unit 1		# MFC serial
    168   1.1        is #mfcp0		at mfc0 unit 0		# MFC parallel [not available yet]
    169   1.1        is #mfc1		at zbus0		# MultiFaceCard 2nd I/O board
    170   1.1        is #mfcs2		at mfc1 unit 0
    171   1.1        is #mfcs3		at mfc1 unit 1
    172   1.1        is #mfcp1		at mfc1 unit 0
    173   1.1        is 
    174   1.1        is hyper*		at zbus?		# zbus HyperCom3 + HyperCom4
    175   1.1        is #hyper*		at mainbus0		# not yet: HyperCom1 + HyperCom3
    176   1.1        is com*		at hyper? port ?	# Hypercom3/4 serial ports
    177   1.1        is #lpt*		at hyper? port ?	# not yet: Hypercom3 parallel port
    178   1.1        is 
    179   1.1        is #
    180   1.1        is # Amiga Mainboard devices (sans graphics and keyboard)
    181   1.1        is #
    182   1.1        is 
    183   1.1        is ser0		at mainbus0		# Amiga onboard serial
    184   1.1        is par0		at mainbus0		# Amiga onboard parallel
    185   1.1        is ms*		at mainbus0		# Amiga mice
    186   1.1        is fdc0		at mainbus0		# Amiga FDC
    187   1.1        is fd*		at fdc0 unit ?		# floppy disks on the later
    188   1.1        is a34kbbc0	at mainbus0		# A3000/A4000 battery backed clock
    189   1.1        is a2kbbc0 	at mainbus0		# A2000 battery backed clock
    190   1.1        is aucc*		at mainbus0		# Amiga CC audio
    191   1.1        is audio*		at aucc?
    192   1.1        is 
    193   1.1        is #
    194   1.1        is # DraCo Mainboard devices (sans keyboard)
    195   1.1        is #
    196   1.1        is 
    197   1.1        is drbbc0		at mainbus0		# DraCo battery backed clock
    198   1.1        is drsupio0	at mainbus0		# DraCo superio chip
    199   1.1        is com*		at drsupio? port ?	# DraCo serial
    200   1.1        is lpt0		at drsupio? port ?	# DraCo parallel
    201   1.1        is 
    202   1.1        is #
    203   1.1        is # Zorro-II, Zorro-III, DraCo Direct-Bus devices (sans graphics)
    204   1.1        is #
    205   1.1        is 
    206   1.1        is # Ethernet cards:
    207   1.1        is le*		at zbus0		# A2065, Ameristar, Ariadne
    208   1.1        is ne*		at zbus0		# AriadneII
    209   1.2        is ed*		at zbus0		# Hydra, ASDG LanRover
    210   1.2        is es*		at zbus0		# CEI A4066 EthernetPLUS
    211   1.2        is qn*		at zbus0		# Quicknet
    212   1.1        is 
    213   1.1        is # Arcnet
    214   1.1        is bah*		at zbus0		# C=/Ameristar A2060 / 560
    215   1.1        is 
    216   1.1        is # Greater Valley Product Bus
    217   1.1        is gvpbus* 	at zbus0
    218   1.1        is 
    219   1.1        is # scsi stuff, all possible
    220   1.1        is gtsc0		at gvpbus?		# GVP series II scsi
    221   1.1        is scsibus*	at gtsc0
    222   1.1        is ahsc0		at mainbus0		# A3000 scsi
    223   1.1        is scsibus*	at ahsc0
    224   1.1        is atzsc0		at zbus0		# A2091 scsi
    225   1.1        is scsibus*	at atzsc0
    226   1.1        is wstsc0		at zbus0		# Wordsync II scsi
    227   1.1        is scsibus*	at wstsc0
    228   1.1        is ivsc0		at zbus0		# IVS scsi
    229   1.1        is scsibus*	at ivsc0
    230   1.1        is mlhsc0		at zbus0		# Hacker scsi
    231   1.1        is scsibus*	at mlhsc0
    232   1.1        is otgsc0		at zbus0		# 12 gauge scsi
    233   1.1        is scsibus*	at otgsc0
    234   1.1        is zssc0		at zbus0		# Zeus scsi
    235   1.1        is scsibus*	at zssc0
    236   1.1        is mgnsc0		at zbus0		# Magnum scsi
    237   1.1        is scsibus*	at mgnsc0
    238   1.1        is wesc0		at zbus0		# Warp Engine scsi
    239   1.1        is scsibus*	at wesc0
    240   1.1        is afsc0		at zbus0		# A4091 scsi
    241   1.1        is scsibus*	at afsc0
    242   1.1        is aftsc0		at mainbus0		# A4000T scsi
    243   1.1        is scsibus*	at aftsc0
    244   1.1        is flsc0		at zbus0		# FastlaneZ3 scsi
    245   1.1        is scsibus*	at flsc0
    246   1.5     lukem bzsc0		at zbus0		# Blizzard 1230 I,II scsi
    247   1.1        is scsibus*	at bzsc0
    248   1.5     lukem bzivsc0 	at zbus0		# Blizzard 12x0 IV scsi
    249   1.1        is scsibus*	at bzivsc0
    250   1.1        is bztzsc0 	at zbus0		# Blizzard 2060 scsi
    251   1.1        is scsibus*	at bztzsc0
    252   1.1        is cbsc0		at zbus0		# CyberSCSI I
    253   1.1        is scsibus*	at cbsc0
    254   1.1        is cbiisc0 	at zbus0		# CyberSCSI II
    255   1.1        is scsibus*	at cbiisc0
    256   1.1        is cbiiisc0 	at zbus0		# Cyberstorm mk.III/Cyberstorm PPC SCSI
    257   1.1        is scsibus*	at cbiiisc0
    258   1.1        is empsc0		at zbus0		# Emplant scsi
    259   1.1        is scsibus*	at empsc0
    260   1.1        is idesc0		at mainbus0		# A4000 & A1200 IDE
    261   1.1        is scsibus*	at idesc0
    262   1.1        is 
    263   1.1        is drsc0		at mainbus0		# DraCo scsi
    264   1.1        is scsibus*	at drsc0
    265   1.1        is 
    266   1.1        is 
    267   1.1        is # each hard drive from low target to high
    268   1.1        is # will configure to the next available sd unit number
    269   1.1        is sd*	at scsibus? target ? lun ?	# scsi disks
    270   1.1        is st*	at scsibus? target ? lun ?	# scsi tapes
    271   1.1        is cd*	at scsibus? target ? lun ?	# scsi cds
    272   1.1        is 
    273   1.1        is pseudo-device	loop			# loopback network interface
    274   1.1        is pseudo-device	sl		1	# SLIP network interfaces
    275   1.1        is pseudo-device	ppp		1	# PPP network interfaces
    276   1.1        is 
    277   1.1        is pseudo-device	view		10	# views
    278   1.4  jdolecek pseudo-device	pty			# pseudo-terminals
    279   1.1        is 
    280   1.1        is pseudo-device	vnd		4	# vnode pseudo-disks
    281   1.1        is 
    282   1.1        is # rnd is EXPERIMENTAL at this point.
    283   1.5     lukem #pseudo-device	rnd			# /dev/random and in-kernel generator
    284   1.5     lukem #options 	RND_COM			# use "com" randomness as well (BROKEN)
    285   1.1        is 
    286   1.1        is config	netbsd root on ? type ?
    287   1.1        is 
    288   1.1        is # Enable the hooks used for initializing the root memory-disk.
    289   1.1        is options 	MEMORY_DISK_HOOKS
    290   1.1        is options 	MEMORY_DISK_IS_ROOT	# force root on memory disk
    291   1.1        is options 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
    292   1.9     lukem options 	MEMORY_DISK_ROOT_SIZE=2048	# size of memory disk, in blocks
    293   1.1        is 
    294   1.1        is pseudo-device	md		1	# memory disk [ramdisk]
    295