Config.in 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. config BR2_PACKAGE_ALSA_LIB
  2. bool "alsa-lib"
  3. # Temporary until
  4. # https://bugtrack.alsa-project.org/alsa-bug/view.php?id=4913
  5. # is fixed
  6. select BR2_PACKAGE_ALSA_LIB_PCM
  7. help
  8. The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI
  9. functionality to the Linux operating system.
  10. http://www.alsa-project.org/
  11. config BR2_PACKAGE_ALSA_LIB_PYTHON
  12. bool "Python support for alsa-lib"
  13. depends on BR2_PACKAGE_ALSA_LIB
  14. depends on BR2_PACKAGE_PYTHON
  15. help
  16. Add python support for alsa-lib.
  17. Python will be built and libpython will be installed
  18. in the target directory
  19. http://www.alsa-project.org/
  20. if BR2_PACKAGE_ALSA_LIB
  21. menu "ALSA lib selection"
  22. config BR2_PACKAGE_ALSA_LIB_DEVDIR
  23. string "directory with ALSA device files"
  24. default "/dev/snd"
  25. config BR2_PACKAGE_ALSA_LIB_PCM_PLUGINS
  26. string "built PCM plugins"
  27. default "all"
  28. config BR2_PACKAGE_ALSA_LIB_CTL_PLUGINS
  29. string "built control plugins"
  30. default "all"
  31. config BR2_PACKAGE_ALSA_LIB_ALOAD
  32. bool "aload"
  33. default y
  34. config BR2_PACKAGE_ALSA_LIB_MIXER
  35. bool "mixer"
  36. default y
  37. config BR2_PACKAGE_ALSA_LIB_PCM
  38. bool "pcm"
  39. default y
  40. config BR2_PACKAGE_ALSA_LIB_RAWMIDI
  41. bool "rawmidi"
  42. default y
  43. config BR2_PACKAGE_ALSA_LIB_HWDEP
  44. bool "hwdep"
  45. default y
  46. config BR2_PACKAGE_ALSA_LIB_SEQ
  47. bool "seq"
  48. default y
  49. config BR2_PACKAGE_ALSA_LIB_ALISP
  50. bool "alisp"
  51. default y
  52. config BR2_PACKAGE_ALSA_LIB_OLD_SYMBOLS
  53. bool "old-symbols"
  54. default y
  55. endmenu
  56. endif