Kconfig 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. # ALSA generic drivers
  2. menu "Generic devices"
  3. depends on SND!=n
  4. config SND_MPU401_UART
  5. tristate
  6. select SND_TIMER
  7. select SND_RAWMIDI
  8. config SND_OPL3_LIB
  9. tristate
  10. select SND_TIMER
  11. select SND_HWDEP
  12. config SND_OPL4_LIB
  13. tristate
  14. select SND_TIMER
  15. select SND_HWDEP
  16. config SND_VX_LIB
  17. tristate
  18. select SND_HWDEP
  19. select SND_PCM
  20. config SND_DUMMY
  21. tristate "Dummy (/dev/null) soundcard"
  22. depends on SND
  23. select SND_PCM
  24. help
  25. Say Y here to include the dummy driver. This driver does
  26. nothing, but emulates various mixer controls and PCM devices.
  27. You don't need this unless you're testing the hardware support
  28. of programs using the ALSA API.
  29. To compile this driver as a module, choose M here: the module
  30. will be called snd-dummy.
  31. config SND_VIRMIDI
  32. tristate "Virtual MIDI soundcard"
  33. depends on SND_SEQUENCER
  34. select SND_TIMER
  35. select SND_RAWMIDI
  36. help
  37. Say Y here to include the virtual MIDI driver. This driver
  38. allows to connect applications using raw MIDI devices to
  39. sequencer clients.
  40. If you don't know what MIDI is, say N here.
  41. To compile this driver as a module, choose M here: the module
  42. will be called snd-virmidi.
  43. config SND_MTPAV
  44. tristate "MOTU MidiTimePiece AV multiport MIDI"
  45. depends on SND
  46. select SND_TIMER
  47. select SND_RAWMIDI
  48. help
  49. To use a MOTU MidiTimePiece AV multiport MIDI adapter
  50. connected to the parallel port, say Y here and make sure that
  51. the standard parallel port driver isn't used for the port.
  52. To compile this driver as a module, choose M here: the module
  53. will be called snd-mtpav.
  54. config SND_SERIAL_U16550
  55. tristate "UART16550 serial MIDI driver"
  56. depends on SND
  57. select SND_TIMER
  58. select SND_RAWMIDI
  59. help
  60. To include support for MIDI serial port interfaces, say Y here
  61. and read <file:Documentation/sound/alsa/serial-u16550.txt>.
  62. This driver works with serial UARTs 16550 and better.
  63. This driver accesses the serial port hardware directly, so
  64. make sure that the standard serial driver isn't used or
  65. deactivated with setserial before loading this driver.
  66. To compile this driver as a module, choose M here: the module
  67. will be called snd-serial-u16550.
  68. config SND_MPU401
  69. tristate "Generic MPU-401 UART driver"
  70. depends on SND
  71. select SND_MPU401_UART
  72. help
  73. Say Y here to include support for MIDI ports compatible with
  74. the Roland MPU-401 interface in UART mode.
  75. To compile this driver as a module, choose M here: the module
  76. will be called snd-mpu401.
  77. endmenu