blob: 4247406160e7ef7c5684943a9c3065e1ec73eb9a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001# sound/Config.in
2#
3
4menu "Sound"
Martin Schwidefskye25df122007-05-10 15:45:57 +02005 depends on HAS_IOMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7config SOUND
8 tristate "Sound card support"
9 help
10 If you have a sound card in your computer, i.e. if it can say more
11 than an occasional beep, say Y. Be sure to have all the information
12 about your sound card and its configuration down (I/O port,
13 interrupt and DMA channel), because you will be asked for it.
14
15 You want to read the Sound-HOWTO, available from
16 <http://www.tldp.org/docs.html#howto>. General information about
17 the modular sound system is contained in the files
18 <file:Documentation/sound/oss/Introduction>. The file
19 <file:Documentation/sound/oss/README.OSS> contains some slightly
20 outdated but still useful information as well. Newer sound
21 driver documentation is found in <file:Documentation/sound/alsa/*>.
22
23 If you have a PnP sound card and you want to configure it at boot
24 time using the ISA PnP tools (read
25 <http://www.roestock.demon.co.uk/isapnptools/>), then you need to
26 compile the sound card support as a module and load that module
27 after the PnP configuration is finished. To do this, choose M here
28 and read <file:Documentation/sound/oss/README.modules>; the module
29 will be called soundcore.
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031source "sound/oss/dmasound/Kconfig"
32
33if !M68K
34
35menu "Advanced Linux Sound Architecture"
36 depends on SOUND!=n
37
38config SND
39 tristate "Advanced Linux Sound Architecture"
40 depends on SOUND
Takashi Iwai23854c32005-05-24 15:22:40 +020041 help
42 Say 'Y' or 'M' to enable ALSA (Advanced Linux Sound Architecture),
43 the new base sound system.
44
Takashi Iwai9baf6502005-05-24 17:27:00 +020045 For more information, see <http://www.alsa-project.org/>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47source "sound/core/Kconfig"
48
49source "sound/drivers/Kconfig"
50
51source "sound/isa/Kconfig"
52
53source "sound/pci/Kconfig"
54
55source "sound/ppc/Kconfig"
56
Johannes Bergf3d94782006-06-21 15:42:43 +020057source "sound/aoa/Kconfig"
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059source "sound/arm/Kconfig"
60
Hans-Christian Egtvedt3b0a8992007-07-23 15:52:42 +020061if SPI
62source "sound/spi/Kconfig"
63endif
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065source "sound/mips/Kconfig"
66
Adrian McMenamin198de432007-05-18 14:26:59 +020067source "sound/sh/Kconfig"
68
Matt LaPlante3cb2fcc2006-11-30 05:22:59 +010069# the following will depend on the order of config.
Linus Torvalds1da177e2005-04-16 15:20:36 -070070# here assuming USB is defined before ALSA
71source "sound/usb/Kconfig"
72
Matt LaPlante3cb2fcc2006-11-30 05:22:59 +010073# the following will depend on the order of config.
Linus Torvalds1da177e2005-04-16 15:20:36 -070074# here assuming PCMCIA is defined before ALSA
75source "sound/pcmcia/Kconfig"
76
77source "sound/sparc/Kconfig"
78
79source "sound/parisc/Kconfig"
80
Liam Girdwooda3288172006-10-06 18:33:55 +020081source "sound/soc/Kconfig"
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083endmenu
84
85menu "Open Sound System"
Al Viro276bd312005-08-23 22:45:06 +010086 depends on SOUND!=n
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88config SOUND_PRIME
89 tristate "Open Sound System (DEPRECATED)"
90 depends on SOUND
91 help
92 Say 'Y' or 'M' to enable Open Sound System drivers.
93
94source "sound/oss/Kconfig"
95
96endmenu
97
98endif
99
Nicolas Pitree1036502006-12-12 13:32:29 -0500100config AC97_BUS
101 tristate
102 help
103 This is used to avoid config and link hard dependencies between the
104 sound subsystem and other function drivers completely unrelated to
105 sound although they're sharing the AC97 bus. Concerned drivers
106 should "select" this.
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108endmenu