Kconfig.devices 4.3 KB

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