diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /sound/Kconfig |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'sound/Kconfig')
-rw-r--r-- | sound/Kconfig | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/sound/Kconfig b/sound/Kconfig new file mode 100644 index 000000000000..047d59ea0573 --- /dev/null +++ b/sound/Kconfig | |||
@@ -0,0 +1,89 @@ | |||
1 | # sound/Config.in | ||
2 | # | ||
3 | |||
4 | menu "Sound" | ||
5 | |||
6 | config SOUND | ||
7 | tristate "Sound card support" | ||
8 | help | ||
9 | If you have a sound card in your computer, i.e. if it can say more | ||
10 | than an occasional beep, say Y. Be sure to have all the information | ||
11 | about your sound card and its configuration down (I/O port, | ||
12 | interrupt and DMA channel), because you will be asked for it. | ||
13 | |||
14 | You want to read the Sound-HOWTO, available from | ||
15 | <http://www.tldp.org/docs.html#howto>. General information about | ||
16 | the modular sound system is contained in the files | ||
17 | <file:Documentation/sound/oss/Introduction>. The file | ||
18 | <file:Documentation/sound/oss/README.OSS> contains some slightly | ||
19 | outdated but still useful information as well. Newer sound | ||
20 | driver documentation is found in <file:Documentation/sound/alsa/*>. | ||
21 | |||
22 | If you have a PnP sound card and you want to configure it at boot | ||
23 | time using the ISA PnP tools (read | ||
24 | <http://www.roestock.demon.co.uk/isapnptools/>), then you need to | ||
25 | compile the sound card support as a module and load that module | ||
26 | after the PnP configuration is finished. To do this, choose M here | ||
27 | and read <file:Documentation/sound/oss/README.modules>; the module | ||
28 | will be called soundcore. | ||
29 | |||
30 | I'm told that even without a sound card, you can make your computer | ||
31 | say more than an occasional beep, by programming the PC speaker. | ||
32 | Kernel patches and supporting utilities to do that are in the pcsp | ||
33 | package, available at <ftp://ftp.infradead.org/pub/pcsp/>. | ||
34 | |||
35 | source "sound/oss/dmasound/Kconfig" | ||
36 | |||
37 | if !M68K | ||
38 | |||
39 | menu "Advanced Linux Sound Architecture" | ||
40 | depends on SOUND!=n | ||
41 | |||
42 | config SND | ||
43 | tristate "Advanced Linux Sound Architecture" | ||
44 | depends on SOUND | ||
45 | |||
46 | source "sound/core/Kconfig" | ||
47 | |||
48 | source "sound/drivers/Kconfig" | ||
49 | |||
50 | source "sound/isa/Kconfig" | ||
51 | |||
52 | source "sound/pci/Kconfig" | ||
53 | |||
54 | source "sound/ppc/Kconfig" | ||
55 | |||
56 | source "sound/arm/Kconfig" | ||
57 | |||
58 | source "sound/mips/Kconfig" | ||
59 | |||
60 | # the following will depenend on the order of config. | ||
61 | # here assuming USB is defined before ALSA | ||
62 | source "sound/usb/Kconfig" | ||
63 | |||
64 | # the following will depenend on the order of config. | ||
65 | # here assuming PCMCIA is defined before ALSA | ||
66 | source "sound/pcmcia/Kconfig" | ||
67 | |||
68 | source "sound/sparc/Kconfig" | ||
69 | |||
70 | source "sound/parisc/Kconfig" | ||
71 | |||
72 | endmenu | ||
73 | |||
74 | menu "Open Sound System" | ||
75 | depends on SOUND!=n && (BROKEN || (!SPARC32 && !SPARC64)) | ||
76 | |||
77 | config SOUND_PRIME | ||
78 | tristate "Open Sound System (DEPRECATED)" | ||
79 | depends on SOUND | ||
80 | help | ||
81 | Say 'Y' or 'M' to enable Open Sound System drivers. | ||
82 | |||
83 | source "sound/oss/Kconfig" | ||
84 | |||
85 | endmenu | ||
86 | |||
87 | endif | ||
88 | |||
89 | endmenu | ||