Kconfig 2.9 KB

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