Kconfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. # sound/Config.in
  2. #
  3. menu "Sound"
  4. config SOUND
  5. tristate "Sound card support"
  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. I'm told that even without a sound card, you can make your computer
  26. say more than an occasional beep, by programming the PC speaker.
  27. Kernel patches and supporting utilities to do that are in the pcsp
  28. package, available at <ftp://ftp.infradead.org/pub/pcsp/>.
  29. source "sound/oss/dmasound/Kconfig"
  30. if !M68K
  31. menu "Advanced Linux Sound Architecture"
  32. depends on SOUND!=n
  33. config SND
  34. tristate "Advanced Linux Sound Architecture"
  35. depends on SOUND
  36. help
  37. Say 'Y' or 'M' to enable ALSA (Advanced Linux Sound Architecture),
  38. the new base sound system.
  39. For more information, see <http://www.alsa-project.org/>
  40. source "sound/core/Kconfig"
  41. source "sound/drivers/Kconfig"
  42. source "sound/isa/Kconfig"
  43. source "sound/pci/Kconfig"
  44. source "sound/ppc/Kconfig"
  45. source "sound/aoa/Kconfig"
  46. source "sound/arm/Kconfig"
  47. source "sound/mips/Kconfig"
  48. # the following will depenend on the order of config.
  49. # here assuming USB is defined before ALSA
  50. source "sound/usb/Kconfig"
  51. # the following will depenend 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. endmenu
  57. menu "Open Sound System"
  58. depends on SOUND!=n
  59. config SOUND_PRIME
  60. tristate "Open Sound System (DEPRECATED)"
  61. depends on SOUND
  62. help
  63. Say 'Y' or 'M' to enable Open Sound System drivers.
  64. source "sound/oss/Kconfig"
  65. endmenu
  66. endif
  67. endmenu