blob: b1e9990baa5a7efc73acaaf264755b5513bd03c7 (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
# $OpenBSD: NFSROOT,v 1.2 1999/08/29 12:14:03 niklas Exp $
#
# Generic configuration file for MIPS R4x00 ARC Systems
#
machine arc mips
option SCSITERSE
maxusers 4
option TIMEZONE=0 # time zone to adjust RTC time by
option DST=0 # daylight savings time used by RTC
option SWAPPAGER # paging; REQUIRED
option DEVPAGER # mmap() of devices
#makeoptions DEBUG="-g" # compile full symbol table
option FFS # UFS
#option EXT2FS # Linux ext2fs
option NFSCLIENT # Network File System client
#option CD9660 # ISO 9660 + Rock Ridge file system
option MSDOSFS # MS-DOS file system
option FIFO # FIFOs; RECOMMENDED
option KERNFS # /kern
option INET # IP + ICMP + TCP + UDP
option BOOT_CONFIG # boot-time kernel config
#option DDB
# MD options
option NATIVE_ELF # Arc systems uses ELF as native format
# Specify storage configuration (its a joke..)
config bsd swap generic
#
# Definition of system
#
mainbus0 at root
cpu* at mainbus0
#### Main local buses
#pica* at mainbus0 # ACER Pica systems local bus.
isabr* at mainbus0 # ISA Bus bridge (std ISA bus).
#### PICA bus devices
#clock0 at pica?
#pc0 at pica?
#pms0 at pica?
#com0 at pica?
#com1 at pica?
#lpt0 at pica?
#sn0 at pica?
#fdc0 at pica?
#fd* at fdc? drive ?
#asc0 at pica?
#scsibus* at asc?
#### ISA Bus.
isa* at isabr?
clock0 at isa? port 0x70 irq 0
pc0 at isa? port 0x60 irq 1 # generic PC console device
com0 at isa? port 0x3f8 irq 4
com1 at isa? port 0x2f8 irq 3
com2 at isa? port 0x3e8 irq 4
com3 at isa? port 0x2e8 irq 3
ast0 at isa? port 0x1a0 irq 3 # AST 4-port serial cards
com* at ast? slave ?
lpt0 at isa? port 0x378 irq 7
# Joystick driver. Probe is a little strange; add only if you have one.
# joy0 at isa? port 0x201
# IDE controllers
wdc0 at isa? port 0x1f0 irq 14 flags 0x00
wdc1 at isa? port 0x170 irq 15 flags 0x00
#wdc* at pcmcia? function ?
#wdc* at isapnp?
# IDE hard drives
wd* at wdc? channel ? drive ? flags 0x0000
# ATAPI<->SCSI
atapiscsi* at wdc? channel ?
scsibus* at atapiscsi?
ep0 at isa? port ? irq ? # 3C509 ethernet cards
we0 at isa? port 0x280 iomem 0xd0000 irq 9 # WD/SMC 80x3 ethernet
we1 at isa? port 0x300 iomem 0xcc000 irq 10 #
#we* at isapnp?
ec0 at isa? port 0x250 iomem 0xd8000 irq 9 # 3C503 ethernet
ne0 at isa? port 0x240 irq 9 # NE[12]000 ethernet
ne1 at isa? port 0x300 irq 10 # NE[12]000 ethernet
ne2 at isa? port 0x280 irq 9 # NE[12]000 ethernet
#ne* at isapnp? # NE[12]000 PnP ether cards
btl0 at isa? port 0x330 irq ? drq ?
scsibus* at btl?
#### SCSI Bus devices
sd* at scsibus? target ? lun ?
st* at scsibus? target ? lun ?
cd* at scsibus? target ? lun ?
ch* at scsibus? target ? lun ?
ss* at scsibus? target ? lun ?
uk* at scsibus? target ? lun ?
pseudo-device loop 1 # network loopback
#pseudo-device sl 1 # CSLIP
#pseudo-device ppp 1 # PPP
pseudo-device bpfilter 1 # packet filter
pseudo-device pty 64 # pseudo-terminals
pseudo-device vnd 4 # concatenated disk devices
pseudo-device ksyms 1 # kernel symbols device
|