summaryrefslogtreecommitdiffstats
path: root/arch/m68k/config.in
blob: a67227d60bd117a21ed889c0d24c9f9501d8960b (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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
#
# For a description of the syntax of this configuration file,
# see the Configure script.
#
mainmenu_name "Linux/68k Kernel Configuration"

mainmenu_option next_comment
comment 'Code maturity level options'
bool 'Prompt for development and/or incomplete code/drivers' CONFIG_EXPERIMENTAL
endmenu

mainmenu_option next_comment
comment 'Loadable module support'
bool 'Enable loadable module support' CONFIG_MODULES
if [ "$CONFIG_MODULES" = "y" ]; then
  bool 'Set version information on all symbols for modules' CONFIG_MODVERSIONS
  bool 'Kernel module loader' CONFIG_KMOD
fi
endmenu

mainmenu_option next_comment
comment 'Platform dependent setup'

bool 'Amiga support' CONFIG_AMIGA
bool 'Atari support' CONFIG_ATARI
if [ "$CONFIG_ATARI" = "y" ]; then
  bool '  Hades support' CONFIG_HADES
  if [ "$CONFIG_HADES" = "y" ]; then
    define_bool CONFIG_PCI y
  fi  
fi
bool 'Macintosh support' CONFIG_MAC
if [ "$CONFIG_MAC" = "y" ]; then
  define_bool CONFIG_NUBUS y
  define_bool CONFIG_M68K_L2_CACHE y
fi
bool 'Apollo support' CONFIG_APOLLO
bool 'VME (Motorola and BVM) support' CONFIG_VME
if [ "$CONFIG_VME" = "y" ]; then
  bool 'MVME162, 166 and 167 support' CONFIG_MVME16x
  bool 'BVME4000 and BVME6000 support' CONFIG_BVME6000
fi
bool 'HP9000/300 support' CONFIG_HP300
if [ "$CONFIG_HP300" = "y" ]; then
  bool 'DIO bus support' CONFIG_DIO
fi
define_bool CONFIG_SUN3 n
if [ "$CONFIG_PCI" = "y" ]; then
  bool 'Backward-compatible /proc/pci' CONFIG_PCI_OLD_PROC
fi

comment 'Processor type'
bool '68020 support' CONFIG_M68020
bool '68030 support' CONFIG_M68030
bool '68040 support' CONFIG_M68040
bool '68060 support' CONFIG_M68060
bool 'Advanced configuration options' CONFIG_ADVANCED
if [ "$CONFIG_ADVANCED" = "y" ]; then
  bool 'Use read-modify-write instructions' CONFIG_RMW_INSNS
  bool 'Use one physical chunk of memory only' CONFIG_SINGLE_MEMORY_CHUNK
  if [ "$CONFIG_M68060" = "y" ]; then
    bool 'Use write-through caching for 68060 supervisor accesses' CONFIG_060_WRITETHROUGH
  fi
fi
endmenu

mainmenu_option next_comment
comment 'General setup'

bool 'Networking support' CONFIG_NET
bool 'System V IPC' CONFIG_SYSVIPC
bool 'BSD Process Accounting' CONFIG_BSD_PROCESS_ACCT
bool 'Sysctl support' CONFIG_SYSCTL
tristate 'Kernel support for a.out binaries' CONFIG_BINFMT_AOUT
tristate 'Kernel support for ELF binaries' CONFIG_BINFMT_ELF
tristate 'Kernel support for MISC binaries' CONFIG_BINFMT_MISC

if [ "$CONFIG_AMIGA" = "y" ]; then
  bool 'Amiga Zorro (AutoConfig) bus support' CONFIG_ZORRO
  if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
    bool 'Amiga 1200/600 PCMCIA support' CONFIG_AMIGA_PCMCIA
  fi
fi
if [ "$CONFIG_ATARI" = "y" ]; then
  bool 'Support for ST-RAM as swap space' CONFIG_STRAM_SWAP
  bool 'ST-RAM statistics in /proc' CONFIG_STRAM_PROC
fi
if [ "$CONFIG_AMIGA" = "y" -o "$CONFIG_ATARI" = "y" ]; then
  bool 'Use power LED as a heartbeat' CONFIG_HEARTBEAT
else
  if [ "$CONFIG_HP300" = "y" ]; then
# We have a dedicated heartbeat LED. :-)
  define_bool CONFIG_HEARTBEAT y
  fi
fi
bool '/proc/hardware support' CONFIG_PROC_HARDWARE
endmenu

source drivers/block/Config.in

if [ "$CONFIG_NET" = "y" ]; then
  source net/Config.in
fi

mainmenu_option next_comment
comment 'SCSI support'

tristate 'SCSI support' CONFIG_SCSI

if [ "$CONFIG_SCSI" != "n" ]; then

comment 'SCSI support type (disk, tape, CD-ROM)'

dep_tristate 'SCSI disk support' CONFIG_BLK_DEV_SD $CONFIG_SCSI
dep_tristate 'SCSI tape support' CONFIG_CHR_DEV_ST $CONFIG_SCSI
dep_tristate 'SCSI CD-ROM support' CONFIG_BLK_DEV_SR $CONFIG_SCSI
if [ "$CONFIG_BLK_DEV_SR" != "n" ]; then
  bool '  Enable vendor-specific extensions (for SCSI CDROM)' CONFIG_BLK_DEV_SR_VENDOR
fi
dep_tristate 'SCSI generic support' CONFIG_CHR_DEV_SG $CONFIG_SCSI

comment 'Some SCSI devices (e.g. CD jukebox) support multiple LUNs'

bool 'Probe all LUNs on each SCSI device' CONFIG_SCSI_MULTI_LUN

bool 'Verbose SCSI error reporting (kernel size +=12K)' CONFIG_SCSI_CONSTANTS
bool 'SCSI logging facility' CONFIG_SCSI_LOGGING

mainmenu_option next_comment
comment 'SCSI low-level drivers'

if [ "$CONFIG_AMIGA" = "y" ]; then
  dep_tristate 'A3000 WD33C93A support' CONFIG_A3000_SCSI $CONFIG_SCSI
  if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
    bool 'A4000T SCSI support' CONFIG_A4000T_SCSI
  fi
fi
if [ "$CONFIG_ZORRO" = "y" ]; then
  dep_tristate 'A2091 WD33C93A support' CONFIG_A2091_SCSI $CONFIG_SCSI
  dep_tristate 'GVP Series II WD33C93A support' CONFIG_GVP11_SCSI $CONFIG_SCSI
  dep_tristate 'CyberStorm SCSI support' CONFIG_CYBERSTORM_SCSI $CONFIG_SCSI
  dep_tristate 'CyberStorm Mk II SCSI support' CONFIG_CYBERSTORMII_SCSI $CONFIG_SCSI
  dep_tristate 'Blizzard 2060 SCSI support' CONFIG_BLZ2060_SCSI $CONFIG_SCSI
  dep_tristate 'Blizzard 1230IV/1260 SCSI support' CONFIG_BLZ1230_SCSI $CONFIG_SCSI
  dep_tristate 'Fastlane SCSI support' CONFIG_FASTLANE_SCSI $CONFIG_SCSI
  if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
    bool 'A4091 SCSI support' CONFIG_A4091_SCSI
    bool 'WarpEngine SCSI support' CONFIG_WARPENGINE_SCSI
    bool 'Blizzard PowerUP 603e+ SCSI' CONFIG_BLZ603EPLUS_SCSI
    bool 'Cyberstorm Mk III SCSI support' CONFIG_CYBERSTORMIII_SCSI
#    bool 'GVP Turbo 040/060 SCSI support' CONFIG_GVP_TURBO_SCSI
  fi
fi
if [ "$CONFIG_ATARI" = "y" ]; then
  dep_tristate 'Atari native SCSI support' CONFIG_ATARI_SCSI $CONFIG_SCSI
  if [ "$CONFIG_ATARI_SCSI" != "n" ]; then
    bool '  Long delays for Toshiba CD-ROMs' CONFIG_ATARI_SCSI_TOSHIBA_DELAY
    bool '  Reset SCSI-devices at boottime' CONFIG_ATARI_SCSI_RESET_BOOT
    if [ "$CONFIG_EXPERIMENTAL" = "y" -a "$CONFIG_HADES" = "y" ]; then
      bool '  Hades SCSI DMA emulator (EXPERIMENTAL)' CONFIG_TT_DMA_EMUL
    fi
  fi
fi
if [ "$CONFIG_MAC" = "y" ]; then
  bool 'MAC NCR5380 SCSI' CONFIG_MAC_SCSI
  dep_tristate 'MAC NCR53c9[46] SCSI' CONFIG_SCSI_MAC_ESP $CONFIG_SCSI
fi
#dep_tristate 'SCSI debugging host adapter' CONFIG_SCSI_DEBUG $CONFIG_SCSI

if [ "$CONFIG_VME" = "y" -a "$CONFIG_MVME16x" = "y" ]; then
  bool 'NCR53C710 SCSI driver for MVME16x' CONFIG_MVME16x_SCSI
fi

if [ "$CONFIG_VME" = "y" -a "$CONFIG_BVME6000" = "y" ]; then
  bool 'NCR53C710 SCSI driver for BVME6000' CONFIG_BVME6000_SCSI
fi

endmenu

fi
endmenu

if [ "$CONFIG_NET" = "y" ]; then

mainmenu_option next_comment
comment 'Network device support'

bool 'Network device support' CONFIG_NETDEVICES
if [ "$CONFIG_NETDEVICES" = "y" ]; then
#
# Network device configuration
#
tristate 'Dummy net driver support' CONFIG_DUMMY
tristate 'SLIP (serial line) support' CONFIG_SLIP
if [ "$CONFIG_SLIP" != "n" ]; then
  bool ' CSLIP compressed headers' CONFIG_SLIP_COMPRESSED
  bool ' Keepalive and linefill' CONFIG_SLIP_SMART
  bool ' Six bit SLIP encapsulation' CONFIG_SLIP_MODE_SLIP6
fi
tristate 'PPP (point-to-point) support' CONFIG_PPP
if [ ! "$CONFIG_PPP" = "n" ]; then
  comment 'CCP compressors for PPP are only built as modules.'
fi
tristate 'EQL (serial line load balancing) support' CONFIG_EQUALIZER
if [ "$CONFIG_ZORRO" = "y" ]; then
  tristate 'Ariadne support' CONFIG_ARIADNE
  tristate 'Ariadne II support' CONFIG_ARIADNE2
  tristate 'A2065 support' CONFIG_A2065
  tristate 'Hydra support' CONFIG_HYDRA
fi
if [ "$CONFIG_AMIGA_PCMCIA" = "y" ]; then
  tristate 'PCMCIA NE2000 support' CONFIG_APNE
fi
if [ "$CONFIG_APOLLO" = "y" ] ; then
  tristate 'Apollo 3c505 support' CONFIG_APOLLO_ELPLUS
fi
if [ "$CONFIG_MAC" = "y" ]; then
  bool 'Mac NS 8390 based ethernet cards' CONFIG_DAYNAPORT
#  bool 'Macintosh (AV) onboard MACE ethernet' CONFIG_MACMACE
  bool 'Macintosh (Quadra) onboard SONIC ethernet' CONFIG_MACSONIC
fi
if [ "$CONFIG_VME" = "y" -a "$CONFIG_MVME16x" = "y" ]; then
  tristate 'MVME16x Ethernet support' CONFIG_MVME16x_NET
fi
if [ "$CONFIG_VME" = "y" -a "$CONFIG_BVME6000" = "y" ]; then
  tristate 'BVME6000 Ethernet support' CONFIG_BVME6000_NET
fi
if [ "$CONFIG_ATARI" = "y" ]; then
  tristate 'Atari Lance support' CONFIG_ATARILANCE
  if [ "$CONFIG_ATARI_ACSI" != "n" ]; then
    tristate 'BioNet-100 support' CONFIG_ATARI_BIONET
    tristate 'PAMsNet support' CONFIG_ATARI_PAMSNET
  fi
fi
if [ "$CONFIG_HP300" = "y" ]; then
  bool 'HP on-board LANCE support' CONFIG_HPLANCE
fi
fi
endmenu

fi

mainmenu_option next_comment
comment 'Character devices'
 
if [ "$CONFIG_VME" = "n" ]; then
  define_bool CONFIG_VT y
  if [ "$CONFIG_VT" = "y" ]; then
    bool 'Support for console on virtual terminal' CONFIG_VT_CONSOLE
  fi
fi

if [ "$CONFIG_ATARI" = "y" ]; then
  define_bool CONFIG_NVRAM y
fi

tristate 'Parallel printer support' CONFIG_M68K_PRINTER
if [ "$CONFIG_ZORRO" = "y" ]; then
  dep_tristate 'Multiface Card III parallel support' CONFIG_MULTIFACE_III_LP $CONFIG_M68K_PRINTER
fi
if [ "$CONFIG_AMIGA" = "y" ]; then
  tristate 'Amiga mouse support' CONFIG_AMIGAMOUSE
fi
if [ "$CONFIG_ATARI" = "y" ]; then
  tristate 'Atari mouse support' CONFIG_ATARIMOUSE
fi
if [ "$CONFIG_MAC" = "y" ]; then
   bool 'Mac ADB mouse support' CONFIG_ADBMOUSE
fi
if [ "$CONFIG_ATARI" = "y" ]; then
  tristate 'Atari MFP serial support' CONFIG_ATARI_MFPSER
  tristate 'Atari SCC serial support' CONFIG_ATARI_SCC
  if [ "$CONFIG_ATARI_SCC" = "y" -o "$CONFIG_ATARI_SCC" = "m" ]; then
    bool 'Atari SCC serial DMA support' CONFIG_ATARI_SCC_DMA
  fi
  tristate 'Atari MIDI serial support' CONFIG_ATARI_MIDI
  if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
    tristate 'Atari DSP56k support (EXPERIMENTAL)' CONFIG_ATARI_DSP56K
  fi
fi
if [ "$CONFIG_AMIGA" = "y" ]; then
  tristate 'Amiga builtin serial support' CONFIG_AMIGA_BUILTIN_SERIAL
  bool 'Hisoft Whippet PCMCIA serial support' CONFIG_WHIPPET
fi
if [ "$CONFIG_ZORRO" = "y" ]; then
  tristate 'GVP IO-Extender support' CONFIG_GVPIOEXT
  dep_tristate 'GVP IO-Extender parallel printer support' CONFIG_GVPIOEXT_LP $CONFIG_GVPIOEXT
  dep_tristate 'GVP IO-Extender PLIP support' CONFIG_GVPIOEXT_PLIP $CONFIG_GVPIOEXT
  tristate 'Multiface Card III serial support' CONFIG_MULTIFACE_III_TTY
fi
if [ "$CONFIG_MAC" = "y" ]; then
  bool 'Mac SCC serial support' CONFIG_MAC_SCC
fi
if [ "$CONFIG_HP300" = "y" -a "$CONFIG_DIO" = "y" ]; then
  tristate 'HP DCA serial support' CONFIG_HPDCA
fi
if [ "$CONFIG_AMIGA" = "y" -o "$CONFIG_ATARI" = "y" -o \
     "$CONFIG_MAC" = "y" -o "$CONFIG_HP300" = "y" ]; then
  if [ "$CONFIG_ATARI_MFPSER" = "y" -o "$CONFIG_ATARI_SCC" = "y" -o \
       "$CONFIG_ATARI_MIDI" = "y" -o "$CONFIG_MAC_SCC" = "y" -o \
       "$CONFIG_AMIGA_BUILTIN_SERIAL" = "y" -o \
       "$CONFIG_GVPIOEXT" = "y" -o "$CONFIG_MULTIFACE_III_TTY" = "y" -o \
       "$CONFIG_HPDCA" = "y" ]; then
    bool 'Support for serial port console' CONFIG_SERIAL_CONSOLE
  fi
fi
if [ "$CONFIG_VME" = "y" ]; then
  define_bool CONFIG_SERIAL_CONSOLE y
  if [ "$CONFIG_MVME16x" = "y" ]; then
    bool 'CD2401 support for MVME166/7 serial ports' CONFIG_SERIAL167
    bool 'SCC support for MVME162 serial ports' CONFIG_MVME162_SCC
  fi
  if [ "$CONFIG_BVME6000" = "y" ]; then
    bool 'SCC support for BVME6000 serial ports' CONFIG_BVME6000_SCC
  fi
fi
if [ "$CONFIG_APOLLO" = "y" ]; then
  bool 'Support for DN serial port (dummy)' CONFIG_SERIAL
  bool 'Support for serial port console' CONFIG_SERIAL_CONSOLE
fi 
bool 'Support for user serial device modules' CONFIG_USERIAL
bool 'Watchdog Timer Support'	CONFIG_WATCHDOG
if [ "$CONFIG_WATCHDOG" != "n" ]; then
  bool '   Disable watchdog shutdown on close' CONFIG_WATCHDOG_NOWAYOUT
  bool '   Software Watchdog' CONFIG_SOFT_WATCHDOG
fi
if [ "$CONFIG_ATARI" = "y" ]; then
  bool 'Enhanced Real Time Clock Support' CONFIG_RTC
fi
bool 'Unix98 PTY support' CONFIG_UNIX98_PTYS
if [ "$CONFIG_UNIX98_PTYS" = "y" ]; then
  int 'Maximum number of Unix98 PTYs in use (0-2048)' CONFIG_UNIX98_PTY_COUNT 256
fi

endmenu

mainmenu_option next_comment
comment 'Sound support'

tristate 'Sound support' CONFIG_SOUND
if [ "$CONFIG_SOUND" != "n" ]; then
  dep_tristate 'Amiga or Atari DMA sound support' CONFIG_DMASOUND $CONFIG_SOUND
fi
endmenu

source fs/Config.in

if [ "$CONFIG_VME" = "n" ]; then
  if [ "$CONFIG_HP300" = "y" ]; then
    bool 'Frame buffer support' CONFIG_FB
  else
    define_bool CONFIG_FB y
  fi
  mainmenu_option next_comment
  comment 'Console drivers'
  source drivers/video/Config.in
  endmenu
fi

mainmenu_option next_comment
comment 'Kernel hacking'

#bool 'Debug kmalloc/kfree' CONFIG_DEBUG_MALLOC
bool 'Magic SysRq key' CONFIG_MAGIC_SYSRQ
bool 'Remote debugging support' CONFIG_KGDB
endmenu