Kconfig (85e9ca333d03fbd56b9e123c8456f0d98e20faad) | Kconfig (d886e87cb82b0f6636476c1104bb84d7c8dc87d9) |
---|---|
1# sound/Config.in 2# 3 4menuconfig SOUND 5 tristate "Sound card support" 6 depends on HAS_IOMEM 7 help 8 If you have a sound card in your computer, i.e. if it can say more --- 14 unchanged lines hidden (view full) --- 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 | 1# sound/Config.in 2# 3 4menuconfig SOUND 5 tristate "Sound card support" 6 depends on HAS_IOMEM 7 help 8 If you have a sound card in your computer, i.e. if it can say more --- 14 unchanged lines hidden (view full) --- 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 |
31config SOUND_OSS_CORE 32 bool 33 default n 34 |
|
31source "sound/oss/dmasound/Kconfig" 32 33if !M68K 34 35menuconfig SND 36 tristate "Advanced Linux Sound Architecture" 37 help 38 Say 'Y' or 'M' to enable ALSA (Advanced Linux Sound Architecture), --- 36 unchanged lines hidden (view full) --- 75source "sound/parisc/Kconfig" 76 77source "sound/soc/Kconfig" 78 79endif # SND 80 81menuconfig SOUND_PRIME 82 tristate "Open Sound System (DEPRECATED)" | 35source "sound/oss/dmasound/Kconfig" 36 37if !M68K 38 39menuconfig SND 40 tristate "Advanced Linux Sound Architecture" 41 help 42 Say 'Y' or 'M' to enable ALSA (Advanced Linux Sound Architecture), --- 36 unchanged lines hidden (view full) --- 79source "sound/parisc/Kconfig" 80 81source "sound/soc/Kconfig" 82 83endif # SND 84 85menuconfig SOUND_PRIME 86 tristate "Open Sound System (DEPRECATED)" |
87 select SOUND_OSS_CORE |
|
83 help 84 Say 'Y' or 'M' to enable Open Sound System drivers. 85 86if SOUND_PRIME 87 88source "sound/oss/Kconfig" 89 90endif # SOUND_PRIME 91 92endif # !M68K 93 | 88 help 89 Say 'Y' or 'M' to enable Open Sound System drivers. 90 91if SOUND_PRIME 92 93source "sound/oss/Kconfig" 94 95endif # SOUND_PRIME 96 97endif # !M68K 98 |
99endif # SOUND 100 101# AC97_BUS is used from both sound and ucb1400 |
|
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 | 102config AC97_BUS 103 tristate 104 help 105 This is used to avoid config and link hard dependencies between the 106 sound subsystem and other function drivers completely unrelated to 107 sound although they're sharing the AC97 bus. Concerned drivers 108 should "select" this. 109 |
102endif # SOUND | |