1config BR2_PACKAGE_TINYALSA 2 bool "tinyalsa" 3 depends on !BR2_STATIC_LIBS 4 help 5 a small library to interface with ALSA in the Linux kernel 6 7 The aims are: 8 9 - Provide a basic pcm and mixer API 10 - If it's not absolutely needed, don't add it to the API 11 - Avoid supporting complex and unnecessary operations that 12 could be dealt with at a higher level 13 14 https://github.com/tinyalsa/tinyalsa 15 16if BR2_PACKAGE_TINYALSA 17 18config BR2_PACKAGE_TINYALSA_TOOLS 19 bool "tinyalsa tools" 20 help 21 Build utility tools (tinyplay, tinycap, tinymix, tinypcminfo) 22 23endif #BR2_PACKAGE_TINYALSA 24 25comment "tinyalsa needs a toolchain w/ dynamic library" 26 depends on BR2_STATIC_LIBS 27