blob: 89915f5b2fb61f0147f5fd1e098bf9137573a18b (
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
#
# $NetBSD: BOOT,v 1.56 2003/10/08 11:53:10 bouyer Exp $
#
# This file was automatically created. Changes will be
# lost when running makeconf in this directory.
#
# Created from:
# NetBSD: FALCON.in,v 1.7 2003/10/08 11:05:27 bouyer Exp $
# NetBSD: GENERIC.in,v 1.33 2003/09/22 14:11:16 cl Exp $
#This configuration file is for a generic ATARI-Falcon
#Define 'INSTALL_KERNEL' or 'INSTALLX_KERNEL' to generate a BOOT or
#BOOTX kernel respectively.
#There is no possibility for physical network interfaces. Use the define
#below to turn off vlan, pppoe, bridge and NETATALK.
#Generic atari
include "arch/atari/conf/std.atari"
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
#Add support for about 16 users. This variable is used to size
#various kernel structures.
maxusers 16
options HZ=64 # Set the clock-rate (48/64/96)
#Standard system options
options INSECURE # disable kernel security levels
#options NTP # NTP phase/frequency locked loop
#Enable experimental buffer queue strategy for better responsiveness under
#high disk I/O load. Use it with caution - it's not proven to be stable yet.
#options NEW_BUFQ_STRATEGY
#(Co)processors this kernel should support
options M68030 # support for 030
options FPU_EMULATE # Support for MC68881/MC68882 emulator
#Networking options
options INET # IP + ICMP + TCP + UDP
options PPP_BSDCOMP # BSD-Compress compression support for PPP
options PPP_DEFLATE # Deflate compression support for PPP
options PPP_FILTER # Active filter support for PPP (requires bpf)
#File systems
file-system FFS # Berkeley fast file system
file-system MFS # Memory based filesystem
file-system KERNFS # Kernel parameter filesystem
file-system MSDOSFS # MSDOS filesystem
file-system CD9660 # ISO 9660 filesystem with Rock Ridge
#Misc. debugging options
options PANICWAIT # Require keystroke to dump/reboot
options DDB # Kernel debugger
#Compatibility options for various existing systems
options COMPAT_43 # 4.3 BSD compatible system calls (required)
options COMPAT_10 # Compatibility to NetBSD1.0
options COMPAT_11 # Compatibility to NetBSD1.1
options COMPAT_12 # Compatibility to NetBSD1.2
options COMPAT_13 # Compatibility to NetBSD1.3
options COMPAT_14 # Compatibility to NetBSD1.4
options COMPAT_15 # Compatibility to NetBSD1.5
options COMPAT_16 # Compatibility to NetBSD1.6
options COMPAT_AOUT_M68K # Compatibility to a.out executables
options EXEC_AOUT # a.out format executables
options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
#These options enable verbose messages for several subsystems.
#Warning, these may compile large string tables into the kernel!
#Atari specific options
#options KFONT_8x8 # Use 8x8 font instead of 8x16
options ST_POOL_SIZE=22 # smallest that allows TT-HIGH
options TT_SCSI # SCSI-support for TT
options TT_VIDEO # Graphics support for TT
#options ET4000_HAS_2MB_MEM # et4000 with 2 MB video memory
options FALCON_SCSI # SCSI-support for Falcon
options FALCON_VIDEO # Graphics support for FALCON
options MEMORY_DISK_HOOKS # Boot RAM-disk
options DISKLABEL_NBDA # NetBSD disklabels (required)
options DISKLABEL_AHDI # NetBSD/AHDI disklabels
#Build one kernel that can boot from any disk.
config netbsd root on ? type ?
pseudo-device sl # Slip
pseudo-device ppp # ppp
pseudo-device pty # pseudo-terminals
pseudo-device loop # Loopback network
pseudo-device vnd 3 # 3 pseudo disks (see vnconfig)
pseudo-device md 3 # Boot memory disk
#Hardware options for GENERIC are in the various machine type specific files
pseudo-device view 4 # View (graphics mapping)
#The following sections describe various hardware options.
ncrscsi0 at mainbus0 # NCR5380 SCSI driver
scsibus0 at ncrscsi0 # SCSI bus
zs0 at mainbus0 # Serial support through 8530
grfbus0 at mainbus0 # bitmapped display's
grfcc0 at grfbus0 # graphics driver
ite0 at grfcc0 # console
nvr0 at mainbus0 # nvram driver
wdc0 at mainbus0 # IDE-bus
atabus* at wdc? channel ?
wd* at atabus? drive ?
#ATAPI bus support
atapibus* at atabus?
#ATAPI devices
cd* at atapibus? drive ? # ATAPI CD-ROM drives
#SCSI devices
sd* at scsibus? target ? lun ? # SCSI disk drives
st* at scsibus? target ? lun ? # SCSI tape drives
cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
|