blob: 42b6fcfc30ef5ae7089cf76c051118957ff5ee8d [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
Geert Uytterhoeven3bd9e502011-12-29 20:00:31 +010011 bool "Use power LED as a heartbeat" if AMIGA || APOLLO || ATARI || Q40
12 default y if !AMIGA && !APOLLO && !ATARI && !Q40 && HP300
Greg Ungerer0e152d82011-06-20 15:49:09 +100013 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
Geert Uytterhoeven24ed6dd2011-10-25 21:14:10 +020027config NATFEAT
28 bool "ARAnyM emulator support"
29 depends on ATARI
30 help
31 This option enables support for ARAnyM native features, such as
32 access to a disk image as /dev/hda.
33
34config NFBLOCK
35 tristate "NatFeat block device support"
36 depends on BLOCK && NATFEAT
37 help
38 Say Y to include support for the ARAnyM NatFeat block device
39 which allows direct access to the hard drives without using
40 the hardware emulation.
41
42config NFCON
43 tristate "NatFeat console driver"
Joe Millenbach4f73bc42013-01-17 22:44:22 -080044 depends on TTY && NATFEAT
Geert Uytterhoeven24ed6dd2011-10-25 21:14:10 +020045 help
46 Say Y to include support for the ARAnyM NatFeat console driver
47 which allows the console output to be redirected to the stderr
48 output of ARAnyM.
49
50config NFETH
51 tristate "NatFeat Ethernet support"
52 depends on ETHERNET && NATFEAT
53 help
54 Say Y to include support for the ARAnyM NatFeat network device
55 which will emulate a regular ethernet device while presenting an
56 ethertap device to the host system.
57
Michael Schmitz736b24d2013-04-06 13:26:39 +130058config ATARI_ETHERNAT
59 bool "Atari EtherNAT Ethernet support"
60 depends on ATARI
61 ---help---
62 Say Y to include support for the EtherNAT network adapter for the
63 CT/60 extension port.
64
65 To compile the actual ethernet driver, choose Y or M for the SMC91X
66 option in the network device section; the module will be called smc91x.
67
Michael Schmitz1d87a8f2013-04-06 13:26:40 +130068config ATARI_ETHERNEC
69 bool "Atari EtherNEC Ethernet support"
70 depends on ATARI_ROM_ISA
71 ---help---
72 Say Y to include support for the EtherNEC network adapter for the
73 ROM port. The driver works by polling instead of interrupts, so it
74 is quite slow.
75
Masanari Iida1a84db52014-08-29 23:37:33 +090076 This driver also supports the ethernet part of the NetUSBee ROM
Michael Schmitz1d87a8f2013-04-06 13:26:40 +130077 port combined Ethernet/USB adapter.
78
79 To compile the actual ethernet driver, choose Y or M in for the NE2000
80 option in the network device section; the module will be called ne.
81
Greg Ungerer0e152d82011-06-20 15:49:09 +100082endmenu
83
84menu "Character devices"
85
Greg Ungerer0e152d82011-06-20 15:49:09 +100086config ATARI_DSP56K
Kees Cook112f8b12012-10-23 13:01:27 -070087 tristate "Atari DSP56k support"
88 depends on ATARI
Greg Ungerer0e152d82011-06-20 15:49:09 +100089 help
90 If you want to be able to use the DSP56001 in Falcons, say Y. This
91 driver is still experimental, and if you don't know what it is, or
92 if you don't have this processor, just say N.
93
94 To compile this driver as a module, choose M here.
95
96config AMIGA_BUILTIN_SERIAL
97 tristate "Amiga builtin serial support"
Geert Uytterhoevenfd4d4532014-09-09 11:54:50 +020098 depends on AMIGA && TTY
Greg Ungerer0e152d82011-06-20 15:49:09 +100099 help
100 If you want to use your Amiga's built-in serial port in Linux,
101 answer Y.
102
103 To compile this driver as a module, choose M here.
104
Greg Ungerer0e152d82011-06-20 15:49:09 +1000105config HPDCA
106 tristate "HP DCA serial support"
107 depends on DIO && SERIAL_8250
108 help
109 If you want to use the internal "DCA" serial ports on an HP300
110 machine, say Y here.
111
112config HPAPCI
113 tristate "HP APCI serial support"
Kees Cook112f8b12012-10-23 13:01:27 -0700114 depends on HP300 && SERIAL_8250
Greg Ungerer0e152d82011-06-20 15:49:09 +1000115 help
116 If you want to use the internal "APCI" serial ports on an HP400
117 machine, say Y here.
118
Greg Ungerer0e152d82011-06-20 15:49:09 +1000119config SERIAL_CONSOLE
120 bool "Support for serial port console"
Geert Uytterhoeven176f2932011-12-06 21:16:13 +0100121 depends on AMIGA_BUILTIN_SERIAL=y
Greg Ungerer0e152d82011-06-20 15:49:09 +1000122 ---help---
123 If you say Y here, it will be possible to use a serial port as the
124 system console (the system console is the device which receives all
125 kernel messages and warnings and which allows logins in single user
126 mode). This could be useful if some terminal or printer is connected
127 to that serial port.
128
129 Even if you say Y here, the currently visible virtual console
130 (/dev/tty0) will still be used as the system console by default, but
131 you can alter that using a kernel command line option such as
132 "console=ttyS1". (Try "man bootparam" or see the documentation of
Geert Uytterhoeven176f2932011-12-06 21:16:13 +0100133 your boot loader about how to pass options to the kernel at boot
134 time.)
Greg Ungerer0e152d82011-06-20 15:49:09 +1000135
Geert Uytterhoeven176f2932011-12-06 21:16:13 +0100136 If you don't have a graphical console and you say Y here, the
Greg Ungerer0e152d82011-06-20 15:49:09 +1000137 kernel will automatically use the first serial line, /dev/ttyS0, as
138 system console.
139
140 If unsure, say N.
141
142endmenu
143
144endif