Kconfig.devices 4.6 KB

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