blob: d57b47582671b50a9c409e5af203c14ee41cbcec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# $NetBSD: INSTALL,v 1.4 1995/11/30 00:58:39 jtc Exp $
#
# INSTALL -- install kernel
#
#
# architecture type and name of kernel; REQUIRED
machine "pc532"
# time zone RTC is expected to be set in; REQUIRED
options TIMEZONE=0, DST=0 # time zone to read RTC in
options GENERIC
# estimated number of users
maxusers 2
# paging of processes, and caching devices; REQUIRED
options SWAPPAGER
options DEVPAGER
# networking options
#options INET
# generic SCSI system
options SCSI
# filesystems
#options FIFO
options MSDOSFS
options FFS
#options NFSCLIENT
options CD9660
# pc532 special options
# options PLIP
options NO_INLINE_SPLX
config "netbsd" swap generic
membus0 at root
rd0 at membus?
options RD_SIZE=0x200000
#ncr0 at membus?
oldncr0 at membus?
scsibus0 at scsi?
sd* at scsibus? target ? lun ?
st* at scsibus? target ? lun ?
cd* at scsibus? target ? lun ?
scn0 at membus?
scn1 at membus?
scn2 at membus?
scn3 at membus?
#scn4 at membus?
#scn5 at membus?
#lpt0 at membus? addr 0xffc80030 irq 7
#lpt1 at membus? addr 0xffc80034 irq 6
#pseudo-device loop 1 # loopback network
#pseudo-device sl 1 # compressed SLIP
#pseudo-device ppp 1 # Point-to-Point Protocol
|