blob: 4bd8d4999714c25047f73544aaff002572bd2562 (
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
|
# $OpenBSD: RAMDISK,v 1.14 2011/06/29 20:52:09 matthew Exp $
#
# MVMEPPC GENERIC config file
#
machine mvmeppc powerpc
maxusers 32
# default type, instructs system to try to determine what proper type is
# actual machine type probed via name of openfirmware root node.
option SYS_TYPE=APPL
option PCIVERBOSE
include "../../../conf/GENERIC"
rmoption PTRACE
config bsd root on rd0a swap on rd0b
#
# Now the Machine specification
#
mainbus0 at root
cpu* at mainbus0
bugtty0 at mainbus0
raven0 at mainbus0 # raven ASIC
#### PCI Bus devices.
openpic0 at raven0 # interrupt controller
#mpic0 at raven0 # interrupt controller
mpcpcibr0 at raven0 # PCI controller
pci* at mpcpcibr0
#ppb* at pci? # PCI-PCI bridges
#pci* at ppb?
# host bridge identifiers
pchb* at pci? # PCI host bridge
pcib* at pci? # PCI-ISA bridge
siop* at pci?
de* at pci?
#vme* at pci?
#pciide* at pci?
# ISA Bus
isa* at pcib?
#pckbc0 at isa? # PC keyboard controller
#pckbd* at pckbc? # PC keyboard
#pms* at pckbc? # PS/2 mouse for wsmouse
#vga0 at isa?
#vga* at pci?
#com* at isa? port 0x3f8 irq 4 # standard serial ports
#com* at isa? port 0x2f8 irq 3
#lpt* at isa? port 0x3bc irq 7 # standard parallel port
# how many of these are needed?
#ukphy* at mii? # generic unknown PHYs
#nvram* at mainbus0 # nvram
#zsc* at obio?
#zstty* at zsc?
#### SCSI attachment points
#wdc* at mainbus? flags 0x0
#wd* at wdc? flags 0x0000
#atapiscsi* at wdc? flags 0x0000
# ATAPI<->SCSI
#### SCSI Bus devices
scsibus* at scsi?
sd0 at scsibus? target 0 lun 0
#st* at scsibus?
#cd* at scsibus?
#ch* at scsibus?
#uk* at scsibus?
pseudo-device rd 1 # ram disk
# RAMDISK stuff
option MINIROOTSIZE=8192
option RAMDISK_HOOKS
|