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