Kconfig.devices 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. # SPDX-License-Identifier: GPL-2.0
  2. if MMU
  3. config ARCH_MAY_HAVE_PC_FDC
  4. bool
  5. depends on BROKEN && (Q40 || SUN3X)
  6. default y
  7. menu "Platform devices"
  8. config HEARTBEAT
  9. bool "Use power LED as a heartbeat" if AMIGA || APOLLO || ATARI || Q40
  10. default y if !AMIGA && !APOLLO && !ATARI && !Q40 && HP300
  11. help
  12. Use the power-on LED on your machine as a load meter. The exact
  13. behavior is platform-dependent, but normally the flash frequency is
  14. a hyperbolic function of the 5-minute load average.
  15. # We have a dedicated heartbeat LED. :-)
  16. config PROC_HARDWARE
  17. bool "/proc/hardware support"
  18. help
  19. Say Y here to support the /proc/hardware file, which gives you
  20. access to information about the machine you're running on,
  21. including the model, CPU, MMU, clock speed, BogoMIPS rating,
  22. and memory size.
  23. config NATFEAT
  24. bool "ARAnyM emulator support"
  25. depends on ATARI
  26. help
  27. This option enables support for ARAnyM native features, such as
  28. access to a disk image as /dev/hda.
  29. config NFBLOCK
  30. tristate "NatFeat block device support"
  31. depends on BLOCK && NATFEAT
  32. help
  33. Say Y to include support for the ARAnyM NatFeat block device
  34. which allows direct access to the hard drives without using
  35. the hardware emulation.
  36. config NFCON
  37. tristate "NatFeat console driver"
  38. depends on TTY && NATFEAT
  39. help
  40. Say Y to include support for the ARAnyM NatFeat console driver
  41. which allows the console output to be redirected to the stderr
  42. output of ARAnyM.
  43. config NFETH
  44. tristate "NatFeat Ethernet support"
  45. depends on ETHERNET && NATFEAT
  46. help
  47. Say Y to include support for the ARAnyM NatFeat network device
  48. which will emulate a regular ethernet device while presenting an
  49. ethertap device to the host system.
  50. config ATARI_ETHERNAT
  51. bool "Atari EtherNAT Ethernet support"
  52. depends on ATARI
  53. help
  54. Say Y to include support for the EtherNAT network adapter for the
  55. CT/60 extension port.
  56. To compile the actual ethernet driver, choose Y or M for the SMC91X
  57. option in the network device section; the module will be called smc91x.
  58. config ATARI_ETHERNEC
  59. bool "Atari EtherNEC Ethernet support"
  60. depends on ATARI_ROM_ISA
  61. help
  62. Say Y to include support for the EtherNEC network adapter for the
  63. ROM port. The driver works by polling instead of interrupts, so it
  64. is quite slow.
  65. This driver also supports the ethernet part of the NetUSBee ROM
  66. port combined Ethernet/USB adapter.
  67. To compile the actual ethernet driver, choose Y or M in for the NE2000
  68. option in the network device section; the module will be called ne.
  69. endmenu
  70. menu "Character devices"
  71. config ATARI_DSP56K
  72. tristate "Atari DSP56k support"
  73. depends on ATARI
  74. help
  75. If you want to be able to use the DSP56001 in Falcons, say Y. This
  76. driver is still experimental, and if you don't know what it is, or
  77. if you don't have this processor, just say N.
  78. To compile this driver as a module, choose M here.
  79. config AMIGA_BUILTIN_SERIAL
  80. tristate "Amiga builtin serial support"
  81. depends on AMIGA && TTY
  82. help
  83. If you want to use your Amiga's built-in serial port in Linux,
  84. answer Y.
  85. To compile this driver as a module, choose M here.
  86. config HPDCA
  87. tristate "HP DCA serial support"
  88. depends on DIO && SERIAL_8250
  89. help
  90. If you want to use the internal "DCA" serial ports on an HP300
  91. machine, say Y here.
  92. config HPAPCI
  93. tristate "HP APCI serial support"
  94. depends on HP300 && SERIAL_8250
  95. help
  96. If you want to use the internal "APCI" serial ports on an HP400
  97. machine, say Y here.
  98. config SERIAL_CONSOLE
  99. bool "Support for serial port console"
  100. depends on AMIGA_BUILTIN_SERIAL=y
  101. help
  102. If you say Y here, it will be possible to use a serial port as the
  103. system console (the system console is the device which receives all
  104. kernel messages and warnings and which allows logins in single user
  105. mode). This could be useful if some terminal or printer is connected
  106. to that serial port.
  107. Even if you say Y here, the currently visible virtual console
  108. (/dev/tty0) will still be used as the system console by default, but
  109. you can alter that using a kernel command line option such as
  110. "console=ttyS1". (Try "man bootparam" or see the documentation of
  111. your boot loader about how to pass options to the kernel at boot
  112. time.)
  113. If you don't have a graphical console and you say Y here, the
  114. kernel will automatically use the first serial line, /dev/ttyS0, as
  115. system console.
  116. If unsure, say N.
  117. endmenu
  118. endif