blob: 3fdfee97de53f1af8a7d2aea522803840f08568d (
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
|
# $OpenBSD: P4032,v 1.5 1998/03/16 09:38:36 pefo Exp $
#
# Generic configuration file for Algorithmics P4032 board
#
machine arc mips
maxusers 32
# Need to set locally
option TIMEZONE=0 # minutes west of GMT (for)
option DST=0 # use daylight savings rules
# Standard system options
option SWAPPAGER # swap pager (anonymous and swap space)
option DEVPAGER # device pager (mapped devices)
option DIAGNOSTIC # extra kernel debugging checks
option KTRACE # system call tracing support
option DEBUG # extra kernel debugging support
option COMPAT_43 # compatibility with 4.3BSD binaries
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
option NATIVE_ELF # Arc systems uses ELF as native format
# Filesystem options
option CD9660 # ISO 9660 + Rock Ridge file system
option FDESC # user file descriptor filesystem (/dev/fd)
option FIFO # POSIX fifo support (in all filesystems)
option FFS,QUOTA # fast filesystem with user and group quotas
option KERNFS # kernel data-structure filesystem
option MFS # memory-based filesystem
option MSDOSFS # Ability to read write MS-Dos filsystem
option NFSCLIENT # Sun NFS-compatible filesystem (client)
option NFSSERVER # Sun NFS-compatible filesystem (server)
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 NS # XNS
#option IPX # IPX+SPX
#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 TCP_COMPAT_42 # compatibility with 4.2BSD TCP/IP
#option MULTICAST # Multicast support
#option MROUTING # Multicast routing support
# Specify storage configuration (its a joke..)
config bsd swap generic
#
# Definition of system
#
mainbus0 at root
cpu* at mainbus0
#### Main local buses
algor* at mainbus0 # Algorithmics local bus.
pbcpcibr* at mainbus0 # PCI Bus bridge.
#### Algor bus devices
clock0 at algor?
com0 at algor?
com1 at algor?
lpt0 at algor?
#### PCI Bus
pci* at pbcpcibr?
#pcivga* at pci? dev ? function ?
ncr* at pci? dev ? function ?
scsibus* at ncr?
de* 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 tb 1 # tablet line discipline
pseudo-device vnd 4 # paging to files
pseudo-device ccd 4 # concatenated disk devices
pseudo-device rd 4 # ram disk.
|