Kconfig (acf464817d5e7be9fb67aec4027dbee0ac9be17a) Kconfig (89fe5117928b2c1272c9376362131ded561c91ad)
1# sound/Config.in
2#
3
1# sound/Config.in
2#
3
4menu "Sound"
5 depends on HAS_IOMEM
6
7config SOUND
4menuconfig SOUND
8 tristate "Sound card support"
5 tristate "Sound card support"
6 depends on HAS_IOMEM
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

--- 6 unchanged lines hidden (view full) ---

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
7 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

--- 6 unchanged lines hidden (view full) ---

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
29if SOUND
30
31source "sound/oss/dmasound/Kconfig"
32
33if !M68K
34
31source "sound/oss/dmasound/Kconfig"
32
33if !M68K
34
35menu "Advanced Linux Sound Architecture"
36 depends on SOUND!=n
37
38config SND
35menuconfig SND
39 tristate "Advanced Linux Sound Architecture"
36 tristate "Advanced Linux Sound Architecture"
40 depends on SOUND
41 help
42 Say 'Y' or 'M' to enable ALSA (Advanced Linux Sound Architecture),
43 the new base sound system.
44
45 For more information, see <http://www.alsa-project.org/>
46
37 help
38 Say 'Y' or 'M' to enable ALSA (Advanced Linux Sound Architecture),
39 the new base sound system.
40
41 For more information, see <http://www.alsa-project.org/>
42
43if SND
44
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
57source "sound/aoa/Kconfig"
58
59source "sound/arm/Kconfig"
60
45source "sound/core/Kconfig"
46
47source "sound/drivers/Kconfig"
48
49source "sound/isa/Kconfig"
50
51source "sound/pci/Kconfig"
52
53source "sound/ppc/Kconfig"
54
55source "sound/aoa/Kconfig"
56
57source "sound/arm/Kconfig"
58
61if SPI
62source "sound/spi/Kconfig"
59source "sound/spi/Kconfig"
63endif
64
65source "sound/mips/Kconfig"
66
67source "sound/sh/Kconfig"
68
69# the following will depend on the order of config.
70# here assuming USB is defined before ALSA
71source "sound/usb/Kconfig"
72
73# the following will depend on the order of config.
74# here assuming PCMCIA is defined before ALSA
75source "sound/pcmcia/Kconfig"
76
77source "sound/sparc/Kconfig"
78
79source "sound/parisc/Kconfig"
80
81source "sound/soc/Kconfig"
82
60
61source "sound/mips/Kconfig"
62
63source "sound/sh/Kconfig"
64
65# the following will depend on the order of config.
66# here assuming USB is defined before ALSA
67source "sound/usb/Kconfig"
68
69# the following will depend on the order of config.
70# here assuming PCMCIA is defined before ALSA
71source "sound/pcmcia/Kconfig"
72
73source "sound/sparc/Kconfig"
74
75source "sound/parisc/Kconfig"
76
77source "sound/soc/Kconfig"
78
83endmenu
79endif # SND
84
80
85menu "Open Sound System"
86 depends on SOUND!=n
87
88config SOUND_PRIME
81menuconfig SOUND_PRIME
89 tristate "Open Sound System (DEPRECATED)"
82 tristate "Open Sound System (DEPRECATED)"
90 depends on SOUND
91 help
92 Say 'Y' or 'M' to enable Open Sound System drivers.
93
83 help
84 Say 'Y' or 'M' to enable Open Sound System drivers.
85
86if SOUND_PRIME
87
94source "sound/oss/Kconfig"
95
88source "sound/oss/Kconfig"
89
96endmenu
90endif # SOUND_PRIME
97
91
98endif
92endif # !M68K
99
100config 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
93
94config 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
108endmenu
102endif # SOUND