blob: ad27de9c553b215b188f0bd0862554fa87db2b80 (
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
|
# $OpenBSD: GENERIC,v 1.6 1998/04/06 17:29:24 pefo Exp $
#
# PPC GENERIC config file
#
machine powerpc
maxusers 32
# Standard system options
option SWAPPAGER # swap pager (anonymous and swap space)
option VNODEPAGER # vnode pager (mapped files)
option DEVPAGER # device pager (mapped devices)
option NATIVE_ELF # PowerPC systems uses ELF as native format
option DIAGNOSTIC # extra kernel debugging checks
option KTRACE # system call tracing support
option DEBUG # extra kernel debugging support
option FIREPOWERBUGS # FirePower problem workaround...
option PPC_MPC106_BUG # MPC106 PCI IFC chip bug workaround...
#option IPKDBUSERHACK
option DDB
# System V options
option SYSVMSG # System V-like message queues
option SYSVSEM # System V-like semaphores
option SYSVSHM # System V-like memory sharing
#option SHMMAXPGS=1024 # 1024 pages is the default
# Filesystem options
option FFS,QUOTA # fast filesystem with user and group quotas
option MFS # memory-based filesystem
option NFSCLIENT # Sun NFS-compatible filesystem (client)
option NFSSERVER # Sun NFS-compatible filesystem (server)
option CD9660 # ISO 9660 + Rock Ridge file system
option MSDOSFS # Ability to read write MS-Dos filsystem
option FDESC # user file descriptor filesystem (/dev/fd)
option FIFO # POSIX fifo support (in all filesystems)
option KERNFS # kernel data-structure filesystem
option NULLFS # null layer filesystem
option PORTAL # portal filesystem (still experimental)
option PROCFS # /proc
option UMAPFS # uid/gid remapping filesystem
option UNION # union file system
# Networking options
#option GATEWAY # IP packet forwarding
option INET # Internet protocols
option IPSEC # IP Security
#option NS # XNS
#option IPX # IPX+SPX
#option IPXIP # IPX tunneling over IP
#option ISO,TPIP # OSI networking
#option EON # OSI tunneling over IP
#option CCITT,LLC,HDLC # X.25
option IPFILTER # IP packet filter for security
option IPFILTER_LOG # use /dev/ipl to log IPF
option PPP_BSDCOMP # PPP BSD compression
option PPP_DEFLATE
#option TCP_COMPAT_42 # compatibility with 4.2BSD TCP/IP
#option MULTICAST # Multicast support
#option MROUTING # Multicast routing support
config bsd swap generic
#
# Now the Machine specification
#
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 2 # 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 enc 1 # encryption device
#pseudo-device strip 1 # Starmode Radio IP interface
pseudo-device pty 64 # pseudo ptys
pseudo-device random 1
pseudo-device rd 1 # ram disk
pseudo-device vnd 4 # paging to files
pseudo-device ccd 4 # concatenated disk devices
|