Config.in 1.3 KB

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