blob: b1deb706d26c8c29bdbf8c658a7e049289baa551 (
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
|
# $NetBSD: GENERIC.common,v 1.30 2023/02/09 14:09:50 abs Exp $
include "arch/usermode/conf/std.usermode"
options INCLUDE_CONFIG_FILE
#ident "GENERIC-$Revision: 1.30 $"
maxusers 32
makeoptions DEBUG="-O1 -g3"
#makeoptions COPY_SYMTAB=1
options RTC_OFFSET=0
options NTP
options KTRACE
#options USERCONF
options SYSVMSG
options SYSVSEM
options SYSVSHM
options DEBUG
#options DDB # missing support
options DIAGNOSTIC
options LOCKDEBUG
#options DEBUG_EXEC
options CPU_DEBUG
#options UVMHIST
#options UVMHIST_PRINT
include "conf/compat_netbsd50.config"
file-system FFS
file-system MFS
file-system FDESC
file-system KERNFS
file-system NULLFS
file-system PROCFS
file-system UNION
file-system PTYFS
file-system TMPFS
file-system NFS
file-system CD9660
file-system UDF
file-system NILFS
#options DISKLABEL_EI
#options FFS_EI
options WAPBL
options INET
options INET6
options NFS_BOOT_DHCP
options NFS_BOOT_BOOTPARAM
config netbsd root on ? type ?
mainbus0 at root
cpu0 at mainbus?
clock0 at mainbus?
ttycons0 at mainbus?
ld* at mainbus?
veth0 at mainbus?
vaudio0 at mainbus?
audio0 at vaudio0
spkr* at audio? # PC speaker (synthesized)
vncfb0 at mainbus?
wsdisplay0 at vncfb?
wskbd0 at vncfb?
wsmouse0 at vncfb? mux 0
options WSEMUL_VT100
options WS_KERNEL_FG=WSCOL_GREEN
options WSKBD_DEFAULT_KEYREPEAT_DEL1=1000
options WSKBD_DEFAULT_KEYREPEAT_DELN=200
options WSDISPLAY_COMPAT_USL # wsconscfg VT handling
# virtual devices */
vatapi* at mainbus?
atapibus* at vatapi?
# cd, sd, and the like
cd* at atapibus?
sd* at atapibus?
st* at atapibus?
uk* at atapibus?
# pseudo devices
pseudo-device loop
pseudo-device pty
pseudo-device bpfilter
pseudo-device clockctl
pseudo-device drvctl
pseudo-device ksyms
pseudo-device wsmux
# Pull in optional local configuration - always at end
cinclude "arch/usermode/conf/GENERIC.local"
|