Kconfig.devices 4.4 KB

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