Blame view

sound/Kconfig 2.76 KB
ec8f24b7f   Thomas Gleixner   treewide: Add SPD...
1
  # SPDX-License-Identifier: GPL-2.0-only
89fe51179   Takashi Iwai   sound: Convert to...
2
  menuconfig SOUND
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3
  	tristate "Sound card support"
89fe51179   Takashi Iwai   sound: Convert to...
4
  	depends on HAS_IOMEM
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5
6
  	help
  	  If you have a sound card in your computer, i.e. if it can say more
727dede0b   Takashi Iwai   sound: Retire OSS
7
  	  than an occasional beep, say Y.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8

89fe51179   Takashi Iwai   sound: Convert to...
9
  if SOUND
d886e87cb   Tejun Heo   sound: make OSS s...
10
11
12
  config SOUND_OSS_CORE
  	bool
  	default n
93fe4483e   Tejun Heo   sound: make OSS d...
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  config SOUND_OSS_CORE_PRECLAIM
  	bool "Preclaim OSS device numbers"
  	depends on SOUND_OSS_CORE
  	default y
  	help
  	  With this option enabled, the kernel will claim all OSS device
  	  numbers if any OSS support (native or emulation) is enabled
  	  whether the respective module is loaded or not and try to load the
  	  appropriate module using sound-slot/service-* and char-major-*
  	  module aliases when one of the device numbers is opened.  With
  	  this option disabled, kernel will only claim actually in-use
  	  device numbers and opening a missing device will generate only the
  	  standard char-major-* aliases.
  
  	  The only visible difference is use of additional module aliases
  	  and whether OSS sound devices appear multiple times in
  	  /proc/devices.  sound-slot/service-* module aliases are scheduled
  	  to be removed (ie. PRECLAIM won't be available) and this option is
  	  to make the transition easier.  This option can be overridden
  	  during boot using the kernel parameter soundcore.preclaim_oss.
  
  	  Disabling this allows alternative OSS implementations.
af901ca18   AndrĂ© Goddard Rosa   tree-wide: fix as...
35
  	  If unsure, say Y.
93fe4483e   Tejun Heo   sound: make OSS d...
36

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
37
  source "sound/oss/dmasound/Kconfig"
29b59b354   Takashi Iwai   ALSA: Enable buil...
38
  if !UML
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
39

89fe51179   Takashi Iwai   sound: Convert to...
40
  menuconfig SND
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
41
  	tristate "Advanced Linux Sound Architecture"
23854c300   Takashi Iwai   [ALSA] Add commen...
42
43
44
  	help
  	  Say 'Y' or 'M' to enable ALSA (Advanced Linux Sound Architecture),
  	  the new base sound system.
9baf6507f   Takashi Iwai   [ALSA] Use standa...
45
  	  For more information, see <http://www.alsa-project.org/>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
46

89fe51179   Takashi Iwai   sound: Convert to...
47
  if SND
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
48
49
50
51
52
53
54
  source "sound/core/Kconfig"
  
  source "sound/drivers/Kconfig"
  
  source "sound/isa/Kconfig"
  
  source "sound/pci/Kconfig"
e3d280fc6   Takashi Iwai   ALSA: hda - Make ...
55
  source "sound/hda/Kconfig"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
56
  source "sound/ppc/Kconfig"
8d4334410   Robert Jarzmik   ASoC: add new ac9...
57
  source "sound/ac97/Kconfig"
f3d9478b2   Johannes Berg   [ALSA] snd-aoa: a...
58
  source "sound/aoa/Kconfig"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
59
  source "sound/arm/Kconfig"
6c7578bb0   Hans-Christian Egtvedt   ALSA: Add Atmel A...
60
  source "sound/atmel/Kconfig"
3b0a899ca   Hans-Christian Egtvedt   [ALSA] Add SPI de...
61
  source "sound/spi/Kconfig"
3b0a899ca   Hans-Christian Egtvedt   [ALSA] Add SPI de...
62

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
63
  source "sound/mips/Kconfig"
198de43d7   Adrian McMenamin   [ALSA] Add ALSA s...
64
  source "sound/sh/Kconfig"
3cb2fccc5   Matt LaPlante   Fix misc Kconfig ...
65
  # the following will depend on the order of config.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
66
67
  # here assuming USB is defined before ALSA
  source "sound/usb/Kconfig"
31ef9134e   Clemens Ladisch   ALSA: add LaCie F...
68
  source "sound/firewire/Kconfig"
3cb2fccc5   Matt LaPlante   Fix misc Kconfig ...
69
  # the following will depend on the order of config.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
70
71
72
73
74
75
  # here assuming PCMCIA is defined before ALSA
  source "sound/pcmcia/Kconfig"
  
  source "sound/sparc/Kconfig"
  
  source "sound/parisc/Kconfig"
a3288176d   Liam Girdwood   [ALSA] ASoC: Buil...
76
  source "sound/soc/Kconfig"
287599cf2   Jerome Anand   ALSA: add Intel H...
77
  source "sound/x86/Kconfig"
827211557   Takashi Iwai   ALSA: synth: Sele...
78
  source "sound/synth/Kconfig"
cc3196ae1   Oleksandr Andrushchenko   ALSA: xen-front: ...
79
  source "sound/xen/Kconfig"
89fe51179   Takashi Iwai   sound: Convert to...
80
  endif # SND
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
81

29b59b354   Takashi Iwai   ALSA: Enable buil...
82
  endif # !UML
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
83

8a656496b   Takashi Iwai   Fix CONFIG_AC97_B...
84
85
86
  endif # SOUND
  
  # AC97_BUS is used from both sound and ucb1400
e1036502e   Nicolas Pitre   [PATCH] remove co...
87
88
89
90
91
92
93
  config AC97_BUS
  	tristate
  	help
  	  This is used to avoid config and link hard dependencies between the
  	  sound subsystem and other function drivers completely unrelated to
  	  sound although they're sharing the AC97 bus. Concerned drivers
  	  should "select" this.