The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / alsa-lib / Config.in
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         # Even though some parts of alsa-lib use threads only when
8         # available, some PCM plugins use them unconditionally. Since
9         # the usage of alsa-lib on no-thread systems is pretty
10         # unlikely, just require thread support globally for alsa-lib.
11         depends on BR2_TOOLCHAIN_HAS_THREADS
12         help
13           The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI
14           functionality to the Linux operating system.
15
16           http://www.alsa-project.org/
17
18 comment "alsa-lib needs a toolchain w/ threads"
19         depends on !BR2_TOOLCHAIN_HAS_THREADS
20
21 if BR2_PACKAGE_ALSA_LIB
22
23 config BR2_PACKAGE_ALSA_LIB_PYTHON
24         bool "Python support for alsa-lib"
25         depends on BR2_PACKAGE_PYTHON
26         help
27           Add python support for alsa-lib.
28           Python will be built and libpython will be installed
29           in the target directory
30           http://www.alsa-project.org/
31
32 menu "ALSA lib selection"
33
34 config BR2_PACKAGE_ALSA_LIB_DEVDIR
35         string "directory with ALSA device files"
36         default "/dev/snd"
37
38 config BR2_PACKAGE_ALSA_LIB_PCM_PLUGINS
39         string "built PCM plugins"
40         default "all" if BR2_USE_MMU
41         default "copy linear route mulaw alaw adpcm rate plug multi file null empty share meter hooks lfloat ladspa dmix dshare dsnoop asym iec958 softvol extplug ioplug mmap_emul" if !BR2_USE_MMU
42
43 config BR2_PACKAGE_ALSA_LIB_CTL_PLUGINS
44         string "built control plugins"
45         default "all"
46
47 config BR2_PACKAGE_ALSA_LIB_ALOAD
48         bool "aload"
49         default y
50
51 config BR2_PACKAGE_ALSA_LIB_MIXER
52         bool "mixer"
53         default y
54
55 config BR2_PACKAGE_ALSA_LIB_PCM
56         bool "pcm"
57         default y
58
59 config BR2_PACKAGE_ALSA_LIB_RAWMIDI
60         bool "rawmidi"
61         default y
62
63 config BR2_PACKAGE_ALSA_LIB_HWDEP
64         bool "hwdep"
65         default y
66
67 config BR2_PACKAGE_ALSA_LIB_SEQ
68         bool "seq"
69         default y
70
71 config BR2_PACKAGE_ALSA_LIB_ALISP
72         bool "alisp"
73         depends on BR2_USE_MMU
74         default y
75
76 config BR2_PACKAGE_ALSA_LIB_OLD_SYMBOLS
77         bool "old-symbols"
78         default y
79
80 endmenu
81
82 endif