blob: c34e76a7cec1ae271b05ec0c04f5dc2640751e84 (
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
|
#
# RAMDISK install kernel definition.
#
machine powerpc
maxusers 8
# Standard system options
option SWAPPAGER
option DEVPAGER
option NATIVE_ELF
option FIREPOWERBUGS
# specific define for VI boards
options power4e
options KTRACE
options DEBUG
option NFSCLIENT
option NFSSERVER
option CD9660
option MSDOSFS
options FIFO
options KERNFS
option FFS,QUOTA
option MFS
options INET
# Specify storage configuration using ramdisk
config bsd root on rd0a swap on rd0b
mainbus0 at root
cpu* at mainbus0
mpcpcibr* at mainbus0 # MPC106 PCI Bridge.
isabr* at mainbus0 # ISA dev bridge.
#### ISA Bus devices.
isa* at isabr?
com0 at isa? port 0x2e8 irq 5
com1 at isa? port 0x3e8 irq 1
#### PCI Bus devices.
pci* at mpcpcibr?
ncr* at pci? dev ? function ?
scsibus* at ncr?
de* at pci? dev ? function ?
#vme* at pci? dev ? function ?
#### 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 Devices
pseudo-device loop 1 # network loopback
#pseudo-device bpfilter 8 # packet filter ports
pseudo-device sl 2 # serial-line IP ports
pseudo-device ppp 2 # serial-line PPP ports
#pseudo-device tun 2 # network tunneling over tty
#pseudo-device pty 64 # pseudo ptys
#pseudo-device random 1
#pseudo-device vnd 4 # paging to files
#pseudo-device ccd 4 # concatenated disk devices
pseudo-device rd 1 # ram disk
# RAMDISK stuff
option MINIROOTSIZE=8192
option RAMDISK_HOOKS
|