blob: dbff9413646f25b2e3fc776b2d8953d5c7497ad3 [file] [log] [blame]
Greg Ungerer0e152d82011-06-20 15:49:09 +10001if MMU
2
3config ARCH_MAY_HAVE_PC_FDC
4 bool
5 depends on BROKEN && (Q40 || SUN3X)
6 default y
7
8menu "Platform devices"
9
10config HEARTBEAT
11 bool "Use power LED as a heartbeat" if AMIGA || APOLLO || ATARI || MAC ||Q40
12 default y if !AMIGA && !APOLLO && !ATARI && !MAC && !Q40 && HP300
13 help
14 Use the power-on LED on your machine as a load meter. The exact
15 behavior is platform-dependent, but normally the flash frequency is
16 a hyperbolic function of the 5-minute load average.
17
18# We have a dedicated heartbeat LED. :-)
19config PROC_HARDWARE
20 bool "/proc/hardware support"
21 help
22 Say Y here to support the /proc/hardware file, which gives you
23 access to information about the machine you're running on,
24 including the model, CPU, MMU, clock speed, BogoMIPS rating,
25 and memory size.
26
27endmenu
28
29menu "Character devices"
30
31config ATARI_MFPSER
32 tristate "Atari MFP serial support"
33 depends on ATARI
34 ---help---
35 If you like to use the MFP serial ports ("Modem1", "Serial1") under
36 Linux, say Y. The driver equally supports all kinds of MFP serial
37 ports and automatically detects whether Serial1 is available.
38
39 To compile this driver as a module, choose M here.
40
41 Note for Falcon users: You also have an MFP port, it's just not
42 wired to the outside... But you could use the port under Linux.
43
44config ATARI_MIDI
45 tristate "Atari MIDI serial support"
46 depends on ATARI
47 help
48 If you want to use your Atari's MIDI port in Linux, say Y.
49
50 To compile this driver as a module, choose M here.
51
52config ATARI_DSP56K
53 tristate "Atari DSP56k support (EXPERIMENTAL)"
54 depends on ATARI && EXPERIMENTAL
55 help
56 If you want to be able to use the DSP56001 in Falcons, say Y. This
57 driver is still experimental, and if you don't know what it is, or
58 if you don't have this processor, just say N.
59
60 To compile this driver as a module, choose M here.
61
62config AMIGA_BUILTIN_SERIAL
63 tristate "Amiga builtin serial support"
64 depends on AMIGA
65 help
66 If you want to use your Amiga's built-in serial port in Linux,
67 answer Y.
68
69 To compile this driver as a module, choose M here.
70
71config MULTIFACE_III_TTY
72 tristate "Multiface Card III serial support"
73 depends on AMIGA
74 help
75 If you want to use a Multiface III card's serial port in Linux,
76 answer Y.
77
78 To compile this driver as a module, choose M here.
79
Greg Ungerer0e152d82011-06-20 15:49:09 +100080config HPDCA
81 tristate "HP DCA serial support"
82 depends on DIO && SERIAL_8250
83 help
84 If you want to use the internal "DCA" serial ports on an HP300
85 machine, say Y here.
86
87config HPAPCI
88 tristate "HP APCI serial support"
89 depends on HP300 && SERIAL_8250 && EXPERIMENTAL
90 help
91 If you want to use the internal "APCI" serial ports on an HP400
92 machine, say Y here.
93
94config MVME147_SCC
95 bool "SCC support for MVME147 serial ports"
96 depends on MVME147 && BROKEN
97 help
98 This is the driver for the serial ports on the Motorola MVME147
99 boards. Everyone using one of these boards should say Y here.
100
101config MVME162_SCC
102 bool "SCC support for MVME162 serial ports"
103 depends on MVME16x && BROKEN
104 help
105 This is the driver for the serial ports on the Motorola MVME162 and
106 172 boards. Everyone using one of these boards should say Y here.
107
108config BVME6000_SCC
109 bool "SCC support for BVME6000 serial ports"
110 depends on BVME6000 && BROKEN
111 help
112 This is the driver for the serial ports on the BVME4000 and BVME6000
113 boards from BVM Ltd. Everyone using one of these boards should say
114 Y here.
115
116config DN_SERIAL
117 bool "Support for DN serial port (dummy)"
118 depends on APOLLO
119
120config SERIAL_CONSOLE
121 bool "Support for serial port console"
Paul Bolle95e82742011-10-18 10:10:07 +0200122 depends on (AMIGA || ATARI || SUN3 || SUN3X || VME || APOLLO) && (ATARI_MFPSER=y || ATARI_MIDI=y || AMIGA_BUILTIN_SERIAL=y || MULTIFACE_III_TTY=y || SERIAL=y || MVME147_SCC || SERIAL167 || MVME162_SCC || BVME6000_SCC || DN_SERIAL)
Greg Ungerer0e152d82011-06-20 15:49:09 +1000123 ---help---
124 If you say Y here, it will be possible to use a serial port as the
125 system console (the system console is the device which receives all
126 kernel messages and warnings and which allows logins in single user
127 mode). This could be useful if some terminal or printer is connected
128 to that serial port.
129
130 Even if you say Y here, the currently visible virtual console
131 (/dev/tty0) will still be used as the system console by default, but
132 you can alter that using a kernel command line option such as
133 "console=ttyS1". (Try "man bootparam" or see the documentation of
134 your boot loader (lilo or loadlin) about how to pass options to the
135 kernel at boot time.)
136
137 If you don't have a VGA card installed and you say Y here, the
138 kernel will automatically use the first serial line, /dev/ttyS0, as
139 system console.
140
141 If unsure, say N.
142
143endmenu
144
145endif