Kconfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. source "sound/oss/dmasound/Kconfig"
  27. if !M68K
  28. menuconfig SND
  29. tristate "Advanced Linux Sound Architecture"
  30. help
  31. Say 'Y' or 'M' to enable ALSA (Advanced Linux Sound Architecture),
  32. the new base sound system.
  33. For more information, see <http://www.alsa-project.org/>
  34. if SND
  35. source "sound/core/Kconfig"
  36. source "sound/drivers/Kconfig"
  37. source "sound/isa/Kconfig"
  38. source "sound/pci/Kconfig"
  39. source "sound/ppc/Kconfig"
  40. source "sound/aoa/Kconfig"
  41. source "sound/arm/Kconfig"
  42. source "sound/spi/Kconfig"
  43. source "sound/mips/Kconfig"
  44. source "sound/sh/Kconfig"
  45. # the following will depend on the order of config.
  46. # here assuming USB is defined before ALSA
  47. source "sound/usb/Kconfig"
  48. # the following will depend on the order of config.
  49. # here assuming PCMCIA is defined before ALSA
  50. source "sound/pcmcia/Kconfig"
  51. source "sound/sparc/Kconfig"
  52. source "sound/parisc/Kconfig"
  53. source "sound/soc/Kconfig"
  54. endif # SND
  55. menuconfig SOUND_PRIME
  56. tristate "Open Sound System (DEPRECATED)"
  57. help
  58. Say 'Y' or 'M' to enable Open Sound System drivers.
  59. if SOUND_PRIME
  60. source "sound/oss/Kconfig"
  61. endif # SOUND_PRIME
  62. endif # !M68K
  63. config AC97_BUS
  64. tristate
  65. help
  66. This is used to avoid config and link hard dependencies between the
  67. sound subsystem and other function drivers completely unrelated to
  68. sound although they're sharing the AC97 bus. Concerned drivers
  69. should "select" this.
  70. endif # SOUND