Kconfig 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. # sound/Config.in
  2. #
  3. menuconfig SOUND
  4. tristate "Sound card support"
  5. depends on HAS_IOMEM
  6. help
  7. If you have a sound card in your computer, i.e. if it can say more
  8. than an occasional beep, say Y. Be sure to have all the information
  9. about your sound card and its configuration down (I/O port,
  10. interrupt and DMA channel), because you will be asked for it.
  11. You want to read the Sound-HOWTO, available from
  12. <http://www.tldp.org/docs.html#howto>. General information about
  13. the modular sound system is contained in the files
  14. <file:Documentation/sound/oss/Introduction>. The file
  15. <file:Documentation/sound/oss/README.OSS> contains some slightly
  16. outdated but still useful information as well. Newer sound
  17. driver documentation is found in <file:Documentation/sound/alsa/*>.
  18. If you have a PnP sound card and you want to configure it at boot
  19. time using the ISA PnP tools (read
  20. <http://www.roestock.demon.co.uk/isapnptools/>), then you need to
  21. compile the sound card support as a module and load that module
  22. after the PnP configuration is finished. To do this, choose M here
  23. and read <file:Documentation/sound/oss/README.modules>; the module
  24. will be called soundcore.
  25. if SOUND
  26. config SOUND_OSS_CORE
  27. bool
  28. default n
  29. source "sound/oss/dmasound/Kconfig"
  30. if !M68K
  31. menuconfig SND
  32. tristate "Advanced Linux Sound Architecture"
  33. help
  34. Say 'Y' or 'M' to enable ALSA (Advanced Linux Sound Architecture),
  35. the new base sound system.
  36. For more information, see <http://www.alsa-project.org/>
  37. if SND
  38. source "sound/core/Kconfig"
  39. source "sound/drivers/Kconfig"
  40. source "sound/isa/Kconfig"
  41. source "sound/pci/Kconfig"
  42. source "sound/ppc/Kconfig"
  43. source "sound/aoa/Kconfig"
  44. source "sound/arm/Kconfig"
  45. source "sound/spi/Kconfig"
  46. source "sound/mips/Kconfig"
  47. source "sound/sh/Kconfig"
  48. # the following will depend on the order of config.
  49. # here assuming USB is defined before ALSA
  50. source "sound/usb/Kconfig"
  51. # the following will depend on the order of config.
  52. # here assuming PCMCIA is defined before ALSA
  53. source "sound/pcmcia/Kconfig"
  54. source "sound/sparc/Kconfig"
  55. source "sound/parisc/Kconfig"
  56. source "sound/soc/Kconfig"
  57. endif # SND
  58. menuconfig SOUND_PRIME
  59. tristate "Open Sound System (DEPRECATED)"
  60. select SOUND_OSS_CORE
  61. help
  62. Say 'Y' or 'M' to enable Open Sound System drivers.
  63. if SOUND_PRIME
  64. source "sound/oss/Kconfig"
  65. endif # SOUND_PRIME
  66. endif # !M68K
  67. endif # SOUND
  68. # AC97_BUS is used from both sound and ucb1400
  69. config AC97_BUS
  70. tristate
  71. help
  72. This is used to avoid config and link hard dependencies between the
  73. sound subsystem and other function drivers completely unrelated to
  74. sound although they're sharing the AC97 bus. Concerned drivers
  75. should "select" this.