2019-05-19 12:07:45 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2008-05-23 14:10:37 +00:00
|
|
|
menuconfig SOUND
|
2005-04-16 22:20:36 +00:00
|
|
|
tristate "Sound card support"
|
2008-05-23 14:10:37 +00:00
|
|
|
depends on HAS_IOMEM
|
2005-04-16 22:20:36 +00:00
|
|
|
help
|
|
|
|
If you have a sound card in your computer, i.e. if it can say more
|
2017-10-24 07:15:23 +00:00
|
|
|
than an occasional beep, say Y.
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-05-23 14:10:37 +00:00
|
|
|
if SOUND
|
|
|
|
|
2008-08-28 14:42:51 +00:00
|
|
|
config SOUND_OSS_CORE
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2009-08-06 09:14:26 +00:00
|
|
|
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.
|
|
|
|
|
tree-wide: fix assorted typos all over the place
That is "success", "unknown", "through", "performance", "[re|un]mapping"
, "access", "default", "reasonable", "[con]currently", "temperature"
, "channel", "[un]used", "application", "example","hierarchy", "therefore"
, "[over|under]flow", "contiguous", "threshold", "enough" and others.
Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2009-11-14 15:09:05 +00:00
|
|
|
If unsure, say Y.
|
2009-08-06 09:14:26 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
source "sound/oss/dmasound/Kconfig"
|
|
|
|
|
2017-05-16 08:42:04 +00:00
|
|
|
if !UML
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-05-23 14:10:37 +00:00
|
|
|
menuconfig SND
|
2005-04-16 22:20:36 +00:00
|
|
|
tristate "Advanced Linux Sound Architecture"
|
2005-05-24 13:22:40 +00:00
|
|
|
help
|
|
|
|
Say 'Y' or 'M' to enable ALSA (Advanced Linux Sound Architecture),
|
|
|
|
the new base sound system.
|
|
|
|
|
2005-05-24 15:27:00 +00:00
|
|
|
For more information, see <http://www.alsa-project.org/>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-05-23 14:10:37 +00:00
|
|
|
if SND
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
source "sound/core/Kconfig"
|
|
|
|
|
|
|
|
source "sound/drivers/Kconfig"
|
|
|
|
|
|
|
|
source "sound/isa/Kconfig"
|
|
|
|
|
|
|
|
source "sound/pci/Kconfig"
|
|
|
|
|
2015-02-17 20:46:37 +00:00
|
|
|
source "sound/hda/Kconfig"
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
source "sound/ppc/Kconfig"
|
|
|
|
|
2017-09-02 19:54:05 +00:00
|
|
|
source "sound/ac97/Kconfig"
|
|
|
|
|
2006-06-21 13:42:43 +00:00
|
|
|
source "sound/aoa/Kconfig"
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
source "sound/arm/Kconfig"
|
|
|
|
|
2009-02-05 12:11:01 +00:00
|
|
|
source "sound/atmel/Kconfig"
|
|
|
|
|
2007-07-23 13:52:42 +00:00
|
|
|
source "sound/spi/Kconfig"
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
source "sound/mips/Kconfig"
|
|
|
|
|
2007-05-18 12:26:59 +00:00
|
|
|
source "sound/sh/Kconfig"
|
|
|
|
|
2006-11-30 04:22:59 +00:00
|
|
|
# the following will depend on the order of config.
|
2005-04-16 22:20:36 +00:00
|
|
|
# here assuming USB is defined before ALSA
|
|
|
|
source "sound/usb/Kconfig"
|
|
|
|
|
2011-03-15 06:53:21 +00:00
|
|
|
source "sound/firewire/Kconfig"
|
|
|
|
|
2006-11-30 04:22:59 +00:00
|
|
|
# the following will depend on the order of config.
|
2005-04-16 22:20:36 +00:00
|
|
|
# here assuming PCMCIA is defined before ALSA
|
|
|
|
source "sound/pcmcia/Kconfig"
|
|
|
|
|
|
|
|
source "sound/sparc/Kconfig"
|
|
|
|
|
|
|
|
source "sound/parisc/Kconfig"
|
|
|
|
|
2006-10-06 16:33:55 +00:00
|
|
|
source "sound/soc/Kconfig"
|
|
|
|
|
2017-01-24 22:57:51 +00:00
|
|
|
source "sound/x86/Kconfig"
|
|
|
|
|
2017-06-09 12:57:51 +00:00
|
|
|
source "sound/synth/Kconfig"
|
|
|
|
|
2018-05-14 06:27:37 +00:00
|
|
|
source "sound/xen/Kconfig"
|
|
|
|
|
2021-03-02 16:47:02 +00:00
|
|
|
source "sound/virtio/Kconfig"
|
|
|
|
|
2008-05-23 14:10:37 +00:00
|
|
|
endif # SND
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2017-05-16 08:42:04 +00:00
|
|
|
endif # !UML
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-09-06 09:43:41 +00:00
|
|
|
endif # SOUND
|
|
|
|
|
|
|
|
# AC97_BUS is used from both sound and ucb1400
|
2006-12-12 18:32:29 +00:00
|
|
|
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.
|