blob: e6e3efac184074c2b28b3c7349fa5a9685118202 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Greg Ungerer0e152d82011-06-20 15:49:09 +10002if MMU
3
4config ARCH_MAY_HAVE_PC_FDC
5 bool
6 depends on BROKEN && (Q40 || SUN3X)
7 default y
8
9menu "Platform devices"
10
11config HEARTBEAT
Geert Uytterhoeven3bd9e502011-12-29 20:00:31 +010012 bool "Use power LED as a heartbeat" if AMIGA || APOLLO || ATARI || Q40
13 default y if !AMIGA && !APOLLO && !ATARI && !Q40 && HP300
Greg Ungerer0e152d82011-06-20 15:49:09 +100014 help
15 Use the power-on LED on your machine as a load meter. The exact
16 behavior is platform-dependent, but normally the flash frequency is
17 a hyperbolic function of the 5-minute load average.
18
19# We have a dedicated heartbeat LED. :-)
20config PROC_HARDWARE
21 bool "/proc/hardware support"
Randy Dunlap1e5b5df2023-02-08 17:08:25 -080022 depends on PROC_FS
Greg Ungerer0e152d82011-06-20 15:49:09 +100023 help
24 Say Y here to support the /proc/hardware file, which gives you
25 access to information about the machine you're running on,
26 including the model, CPU, MMU, clock speed, BogoMIPS rating,
27 and memory size.
28
Geert Uytterhoeven24ed6dd2011-10-25 21:14:10 +020029config NATFEAT
30 bool "ARAnyM emulator support"
31 depends on ATARI
32 help
33 This option enables support for ARAnyM native features, such as
34 access to a disk image as /dev/hda.
35
36config NFBLOCK
37 tristate "NatFeat block device support"
38 depends on BLOCK && NATFEAT
39 help
40 Say Y to include support for the ARAnyM NatFeat block device
41 which allows direct access to the hard drives without using
42 the hardware emulation.
43
44config NFCON
45 tristate "NatFeat console driver"
Joe Millenbach4f73bc42013-01-17 22:44:22 -080046 depends on TTY && NATFEAT
Geert Uytterhoeven24ed6dd2011-10-25 21:14:10 +020047 help
48 Say Y to include support for the ARAnyM NatFeat console driver
49 which allows the console output to be redirected to the stderr
50 output of ARAnyM.
51
52config NFETH
53 tristate "NatFeat Ethernet support"
54 depends on ETHERNET && NATFEAT
55 help
56 Say Y to include support for the ARAnyM NatFeat network device
57 which will emulate a regular ethernet device while presenting an
58 ethertap device to the host system.
59
Michael Schmitz736b24d2013-04-06 13:26:39 +130060config ATARI_ETHERNAT
61 bool "Atari EtherNAT Ethernet support"
62 depends on ATARI
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090063 help
Michael Schmitz736b24d2013-04-06 13:26:39 +130064 Say Y to include support for the EtherNAT network adapter for the
65 CT/60 extension port.
66
67 To compile the actual ethernet driver, choose Y or M for the SMC91X
68 option in the network device section; the module will be called smc91x.
69
Michael Schmitz1d87a8f2013-04-06 13:26:40 +130070config ATARI_ETHERNEC
71 bool "Atari EtherNEC Ethernet support"
72 depends on ATARI_ROM_ISA
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090073 help
Michael Schmitz1d87a8f2013-04-06 13:26:40 +130074 Say Y to include support for the EtherNEC network adapter for the
75 ROM port. The driver works by polling instead of interrupts, so it
76 is quite slow.
77
Masanari Iida1a84db52014-08-29 23:37:33 +090078 This driver also supports the ethernet part of the NetUSBee ROM
Michael Schmitz1d87a8f2013-04-06 13:26:40 +130079 port combined Ethernet/USB adapter.
80
81 To compile the actual ethernet driver, choose Y or M in for the NE2000
82 option in the network device section; the module will be called ne.
83
Greg Ungerer0e152d82011-06-20 15:49:09 +100084endmenu
85
86menu "Character devices"
87
Greg Ungerer0e152d82011-06-20 15:49:09 +100088config ATARI_DSP56K
Kees Cook112f8b12012-10-23 13:01:27 -070089 tristate "Atari DSP56k support"
90 depends on ATARI
Greg Ungerer0e152d82011-06-20 15:49:09 +100091 help
92 If you want to be able to use the DSP56001 in Falcons, say Y. This
93 driver is still experimental, and if you don't know what it is, or
94 if you don't have this processor, just say N.
95
96 To compile this driver as a module, choose M here.
97
98config AMIGA_BUILTIN_SERIAL
99 tristate "Amiga builtin serial support"
Geert Uytterhoevenfd4d4532014-09-09 11:54:50 +0200100 depends on AMIGA && TTY
Greg Ungerer0e152d82011-06-20 15:49:09 +1000101 help
102 If you want to use your Amiga's built-in serial port in Linux,
103 answer Y.
104
105 To compile this driver as a module, choose M here.
106
Greg Ungerer0e152d82011-06-20 15:49:09 +1000107config HPDCA
108 tristate "HP DCA serial support"
109 depends on DIO && SERIAL_8250
110 help
111 If you want to use the internal "DCA" serial ports on an HP300
112 machine, say Y here.
113
114config HPAPCI
115 tristate "HP APCI serial support"
Kees Cook112f8b12012-10-23 13:01:27 -0700116 depends on HP300 && SERIAL_8250
Greg Ungerer0e152d82011-06-20 15:49:09 +1000117 help
118 If you want to use the internal "APCI" serial ports on an HP400
119 machine, say Y here.
120
Greg Ungerer0e152d82011-06-20 15:49:09 +1000121config SERIAL_CONSOLE
122 bool "Support for serial port console"
Geert Uytterhoeven176f2932011-12-06 21:16:13 +0100123 depends on AMIGA_BUILTIN_SERIAL=y
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900124 help
Greg Ungerer0e152d82011-06-20 15:49:09 +1000125 If you say Y here, it will be possible to use a serial port as the
126 system console (the system console is the device which receives all
127 kernel messages and warnings and which allows logins in single user
128 mode). This could be useful if some terminal or printer is connected
129 to that serial port.
130
131 Even if you say Y here, the currently visible virtual console
132 (/dev/tty0) will still be used as the system console by default, but
133 you can alter that using a kernel command line option such as
134 "console=ttyS1". (Try "man bootparam" or see the documentation of
Geert Uytterhoeven176f2932011-12-06 21:16:13 +0100135 your boot loader about how to pass options to the kernel at boot
136 time.)
Greg Ungerer0e152d82011-06-20 15:49:09 +1000137
Geert Uytterhoeven176f2932011-12-06 21:16:13 +0100138 If you don't have a graphical console and you say Y here, the
Greg Ungerer0e152d82011-06-20 15:49:09 +1000139 kernel will automatically use the first serial line, /dev/ttyS0, as
140 system console.
141
142 If unsure, say N.
143
144endmenu
145
146endif