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