INSTALL revision 1.17 1 1.17 atatat # $NetBSD: INSTALL,v 1.17 2002/04/25 15:06:36 atatat Exp $
2 1.1 nonaka #
3 1.1 nonaka # INSTALL -- Installation kernel
4 1.1 nonaka #
5 1.1 nonaka
6 1.1 nonaka include "arch/prep/conf/std.prep"
7 1.17 atatat
8 1.17 atatat #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
9 1.1 nonaka
10 1.1 nonaka makeoptions COPTS="-Os -mmultiple" # -Os -mmultiple to reduce size.
11 1.1 nonaka
12 1.1 nonaka # Enable the hooks used for initializing the ram-disk.
13 1.1 nonaka options MEMORY_DISK_HOOKS
14 1.1 nonaka options MEMORY_DISK_IS_ROOT # Force root on ram-disk
15 1.12 lukem options MEMORY_DISK_ROOT_SIZE=4096 # 2 Megabytes
16 1.1 nonaka
17 1.1 nonaka maxusers 8
18 1.1 nonaka
19 1.1 nonaka # Compatibility options
20 1.1 nonaka #options COMPAT_13 # NetBSD 1.3,
21 1.3 nonaka options COMPAT_14 # NetBSD 1.4,
22 1.3 nonaka options COMPAT_43 # and 4.3BSD
23 1.1 nonaka
24 1.1 nonaka # File systems
25 1.1 nonaka file-system FFS # UFS
26 1.1 nonaka file-system EXT2FS # second extended file system (linux)
27 1.1 nonaka file-system MFS # memory file system
28 1.1 nonaka file-system NFS # Network File System client
29 1.1 nonaka file-system CD9660 # ISO 9660 + Rock Ridge file system
30 1.1 nonaka file-system MSDOSFS # MS-DOS file system
31 1.1 nonaka
32 1.1 nonaka # File system options
33 1.1 nonaka options VNODE_OP_NOINLINE # Save space by not inlining vnode op calls
34 1.3 nonaka #options FFS_EI # FFS Endian Independant support
35 1.1 nonaka #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
36 1.1 nonaka # immutable) behave as system flags.
37 1.10 jdolecek
38 1.13 gmcgarry #options USERCONF # userconf(4) support
39 1.10 jdolecek #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
40 1.1 nonaka
41 1.1 nonaka # Networking options
42 1.1 nonaka options INET # IP + ICMP + TCP + UDP
43 1.1 nonaka options NFS_BOOT_BOOTPARAM
44 1.1 nonaka options NFS_BOOT_DHCP
45 1.1 nonaka
46 1.9 soren #
47 1.9 soren # wscons options
48 1.9 soren #
49 1.9 soren # builtin terminal emulations
50 1.9 soren options WSEMUL_VT100 # VT100 / VT220 emulation
51 1.9 soren # different kernel output - see dev/wscons/wsdisplayvar.h
52 1.9 soren options WS_KERNEL_FG=WSCOL_GREEN
53 1.9 soren #options WS_KERNEL_BG=WSCOL_BLACK
54 1.9 soren # see dev/pckbc/wskbdmap_mfii.c for implemented layouts
55 1.9 soren #options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
56 1.9 soren # allocate a number of virtual screens at autoconfiguration time
57 1.9 soren #options WSDISPLAY_DEFAULTSCREENS=4
58 1.9 soren # use a large software cursor that doesn't blink
59 1.9 soren options PCDISPLAY_SOFTCURSOR
60 1.9 soren
61 1.1 nonaka # Kernel root file system and dump configuration.
62 1.1 nonaka config netbsd root on ? type ?
63 1.1 nonaka
64 1.1 nonaka
65 1.1 nonaka #
66 1.1 nonaka # Device configuration
67 1.1 nonaka #
68 1.1 nonaka
69 1.1 nonaka mainbus0 at root
70 1.1 nonaka cpu0 at mainbus0
71 1.1 nonaka
72 1.1 nonaka
73 1.1 nonaka # Basic Bus Support
74 1.1 nonaka
75 1.1 nonaka # PCI bus support
76 1.1 nonaka pci0 at mainbus0 bus ?
77 1.1 nonaka pci* at pchb? bus ?
78 1.1 nonaka
79 1.3 nonaka options PCI_NETBSD_CONFIGURE
80 1.3 nonaka
81 1.1 nonaka # PCI bridges
82 1.1 nonaka pchb* at pci? dev ? function ? # PCI-Host bridges
83 1.1 nonaka pcib* at pci? dev ? function ? # PCI-ISA bridges
84 1.1 nonaka
85 1.1 nonaka # ISA bus support
86 1.1 nonaka isa* at pcib? # ISA on PCI-ISA bridge
87 1.1 nonaka
88 1.1 nonaka # PCMCIA bus support
89 1.1 nonaka pcmcia* at pcic? controller ? socket ?
90 1.1 nonaka
91 1.1 nonaka # ISA PCMCIA controllers
92 1.1 nonaka pcic0 at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
93 1.1 nonaka
94 1.1 nonaka #options PCIC_ISA_INTR_ALLOC_MASK=0x4a00 # free irq 9,11,14
95 1.1 nonaka #options PCIC_ISA_ALLOC_IOBASE=0x0400
96 1.1 nonaka #options PCIC_ISA_ALLOC_IOSIZE=0x0100
97 1.1 nonaka
98 1.1 nonaka # ISA Plug-and-Play bus support
99 1.1 nonaka isapnp0 at isa?
100 1.1 nonaka
101 1.1 nonaka # Console Devices
102 1.1 nonaka
103 1.9 soren # wscons
104 1.9 soren pckbc0 at isa? # pc keyboard controller
105 1.9 soren pckbd* at pckbc? # PC keyboard
106 1.9 soren pms* at pckbc? # PS/2 mouse for wsmouse
107 1.9 soren vga* at pci?
108 1.9 soren wsdisplay* at vga? console ?
109 1.9 soren wskbd* at pckbd? console ?
110 1.9 soren wsmouse* at pms? mux 0
111 1.1 nonaka
112 1.9 soren pcppi0 at isa? # PC prog. periph. interface
113 1.9 soren isabeep0 at pcppi? # "keyboard" beep
114 1.1 nonaka
115 1.1 nonaka mcclock0 at isa? port 0x70 # mc146818 and compatible
116 1.1 nonaka
117 1.1 nonaka
118 1.1 nonaka # Serial Devices
119 1.1 nonaka
120 1.1 nonaka # ISA serial interfaces
121 1.1 nonaka com0 at isa? port 0x3f8 irq 4 # standard PC serial ports
122 1.1 nonaka com1 at isa? port 0x2f8 irq 3
123 1.1 nonaka
124 1.1 nonaka # Parallel Printer Interfaces
125 1.1 nonaka
126 1.1 nonaka # ISA parallel printer interfaces
127 1.1 nonaka lpt0 at isa? port 0x3bc irq 7 # standard PC parallel ports
128 1.1 nonaka
129 1.1 nonaka
130 1.1 nonaka # SCSI Controllers and Devices
131 1.1 nonaka
132 1.1 nonaka # PCI SCSI controllers
133 1.6 briggs adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
134 1.5 nonaka ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
135 1.4 tsutsui iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI
136 1.1 nonaka pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI
137 1.3 nonaka siop* at pci? dev ? function ? # Symbios 53c8xx SCSI
138 1.1 nonaka
139 1.1 nonaka # PCMCIA SCSI controllers
140 1.1 nonaka aic* at pcmcia? function ? # Adaptec APA-1460 SCSI
141 1.1 nonaka
142 1.1 nonaka # SCSI bus support
143 1.6 briggs scsibus* at adw?
144 1.5 nonaka scsibus* at ahc?
145 1.1 nonaka scsibus* at aic?
146 1.4 tsutsui scsibus* at iha?
147 1.1 nonaka scsibus* at pcscp?
148 1.3 nonaka scsibus* at siop?
149 1.1 nonaka
150 1.1 nonaka # SCSI devices
151 1.1 nonaka sd* at scsibus? target ? lun ? # SCSI disk drives
152 1.1 nonaka st* at scsibus? target ? lun ? # SCSI tape drives
153 1.1 nonaka cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
154 1.1 nonaka
155 1.1 nonaka
156 1.1 nonaka # IDE and related devices
157 1.1 nonaka
158 1.1 nonaka # PCMCIA IDE controllers
159 1.1 nonaka wdc* at pcmcia? function ?
160 1.1 nonaka
161 1.1 nonaka # IDE drives
162 1.1 nonaka # Flags are used only with controllers that support DMA operations
163 1.1 nonaka # and mode settings (e.g. some pciide controllers)
164 1.1 nonaka # The lowest order four bits (rightmost digit) of the flags define the PIO
165 1.1 nonaka # mode to use, the next set of four bits the DMA mode and the third set the
166 1.1 nonaka # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
167 1.1 nonaka # to use, and the last bit must be 1 for this setting to be used.
168 1.1 nonaka # For DMA and UDMA, 0xf (1111) means 'disable'.
169 1.1 nonaka # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
170 1.1 nonaka # (0xc=1100, 0xa=1010, 0xf=1111)
171 1.1 nonaka # 0x0000 means "use whatever the drive claims to support".
172 1.1 nonaka wd* at wdc? channel ? drive ? flags 0x0000
173 1.1 nonaka
174 1.1 nonaka # ATAPI bus support
175 1.1 nonaka atapibus* at wdc? channel ?
176 1.1 nonaka
177 1.1 nonaka # ATAPI devices
178 1.1 nonaka # flags have the same meaning as for IDE drives.
179 1.1 nonaka cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
180 1.1 nonaka sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
181 1.1 nonaka
182 1.1 nonaka # Miscellaneous mass storage devices
183 1.1 nonaka
184 1.1 nonaka # ISA floppy
185 1.8 lukem fdc0 at isa? port 0x3f0 irq 6 drq 2 # standard PC floppy controllers
186 1.1 nonaka fd* at fdc? drive ?
187 1.1 nonaka
188 1.1 nonaka # Network Interfaces
189 1.1 nonaka
190 1.1 nonaka # PCI network interfaces
191 1.1 nonaka ep* at pci? dev ? function ? # 3Com 3c59x
192 1.16 kleink ex* at pci? dev ? function ? # 3Com 3c90x[BC]
193 1.5 nonaka fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B
194 1.1 nonaka ne* at pci? dev ? function ? # NE2000-compatible Ethernet
195 1.7 tsutsui pcn* at pci? dev ? function ? # AMD PCnet-PCI Ethernet
196 1.5 nonaka rtk* at pci? dev ? function ? # Realtek 8129/8139
197 1.7 tsutsui sip* at pci? dev ? function ? # SiS 900/DP83815 Ethernet
198 1.15 mycroft tlp* at pci? dev ? function ? # DECchip 21x4x and clones
199 1.1 nonaka vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet
200 1.1 nonaka
201 1.5 nonaka # ISA network interfaces
202 1.5 nonaka ep* at isa? port ? irq ? # 3Com 3c509 Ethernet
203 1.5 nonaka
204 1.1 nonaka # ISA Plug-and-Play network intefaces
205 1.1 nonaka ep* at isapnp? # 3Com 3c509 Ethernet
206 1.5 nonaka ne* at isapnp? # NE2000-compatible Ethernet
207 1.1 nonaka
208 1.1 nonaka # PCMCIA network interfaces
209 1.1 nonaka ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet
210 1.1 nonaka ne* at pcmcia? function ? # NE2000-compatible Ethernet
211 1.1 nonaka
212 1.1 nonaka # MII/PHY support
213 1.16 kleink exphy* at mii? phy ? # 3Com internal PHYs
214 1.5 nonaka inphy* at mii? phy ? # Intel 82555 PHYs
215 1.5 nonaka nsphy* at mii? phy ? # NS83840 PHYs
216 1.7 tsutsui qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
217 1.7 tsutsui sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
218 1.1 nonaka ukphy* at mii? phy ? # generic unknown PHYs
219 1.1 nonaka
220 1.1 nonaka
221 1.1 nonaka # Pseudo-Devices
222 1.1 nonaka
223 1.1 nonaka # disk/mass storage pseudo-devices
224 1.1 nonaka pseudo-device md 1 # memory disk device (ramdisk)
225 1.1 nonaka
226 1.1 nonaka # network pseudo-devices
227 1.1 nonaka pseudo-device loop # network loopback
228 1.1 nonaka
229 1.1 nonaka # miscellaneous pseudo-devices
230 1.1 nonaka pseudo-device pty # pseudo-terminals
231 1.1 nonaka pseudo-device rnd # /dev/random and in-kernel generator
232 1.8 lukem #options RND_COM # use "com" randomness as well
233