Kconfig 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. # ALSA soundcard-configuration
  2. config SND_TIMER
  3. tristate
  4. depends on SND
  5. config SND_PCM
  6. tristate
  7. select SND_TIMER
  8. depends on SND
  9. config SND_HWDEP
  10. tristate
  11. depends on SND
  12. config SND_RAWMIDI
  13. tristate
  14. depends on SND
  15. config SND_SEQUENCER
  16. tristate "Sequencer support"
  17. depends on SND
  18. select SND_TIMER
  19. help
  20. Say Y or M to enable MIDI sequencer and router support. This
  21. feature allows routing and enqueueing of MIDI events. Events
  22. can be processed at a given time.
  23. Many programs require this feature, so you should enable it
  24. unless you know what you're doing.
  25. config SND_SEQ_DUMMY
  26. tristate "Sequencer dummy client"
  27. depends on SND_SEQUENCER
  28. help
  29. Say Y here to enable the dummy sequencer client. This client
  30. is a simple MIDI-through client: all normal input events are
  31. redirected to the output port immediately.
  32. You don't need this unless you want to connect many MIDI
  33. devices or applications together.
  34. To compile this driver as a module, choose M here: the module
  35. will be called snd-seq-dummy.
  36. config SND_OSSEMUL
  37. bool
  38. depends on SND
  39. config SND_MIXER_OSS
  40. tristate "OSS Mixer API"
  41. depends on SND
  42. select SND_OSSEMUL
  43. help
  44. To enable OSS mixer API emulation (/dev/mixer*), say Y here
  45. and read <file:Documentation/sound/alsa/OSS-Emulation.txt>.
  46. Many programs still use the OSS API, so say Y.
  47. To compile this driver as a module, choose M here: the module
  48. will be called snd-mixer-oss.
  49. config SND_PCM_OSS
  50. tristate "OSS PCM (digital audio) API"
  51. depends on SND
  52. select SND_OSSEMUL
  53. select SND_PCM
  54. help
  55. To enable OSS digital audio (PCM) emulation (/dev/dsp*), say Y
  56. here and read <file:Documentation/sound/alsa/OSS-Emulation.txt>.
  57. Many programs still use the OSS API, so say Y.
  58. To compile this driver as a module, choose M here: the module
  59. will be called snd-pcm-oss.
  60. config SND_SEQUENCER_OSS
  61. bool "OSS Sequencer API"
  62. depends on SND && SND_SEQUENCER
  63. select SND_OSSEMUL
  64. help
  65. Say Y here to enable OSS sequencer emulation (both
  66. /dev/sequencer and /dev/music interfaces).
  67. Many programs still use the OSS API, so say Y.
  68. To compile this driver as a module, choose M here: the module
  69. will be called snd-seq-oss.
  70. config SND_RTCTIMER
  71. tristate "RTC Timer support"
  72. depends on SND && RTC
  73. select SND_TIMER
  74. help
  75. Say Y here to enable RTC timer support for ALSA. ALSA uses
  76. the RTC timer as a precise timing source and maps the RTC
  77. timer to ALSA's timer interface. The ALSA sequencer code also
  78. can use this timing source.
  79. To compile this driver as a module, choose M here: the module
  80. will be called snd-rtctimer.
  81. config SND_VERBOSE_PRINTK
  82. bool "Verbose printk"
  83. depends on SND
  84. help
  85. Say Y here to enable verbose log messages. These messages
  86. will help to identify source file and position containing
  87. printed messages.
  88. You don't need this unless you're debugging ALSA.
  89. config SND_DEBUG
  90. bool "Debug"
  91. depends on SND
  92. help
  93. Say Y here to enable ALSA debug code.
  94. config SND_DEBUG_MEMORY
  95. bool "Debug memory"
  96. depends on SND_DEBUG
  97. help
  98. Say Y here to enable debugging of memory allocations.
  99. config SND_DEBUG_DETECT
  100. bool "Debug detection"
  101. depends on SND_DEBUG
  102. help
  103. Say Y here to enable extra-verbose log messages printed when
  104. detecting devices.
  105. config SND_GENERIC_PM
  106. bool
  107. depends on SND