Home | History | Annotate | Line # | Download | only in conf
INSTALL revision 1.52
      1 #	$NetBSD: INSTALL,v 1.52 2013/04/27 18:19:43 christos Exp $
      2 #
      3 # INSTALL
      4 
      5 include	"arch/mac68k/conf/std.mac68k"
      6 
      7 #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
      8 
      9 makeoptions	COPTS="-Os"		# Optimise for space. Implies -O2
     10 
     11 maxusers	8		# estimated number of users
     12 
     13 # Enable the hooks used for initializing the ram-disk.
     14 options 	MEMORY_DISK_HOOKS
     15 options 	MEMORY_DISK_IS_ROOT 	# Force root on ram-disk
     16 options 	MEMORY_DISK_ROOT_SIZE=5120	# 2.5 MB
     17 options 	MEMORY_DISK_RBFLAGS=RB_SINGLE	# boot in single-user mode
     18 
     19 # CPU support.  At least one is REQUIRED.
     20 options 	M68040
     21 options 	M68030
     22 options 	M68020		# Note:  must have 68851 PMMU
     23 
     24 # CPU-related options.
     25 options 	FPSP
     26 options 	FPU_EMULATE
     27 
     28 # Standard system options
     29 
     30 options 	INSECURE	# disable kernel security levels
     31 
     32 options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     33 
     34 options 	USERCONF	# userconf(4) support
     35 options		PIPE_SOCKETPAIR		# smaller, but slower pipe(2)
     36 #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     37 
     38 # Diagnostic/debugging support options - XXX remove these at some point
     39 options 	DIAGNOSTIC	# cheap kernel consistency checks
     40 options 	DDB		# in-kernel debugger
     41 #options 	ADB_DEBUG	# ADB debugging
     42 
     43 # Compatibility options
     44 options 	COMPAT_10	# NetBSD 1.0,
     45 options 	COMPAT_11	# NetBSD 1.1,
     46 options 	COMPAT_12	# NetBSD 1.2,
     47 options 	COMPAT_13	# NetBSD 1.3,
     48 options 	COMPAT_14	# NetBSD 1.4,
     49 options 	COMPAT_15	# NetBSD 1.5,
     50 options 	COMPAT_16	# NetBSD 1.6,
     51 options 	COMPAT_20	# NetBSD 2.0,
     52 options 	COMPAT_30	# NetBSD 3.0,
     53 options 	COMPAT_40	# NetBSD 4.0,
     54 options 	COMPAT_50	# NetBSD 5.0 compatibility.
     55 options 	COMPAT_60	# NetBSD 6.0 compatibility.
     56 options 	COMPAT_43	# and 4.3BSD
     57 options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
     58 
     59 # File systems
     60 file-system 	FFS		# UFS
     61 file-system 	NFS		# Network File System client
     62 file-system 	CD9660		# ISO 9660 + Rock Ridge file system
     63 file-system 	MSDOSFS		# MS-DOS file system
     64 file-system 	KERNFS		# /kern
     65 #file-system	PTYFS		# /dev/pts/N support
     66 
     67 # Filesystem options
     68 #options 	NFS_V2_ONLY	# Exclude NFS3 code to save space
     69 options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     70 options 	WAPBL		# File system journaling support
     71 
     72 # Networking options
     73 options 	INET		# IP + ICMP + TCP + UDP
     74 
     75 # These options enable verbose messages for several subsystems.
     76 # Warning, these may compile large string tables into the kernel!
     77 options 	SCSIVERBOSE	# human readable SCSI error messages
     78 
     79 # wscons options
     80 #options 	WSEMUL_SUN		# sun terminal emulation
     81 options 	WSEMUL_VT100		# VT100 / VT220 emulation
     82 options 	WSDISPLAY_COMPAT_ITEFONT # use ite font (6x10)
     83 options 	WSDISPLAY_DEFAULTSCREENS=1
     84 #options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
     85 
     86 # rcons options; note that 1-bit and 8-bit displays are supported by default.
     87 options 	RCONS_2BPP		# Support for 2-bit display
     88 options 	RCONS_4BPP		# Support for 4-bit display
     89 options 	RCONS_16BPP		# Support for 16-bit display
     90 
     91 # Mac-specific options
     92 #options 	DISABLE_EXT_CACHE # If really paranoid, disable IIci ext. cache
     93 #options 	MRG_ADB		# Use ROM-based ADB driver
     94 options 	ZS_CONSOLE_ABORT
     95 
     96 options 	NFS_BOOT_DHCP
     97 
     98 # Kernel root file system and dump configuration.
     99 config		netbsd	root on ? type ?
    100 
    101 #
    102 # Device configuration
    103 #
    104 
    105 mainbus0 at root
    106 
    107 
    108 # Basic Bus Support
    109 
    110 # On-board I/O bus support
    111 obio0 at mainbus?
    112 
    113 # NuBus support
    114 nubus0 at mainbus?
    115 
    116 
    117 # Console Devices
    118 
    119 # Apple Desktop Bus interface
    120 adb0	at obio?
    121 aed*	at adb?				# ADB event device
    122 akbd*	at adb?				# ADB keyboard
    123 ams*	at adb?				# ADB mouse
    124 
    125 # Basic frame buffer support
    126 intvid0	at obio?			# Internal video hardware
    127 macvid*	at nubus?			# NuBus video card
    128 
    129 # Device-independent frame buffer interface
    130 macfb*	at intvid?
    131 macfb*	at macvid?
    132 
    133 # Workstation Console devices
    134 wsdisplay0 at macfb? console ?
    135 wskbd0	at akbd? console ?
    136 wsmouse0 at ams?
    137 
    138 
    139 # Serial Devices
    140 
    141 # On-board serial interface
    142 zsc0	at obio?
    143 zstty*	at zsc? channel ?
    144 
    145 
    146 # SCSI Controllers and Devices
    147 
    148 # SCSI controllers
    149 # XXX - use only one of ncrscsi or sbc
    150 ncrscsi0 at obio? addr 0		# SCSI NCR 5380
    151 #sbc0	at obio? addr 0 flags 0x1	# MI SCSI NCR 5380
    152 esp0	at obio? addr 0			# SCSI NCR 53C9x
    153 esp1	at obio? addr 1			# SCSI NCR 53C9x
    154 
    155 # SCSI bus support
    156 scsibus* at scsi?
    157 
    158 # SCSI devices
    159 sd*	at scsibus? target ? lun ?	# SCSI disk drives
    160 cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    161 st*	at scsibus? target ? lun ?	# SCSI tape drives
    162 
    163 # IDE controller and devices
    164 wdc*	at obio? flags 0x1000
    165 atabus* at ata?
    166 wd*	at atabus? drive ?
    167 
    168 
    169 # Miscellaneous mass storage devices
    170 
    171 # IWM floppy disk controller
    172 iwm0	at obio?			# Sony driver (800K GCR)
    173 fd*	at iwm? drive ?
    174 
    175 
    176 # Network Interfaces
    177 
    178 # On-board Ethernet controllers
    179 sn*	at obio?			# SONIC-based (DP83932, DP83916)
    180 mc*	at obio?			# MACE-based
    181 
    182 # NuBus Ethernet controllers
    183 ae*	at nubus?			# DP8390-based
    184 sn*	at nubus?			# SONIC-based (DP83932, DP83916)
    185 sm*	at nubus?			# SMC-based
    186 netdock*	at nubus?		# Asante NetDock, Newer Ether MicroDock
    187 
    188 nsphy*	at mii? phy ?
    189 ukphy*	at mii? phy ?
    190 
    191 # Audio Devices
    192 
    193 # On-board audio hardware
    194 asc0	at obio?			# ASC/EASC audio
    195 
    196 # Pseudo-Devices
    197 
    198 # disk/mass storage pseudo-devices
    199 pseudo-device	md			# memory disk device (ramdisk)
    200 #pseudo-device	fss			# file system snapshot device
    201 
    202 # network pseudo-devices
    203 pseudo-device	loop 		 	# network loopback
    204 pseudo-device	ppp		 	# Point-to-Point Protocol
    205 pseudo-device	sl		 	# Serial Line IP
    206 
    207 # miscellaneous pseudo-devices
    208 pseudo-device	bpfilter		# Berkeley packet filter
    209 pseudo-device	pty			# pseudo-terminals
    210 
    211