blob: a37bee094eba4482c612612ae42366002e3b1134 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001# sound/Config.in
2#
3
Takashi Iwai89fe5112008-05-23 16:10:37 +02004menuconfig SOUND
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 tristate "Sound card support"
Takashi Iwai89fe5112008-05-23 16:10:37 +02006 depends on HAS_IOMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 help
8 If you have a sound card in your computer, i.e. if it can say more
9 than an occasional beep, say Y. Be sure to have all the information
10 about your sound card and its configuration down (I/O port,
11 interrupt and DMA channel), because you will be asked for it.
12
13 You want to read the Sound-HOWTO, available from
14 <http://www.tldp.org/docs.html#howto>. General information about
15 the modular sound system is contained in the files
16 <file:Documentation/sound/oss/Introduction>. The file
17 <file:Documentation/sound/oss/README.OSS> contains some slightly
18 outdated but still useful information as well. Newer sound
19 driver documentation is found in <file:Documentation/sound/alsa/*>.
20
21 If you have a PnP sound card and you want to configure it at boot
22 time using the ISA PnP tools (read
23 <http://www.roestock.demon.co.uk/isapnptools/>), then you need to
24 compile the sound card support as a module and load that module
25 after the PnP configuration is finished. To do this, choose M here
26 and read <file:Documentation/sound/oss/README.modules>; the module
27 will be called soundcore.
28
Takashi Iwai89fe5112008-05-23 16:10:37 +020029if SOUND
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031source "sound/oss/dmasound/Kconfig"
32
33if !M68K
34
Takashi Iwai89fe5112008-05-23 16:10:37 +020035menuconfig SND
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 tristate "Advanced Linux Sound Architecture"
Takashi Iwai23854c32005-05-24 15:22:40 +020037 help
38 Say 'Y' or 'M' to enable ALSA (Advanced Linux Sound Architecture),
39 the new base sound system.
40
Takashi Iwai9baf6502005-05-24 17:27:00 +020041 For more information, see <http://www.alsa-project.org/>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Takashi Iwai89fe5112008-05-23 16:10:37 +020043if SND
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045source "sound/core/Kconfig"
46
47source "sound/drivers/Kconfig"
48
49source "sound/isa/Kconfig"
50
51source "sound/pci/Kconfig"
52
53source "sound/ppc/Kconfig"
54
Johannes Bergf3d94782006-06-21 15:42:43 +020055source "sound/aoa/Kconfig"
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057source "sound/arm/Kconfig"
58
Hans-Christian Egtvedt3b0a8992007-07-23 15:52:42 +020059source "sound/spi/Kconfig"
Hans-Christian Egtvedt3b0a8992007-07-23 15:52:42 +020060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061source "sound/mips/Kconfig"
62
Adrian McMenamin198de432007-05-18 14:26:59 +020063source "sound/sh/Kconfig"
64
Matt LaPlante3cb2fcc2006-11-30 05:22:59 +010065# the following will depend on the order of config.
Linus Torvalds1da177e2005-04-16 15:20:36 -070066# here assuming USB is defined before ALSA
67source "sound/usb/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 PCMCIA is defined before ALSA
71source "sound/pcmcia/Kconfig"
72
73source "sound/sparc/Kconfig"
74
75source "sound/parisc/Kconfig"
76
Liam Girdwooda3288172006-10-06 18:33:55 +020077source "sound/soc/Kconfig"
78
Takashi Iwai89fe5112008-05-23 16:10:37 +020079endif # SND
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Takashi Iwai89fe5112008-05-23 16:10:37 +020081menuconfig SOUND_PRIME
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 tristate "Open Sound System (DEPRECATED)"
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 help
84 Say 'Y' or 'M' to enable Open Sound System drivers.
85
Takashi Iwai89fe5112008-05-23 16:10:37 +020086if SOUND_PRIME
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088source "sound/oss/Kconfig"
89
Takashi Iwai89fe5112008-05-23 16:10:37 +020090endif # SOUND_PRIME
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Takashi Iwai89fe5112008-05-23 16:10:37 +020092endif # !M68K
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Nicolas Pitree1036502006-12-12 13:32:29 -050094config AC97_BUS
95 tristate
96 help
97 This is used to avoid config and link hard dependencies between the
98 sound subsystem and other function drivers completely unrelated to
99 sound although they're sharing the AC97 bus. Concerned drivers
100 should "select" this.
101
Takashi Iwai89fe5112008-05-23 16:10:37 +0200102endif # SOUND