Home | History | Annotate | Line # | Download | only in conf
INSTALL revision 1.1
      1 #	$NetBSD: INSTALL,v 1.1 1999/03/26 08:42:49 ender Exp $
      2 #
      3 # INSTALL
      4 
      5 include	"arch/mac68k/conf/std.mac68k"
      6 
      7 maxusers	8		# estimated number of users
      8 
      9 # Enable the hooks used for initializing the ram-disk.
     10 options 	MEMORY_DISK_HOOKS
     11 options 	MEMORY_DISK_IS_ROOT 	# Force root on ram-disk
     12 options 	MINIROOTSIZE=5120	# 2.5 MB
     13 
     14 # CPU support.  At least one is REQUIRED.
     15 options 	M68040
     16 options 	M68030
     17 options 	M68020		# Note:  must have 68851 PMMU
     18 
     19 # CPU-related options.
     20 options 	FPSP
     21 options 	FPU_EMULATE
     22 
     23 # Standard system options
     24 
     25 options 	UCONSOLE	# users can use TIOCCONS (for xconsole)
     26 options 	INSECURE	# disable kernel security levels
     27 
     28 options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     29 
     30 # Diagnostic/debugging support options - XXX remove these at some point
     31 options 	DIAGNOSTIC	# cheap kernel consistency checks
     32 options 	DDB		# in-kernel debugger
     33 options 	ADB_DEBUG	# ADB debugging
     34 
     35 # Compatibility options
     36 options 	COMPAT_10	# NetBSD 1.0,
     37 options 	COMPAT_11	# NetBSD 1.1,
     38 options 	COMPAT_12	# NetBSD 1.2,
     39 options 	COMPAT_13	# NetBSD 1.3,
     40 options 	COMPAT_43	# and 4.3BSD
     41 
     42 # File systems
     43 file-system 	FFS		# UFS
     44 file-system 	NFS		# Network File System client
     45 file-system 	CD9660		# ISO 9660 + Rock Ridge file system
     46 file-system 	MSDOSFS		# MS-DOS file system
     47 file-system 	KERNFS		# /kern
     48 
     49 # Networking options
     50 options 	INET		# IP + ICMP + TCP + UDP
     51 
     52 # These options enable verbose messages for several subsystems.
     53 # Warning, these may compile large string tables into the kernel!
     54 options 	SCSIVERBOSE	# human readable SCSI error messages
     55 
     56 # Mac-specific options
     57 options 	DISABLE_EXT_CACHE # Don't use IIci external cache
     58 options 	GRF_COMPAT	# Include grf compatibility code
     59 #options 	MRG_ADB		# Use ROM-based ADB driver
     60 options 	ZS_CONSOLE_ABORT
     61 
     62 options 	NFS_BOOT_BOOTP
     63 
     64 # Kernel root file system and dump configuration.
     65 config		netbsd	root on ? type ?
     66 
     67 #
     68 # Device configuration
     69 #
     70 
     71 mainbus0 at root
     72 
     73 fpu0 at mainbus?			# Floating-Point Coprocessor support
     74 
     75 
     76 # Basic Bus Support
     77 
     78 # On-board I/O bus support
     79 obio0 at mainbus?
     80 
     81 # NuBus support
     82 nubus0 at mainbus?
     83 
     84 
     85 # Console Devices
     86 
     87 # Apple Desktop Bus interface
     88 adb0	at obio?
     89 aed*	at adb?				# ADB event device
     90 kbd*	at adb?				# ADB keyboard
     91 ms*	at adb?				# ADB mouse
     92 
     93 # Basic frame buffer support
     94 intvid0	at obio?			# Internal video hardware
     95 macvid*	at nubus?			# NuBus video card
     96 
     97 # Device-independent frame buffer interface
     98 grf*	at intvid?
     99 grf*	at macvid?
    100 
    101 # Integrated Terminal Emulator (console) support
    102 ite0	at grf?
    103 
    104 
    105 # Serial Devices
    106 
    107 # On-board serial interface
    108 zsc0	at obio?
    109 zstty*	at zsc? channel ?
    110 
    111 
    112 # SCSI Controllers and Devices
    113 
    114 # SCSI controllers
    115 # XXX - use only one of ncrscsi or sbc
    116 ncrscsi0 at obio?			# SCSI NCR 5380
    117 #sbc0	at obio? flags 0x1		# MI SCSI NCR 5380
    118 esp0	at obio?			# SCSI NCR 53C9x
    119 esp1	at obio?			# SCSI NCR 53C9x
    120 
    121 # SCSI bus support
    122 scsibus* at scsi?
    123 
    124 # SCSI devices
    125 sd*	at scsibus? target ? lun ?	# SCSI disk drives
    126 cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    127 st*	at scsibus? target ? lun ?	# SCSI tape drives
    128 
    129 
    130 # Miscellaneous mass storage devices
    131 
    132 # IWM floppy disk controller
    133 iwm0	at obio?			# Sony driver (800K GCR)
    134 fd*	at iwm? drive ?
    135 
    136 
    137 # Network Interfaces
    138 
    139 # On-board Ethernet controllers
    140 sn*	at obio?			# SONIC-based (DP83932, DP83916)
    141 mc*	at obio?			# MACE-based
    142 
    143 # NuBus Ethernet controllers
    144 ae*	at nubus?			# DP8390-based
    145 sn*	at nubus?			# SONIC-based (DP83932, DP83916)
    146 
    147 
    148 # Audio Devices
    149 
    150 # On-board audio hardware
    151 asc0	at obio?			# ASC/EASC audio
    152 
    153 # Pseudo-Devices
    154 
    155 # disk/mass storage pseudo-devices
    156 pseudo-device	md		1	# memory disk device (ramdisk)
    157 
    158 # network pseudo-devices
    159 pseudo-device	loop 		1 	# network loopback
    160 pseudo-device	ppp		1 	# Point-to-Point Protocol
    161 pseudo-device	sl		1 	# Serial Line IP
    162 
    163 # miscellaneous pseudo-devices
    164 pseudo-device	pty		64	# pseudo-terminals
    165