Home | History | Annotate | Line # | Download | only in conf
INSTALL revision 1.55
      1  1.55   tsutsui # $NetBSD: INSTALL,v 1.55 2001/07/07 17:09:48 tsutsui Exp $
      2   1.1       cjs #
      3   1.1       cjs # Alpha INSTALL kernel.
      4   1.1       cjs 
      5   1.1       cjs include	"arch/alpha/conf/std.alpha"
      6   1.1       cjs 
      7  1.45       abs makeoptions 	COPTS="-Os"		# Optimise for space. Implies -O2
      8  1.44       abs 
      9   1.1       cjs maxusers 8
     10   1.1       cjs 
     11  1.38   thorpej options 	DDB
     12  1.45       abs #makeoptions 	DEBUG="-g"
     13  1.27      ross 
     14   1.1       cjs # Enable the hooks used for initializing the ram-disk.
     15   1.1       cjs options 	MEMORY_DISK_HOOKS
     16   1.1       cjs options 	MEMORY_DISK_IS_ROOT	# Force root on ram-disk
     17  1.26  christos options 	MINIROOTSIZE=9300	# 4 Megabytes
     18   1.1       cjs 
     19   1.1       cjs # CPU Support
     20  1.40   thorpej options 	DEC_2000_300	# "Jensen":	2000/300 (DECpc AXP 150)
     21   1.1       cjs options 	DEC_2100_A50	# Avanti etc:	AlphaStation 400, 200, etc.
     22  1.49   thorpej options 	DEC_2100_A500	# Sable:	AlphaServer 2100
     23  1.49   thorpej options 	DEC_2100A_A500	# Lynx:		AlphaServer 2100A
     24   1.4       cjs options 	DEC_3000_500	# Flamingo etc:	3000/[4-9]00*
     25   1.4       cjs options 	DEC_3000_300	# Pelican etc:	3000/300*
     26   1.1       cjs options 	DEC_AXPPCI_33	# NoName:	AXPpci33, Multia, etc.
     27   1.1       cjs options 	DEC_EB164	# EB164:	AlphaPC 164
     28   1.1       cjs options 	DEC_EB64PLUS	# EB64+:	AlphaPC 64, etc.
     29   1.1       cjs options 	DEC_KN20AA	# KN20AA:	AlphaStation 500 and 600
     30   1.4       cjs options 	DEC_KN8AE	# KN8AE:	AlphaServer 8200 and 8400
     31  1.38   thorpej options 	DEC_KN300	# KN300:	AlphaServer 4100 and 1200
     32  1.16   thorpej options 	DEC_550		# Miata:	Digital Personal Workstation
     33  1.18   thorpej options 	DEC_1000	# Mikasa etc:	Digital AlphaServer 1000
     34  1.18   thorpej options 	DEC_1000A	# Corelle etc:	Digital AlphaServer 800/1000A
     35  1.18   thorpej options 	DEC_ALPHABOOK1	# AlphaBook1:	Tadpole/DEC AlphaBook
     36  1.18   thorpej options 	DEC_EB66	# EB66:		21066 Evaluation Board
     37  1.27      ross options 	DEC_6600	# EV6:		264DP OEM Board
     38  1.39   thorpej options 	API_UP1000	# EV6:		Alpha Processor, Inc. UP1000
     39   1.1       cjs 
     40   1.1       cjs # File systems
     41   1.1       cjs file-system	FFS		# Fast file system
     42   1.1       cjs file-system	CD9660		# ISO-9660 CD-ROM FS (w/RockRidge extensions)
     43   1.4       cjs file-system	MSDOSFS		# MS-DOS-compatible file system
     44   1.1       cjs file-system	NFS		# Sun NFS-compatible file system client
     45   1.2       cjs file-system	KERNFS		# Kernel variable file system (/kern)
     46  1.45       abs 
     47  1.45       abs # Filesystem options
     48  1.45       abs #options 	NFS_V2_ONLY	# Exclude NFS3 and NQNFS code to save space
     49  1.45       abs #options 	VNODE_OP_NOINLINE # Save space by not inlining vnode op calls
     50   1.1       cjs 
     51   1.1       cjs # Networking options
     52   1.1       cjs options 	INET		# Internet protocol suite
     53   1.1       cjs 
     54   1.1       cjs # 4.3BSD compatibility.  Should be optional, but necessary for now.
     55   1.1       cjs options 	COMPAT_43
     56   1.1       cjs 
     57   1.1       cjs # Binary compatibility with previous versions of NetBSD.
     58   1.1       cjs #options 	COMPAT_09
     59   1.4       cjs options 	COMPAT_10
     60   1.4       cjs options 	COMPAT_11
     61   1.4       cjs options 	COMPAT_12
     62   1.4       cjs options 	COMPAT_13
     63  1.28  augustss options 	COMPAT_14
     64   1.4       cjs 
     65   1.4       cjs # Misc. options
     66  1.18   thorpej #options 	EISAVERBOSE		# recognize "unknown" EISA devices
     67  1.18   thorpej #options 	PCIVERBOSE		# recognize "unknown" PCI devices
     68  1.37  augustss #options 	MIIVERBOSE		# verbose PHY autoconfig messages
     69  1.34       cgd #options 	PCI_CONFIG_DUMP		# verbosely dump PCI config space
     70  1.18   thorpej #options 	SCSIVERBOSE		# Verbose SCSI errors
     71  1.18   thorpej #options 	TCVERBOSE		# recognize "unknown" TC devices
     72   1.4       cjs options 	UCONSOLE		# users can use TIOCCONS (for xconsole)
     73  1.18   thorpej options 	INSECURE		# disable `kernel security level'
     74   1.4       cjs 
     75   1.4       cjs # The Alpha console firmware network boots using the BOOTP
     76   1.8       cgd # protocol, so we ask the NFS code to use BOOTP/DHCP as well,
     77   1.8       cgd # in case we have NFS root.
     78   1.8       cgd options 	NFS_BOOT_DHCP		# superset of BOOTP
     79   1.1       cjs 
     80  1.24      ross # WS console uses SUN or VT100 terminal emulation
     81  1.24      ross options 	WSEMUL_VT100
     82  1.10  drochner 
     83   1.1       cjs config		netbsd	root on ? type ?
     84   1.1       cjs 
     85   1.1       cjs mainbus0 at	root
     86   1.1       cjs cpu*	at	mainbus0
     87   1.1       cjs 
     88   1.1       cjs # TurboLaser bus support and devices
     89   1.4       cjs tlsb*	at	mainbus0
     90   1.4       cjs gbus*	at	tlsb? node ? offset ?
     91   1.4       cjs tlsbmem* at	tlsb? node ? offset ?
     92   1.4       cjs kft*	at	tlsb? node ? offset ?
     93   1.1       cjs 
     94   1.1       cjs # Gbus Devices
     95  1.13   thorpej mcclock* at	gbus? offset ?
     96   1.1       cjs 
     97  1.18   thorpej # MCBUS bus support
     98  1.18   thorpej mcbus*	at	mainbus0
     99  1.18   thorpej mcmem*	at	mcbus? mid ?
    100  1.18   thorpej 
    101  1.27      ross #EV6 Tsunami Core Logic
    102  1.27      ross 
    103  1.27      ross tsc*	at	mainbus0
    104  1.27      ross 
    105  1.40   thorpej # DECpc AXP150 (Jensen) internal bus support
    106  1.40   thorpej jensenio* at	mainbus0
    107  1.40   thorpej 
    108  1.40   thorpej com*	at	jensenio? port ?
    109  1.40   thorpej lpt*	at	jensenio? port ?
    110  1.40   thorpej mcclock* at	jensenio? port ?
    111  1.40   thorpej pckbc*	at	jensenio? port ?
    112  1.40   thorpej 
    113   1.1       cjs # TurboChannel host bus adapter support
    114   1.4       cjs tcasic*	at	mainbus0
    115   1.1       cjs 
    116   1.1       cjs # TurboChannel bus support
    117   1.4       cjs tc*	at	tcasic?
    118   1.1       cjs 
    119   1.1       cjs # TurboChannel devices
    120   1.4       cjs ioasic*	at	tc? slot ? offset ?
    121   1.4       cjs mcclock* at	ioasic? offset ?
    122   1.4       cjs le*	at	ioasic? offset ?
    123   1.4       cjs scc0	at	ioasic? offset ?
    124   1.4       cjs scc1	at	ioasic? offset ?
    125  1.14   thorpej tcds*	at	tc? slot ? offset ?
    126  1.14   thorpej asc*	at	tcds? chip ?
    127   1.4       cjs le*	at	tc? slot ? offset ?
    128   1.4       cjs fta*	at	tc? slot ? offset ?		# DEC DEFTA FDDI cards
    129   1.1       cjs 
    130   1.1       cjs # PCI host bus adapter support
    131   1.1       cjs apecs*	at	mainbus?
    132   1.1       cjs cia*	at	mainbus?
    133  1.39   thorpej irongate* at	mainbus?
    134   1.1       cjs lca*	at	mainbus?
    135   1.4       cjs dwlpx*	at	kft?
    136  1.18   thorpej mcpcia*	at	mcbus? mid ?
    137  1.27      ross tsp*	at	tsc?
    138  1.49   thorpej ttwoga*	at	mainbus?
    139  1.40   thorpej 
    140  1.40   thorpej # Sable PCI and STDIO bus and devices
    141  1.49   thorpej ttwopci* at	ttwoga? hose ?  
    142  1.49   thorpej sableio* at	ttwopci? bus ?  
    143  1.49   thorpej com*	at	sableio? port ? 
    144  1.49   thorpej lpt*	at	sableio? port ? 
    145  1.49   thorpej pckbc*	at	sableio? port ? 
    146  1.49   thorpej fdc*	at	sableio? port ?
    147   1.1       cjs 
    148   1.1       cjs # PCI bus support
    149   1.1       cjs pci*	at	apecs?
    150   1.1       cjs pci*	at	cia?
    151  1.39   thorpej pci*	at	irongate?
    152   1.1       cjs pci*	at	lca?
    153   1.1       cjs pci*	at	ppb?
    154   1.4       cjs pci*	at	dwlpx?
    155  1.18   thorpej pci*	at	mcpcia?
    156  1.27      ross pci*	at	tsp?
    157  1.49   thorpej pci*	at	ttwopci?
    158   1.1       cjs 
    159   1.1       cjs # PCI devices
    160  1.29   thorpej adv*	at	pci? dev ? function ?		# AdvanSys SCSI
    161  1.29   thorpej adw*	at	pci? dev ? function ?		# AdvanSys Wide SCSI
    162  1.32     dante #options 	ADW_WDTR_DISABLE		# 	disable WDTR
    163  1.32     dante #options 	ADW_SDTR_DISABLE		# 	disable SDTR
    164  1.32     dante #options 	ADW_TAGQ_DISABLE		# 	disable Tag Queuing
    165   1.1       cjs ahc*	at	pci? dev ? function ?		# Adaptec [23]94x, aic78x0 SCSI
    166  1.23      ross bha*	at	pci? dev ? function ?		# BusLogic 9xx SCSI (untested)
    167  1.36        ad cac*	at	pci? dev ? function ?		# Compaq array controller (untested)
    168   1.1       cjs de*	at	pci? dev ? function ?		# 21x4x-based Ethernet
    169  1.30        ad dpt*	at	pci? dev ? function ?		# DPT SmartCache/SmartRAID
    170  1.23      ross en*	at	pci? dev ? function ?		# ENI PCI ATM (untested)
    171   1.1       cjs ep*	at	pci? dev ? function ?		# 3COM 3c59x/3c90x Ethernet
    172  1.25  christos epic*	at	pci? dev ? function ?		# SMC EPIC/100 Ethernet
    173  1.23      ross ex*	at	pci? dev ? function ?		# 3COM 3c90x[B] Ethernet
    174   1.1       cjs fpa*	at	pci? dev ? function ?		# DEC DEFPA FDDI
    175  1.23      ross fxp*	at	pci? dev ? function ?		# Intel EEPRO 10+/100B
    176  1.54   thorpej gsip*	at	pci? dev ? function ?		# NS DP83820 Gigabit Ethernet
    177  1.53     lukem iha*	at	pci? dev ? function ?		# Initio INIC-940/950 SCSI
    178   1.1       cjs isp*	at	pci? dev ? function ?		# Qlogic ISP 10x0 SCSI
    179  1.23      ross le*	at	pci? dev ? function ?		# PCI LANCE Ethernet (untested)
    180  1.54   thorpej sf*	at	pci? dev ? function ?		# Adaptec AIC-6915 Ethernet
    181  1.40   thorpej siop*	at	pci? dev ? function ?		# Symbios 53c8xx SCSI
    182  1.50        ad mlx*	at	pci? dev ? function ?		# Mylex DAC960 / DEC SWXCR (untested)
    183  1.25  christos ne*	at	pci? dev ? function ?		# NE2000-compatible Ethernet
    184   1.1       cjs pceb*	at	pci? dev ? function ?		# Intel PCI-EISA Bridges
    185  1.23      ross pciide*	at	pci? dev ? function ?		# PCI IDE controllers
    186  1.23      ross pcscp*	at	pci? dev ? function ?		# AMD Am53c974 PCscsi-PCI
    187   1.1       cjs ppb*	at	pci? dev ? function ?		# PCI-PCI Bridges
    188  1.35   thorpej rtk*	at	pci? dev ? function ?		# RealTek 8129/8139 Ethernet
    189   1.1       cjs sio*	at	pci? dev ? function ?		# Intel PCI-ISA Bridges
    190  1.31   thorpej sip*	at	pci? dev ? function ?		# SiS 900 Ethernet
    191   1.1       cjs tga*	at	pci? dev ? function ?		# DEC ZLXp-E[123] Graphics
    192  1.18   thorpej tl*	at	pci? dev ? function ?		# TI ThunderLAN Ethernet
    193  1.31   thorpej tlp*	at	pci? dev ? function ?		# DECchip 21x4x and clones
    194  1.31   thorpej #options 	TLP_MATCH_21040
    195  1.31   thorpej #options 	TLP_MATCH_21041
    196  1.31   thorpej #options 	TLP_MATCH_21140
    197  1.31   thorpej #options 	TLP_MATCH_21142
    198   1.1       cjs vga*	at	pci? dev ? function ?		# PCI VGA Graphics
    199  1.25  christos vr*	at	pci? dev ? function ?		# VIA Rhine Fast Ethernet
    200  1.18   thorpej 
    201  1.18   thorpej # MII/PHY support
    202  1.26  christos exphy*	at mii? phy ?			# 3Com internal PHYs
    203  1.26  christos icsphy*	at mii? phy ?			# Integrated Circuit Systems ICS1890
    204  1.26  christos inphy*	at mii? phy ?			# Intel 82555 PHYs
    205  1.26  christos lxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
    206  1.54   thorpej gphyter* at mii? phy ?			# NS83861 Gig-E PHY
    207  1.26  christos nsphy*	at mii? phy ?			# NS83840 PHYs
    208  1.54   thorpej nsphyter* at mii? phy ?			# NS83843 PHYs
    209  1.26  christos qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
    210  1.26  christos sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
    211  1.26  christos tlphy*	at mii? phy ?			# ThunderLAN PHYs
    212  1.26  christos ukphy*	at mii? phy ?			# generic unknown PHYs
    213   1.1       cjs 
    214   1.1       cjs # ISA/EISA bus support
    215  1.40   thorpej isa*	at	jensenio?
    216  1.40   thorpej eisa*	at	jensenio?
    217   1.1       cjs isa*	at	pceb?
    218   1.1       cjs eisa*	at	pceb?
    219   1.1       cjs isa*	at	sio?
    220   1.1       cjs 
    221   1.1       cjs # ISA devices
    222   1.1       cjs mcclock* at	isa? port 0x70
    223  1.10  drochner pckbc*	at	isa?				# PC keyboard controller
    224  1.10  drochner pckbd*	at	pckbc?				# PC keyboard (kbd port)
    225  1.20  drochner pms*	at	pckbc?				# PS/2-style mouse (aux port)
    226   1.1       cjs com*	at	isa? port 0x3f8 irq 4		# standard serial ports
    227   1.1       cjs com*	at	isa? port 0x2f8 irq 3
    228   1.1       cjs ep*	at	isa? port ? irq ?		# 3COM 3c509 Ethernet
    229  1.22   thorpej fdc0	at	isa? port 0x3f0 irq 6 drq 2	# floppy controller
    230   1.1       cjs lc*	at	isa? port ? iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
    231   1.6   thorpej #le*	at	isa? port 0x320 irq 10 drq 7	# IsoLan, NE2100, DEPCA (unt.)
    232  1.33       dan we0     at 	isa? port 0x280 iomem 0xd0000 irq 9  # WD/SMC Ethernet
    233  1.33       dan we1     at 	isa? port 0x300 iomem 0xcc000 irq 10
    234   1.1       cjs lpt*	at	isa? port 0x3bc irq 7		# standard parallel port
    235   1.1       cjs vga*	at	isa?				# ISA (EISA: XXX) VGA
    236   1.5   thorpej wdc0	at	isa? port 0x1f0 irq 14		# ST506/ESDI/IDE controllers
    237   1.5   thorpej wdc1	at	isa? port 0x170 irq 15
    238   1.1       cjs 
    239   1.1       cjs # EISA devices
    240  1.23      ross ahb*	at	eisa? slot ?			# Adaptec 174[024] SCSI (unt.)
    241   1.1       cjs ahc*	at	eisa? slot ?			# Adaptec 274x, aic7770 SCSI
    242   1.1       cjs bha*	at	eisa? slot ?			# BusLogic 7xx SCSI
    243   1.4       cjs ep*	at	eisa? slot ?			# 3COM 3c579 Ethernet (untested)
    244   1.1       cjs fea*	at	eisa? slot ?			# DEC DEFEA FDDI
    245  1.52        ad mlx*	at	eisa? slot ?			# Mylex DAC960 / DEC SWXCR (untested)
    246  1.31   thorpej tlp*	at	eisa? slot ?			# DEC DE-425 Ethernet
    247  1.41   thorpej depca*	at	eisa? slot ?			# DEC DE-422 Ethernet
    248  1.41   thorpej le*	at	depca?
    249  1.23      ross uha*	at	eisa? slot ?			# UltraStor 24f SCSI (unt.)
    250   1.1       cjs 
    251   1.1       cjs # SCSI bus support
    252  1.29   thorpej scsibus* at	adv?
    253  1.40   thorpej #scsibus* at	aic?
    254  1.29   thorpej scsibus* at	adw?
    255  1.40   thorpej #scsibus* at	aha?
    256  1.40   thorpej scsibus* at	ahb?
    257   1.1       cjs scsibus* at	ahc?
    258   1.4       cjs scsibus* at	asc?
    259   1.1       cjs scsibus* at	bha?
    260  1.30        ad scsibus* at	dpt?
    261  1.53     lukem scsibus* at	iha?
    262   1.1       cjs scsibus* at	isp?
    263  1.40   thorpej scsibus* at	siop?
    264  1.40   thorpej scsibus* at	pcscp?
    265  1.40   thorpej scsibus* at	uha?
    266   1.1       cjs 
    267   1.1       cjs # SCSI devices
    268   1.1       cjs cd*	at	scsibus? target ? lun ?		# SCSI CD-ROM drives
    269   1.1       cjs sd*	at	scsibus? target ? lun ?		# SCSI disk drives
    270   1.1       cjs st*	at	scsibus? target ? lun ?		# SCSI tape drives
    271   1.1       cjs 
    272   1.1       cjs # ST506/ESDI/IDE devices
    273  1.19      matt wd*	at	pciide? channel ?
    274   1.5   thorpej wd*	at	wdc? drive ?
    275   1.5   thorpej 
    276   1.5   thorpej # ATAPI bus support
    277  1.19      matt atapibus* at	pciide? channel ?
    278   1.5   thorpej atapibus* at	wdc?
    279   1.5   thorpej 
    280   1.5   thorpej # ATAPI devices
    281   1.5   thorpej sd*	at	atapibus? drive ?		# ATAPI disk devices
    282   1.5   thorpej cd*	at	atapibus? drive ?		# ATAPI CD-ROM devices
    283  1.22   thorpej 
    284  1.22   thorpej # Floppy drives
    285  1.22   thorpej fd*	at	fdc? drive ?
    286  1.36        ad 
    287  1.36        ad # Hardware RAID devices
    288  1.48        ad ld*	at	cac? unit ?
    289  1.51   minoura ld*	at	mlx? unit ?
    290   1.1       cjs 
    291   1.1       cjs # Workstation Console attachments
    292  1.10  drochner wsdisplay*	at	vga?
    293  1.10  drochner wsdisplay*	at	tga?
    294  1.12   thorpej wskbd*		at	pckbd?
    295  1.20  drochner wsmouse*	at	pms?
    296   1.1       cjs 
    297   1.1       cjs pseudo-device	loop		1
    298   1.1       cjs pseudo-device	md		1
    299   1.1       cjs pseudo-device	ppp		1
    300  1.46       abs pseudo-device	pty		2	# pseudo-terminals (Sysinst needs two)
    301   1.1       cjs pseudo-device	sl		1
    302