Kconfig 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #
  2. # Multimedia device configuration
  3. #
  4. menu "Digital Video Broadcasting Devices"
  5. config DVB
  6. bool "DVB For Linux"
  7. depends on NET && INET
  8. ---help---
  9. Support Digital Video Broadcasting hardware. Enable this if you
  10. own a DVB adapter and want to use it or if you compile Linux for
  11. a digital SetTopBox.
  12. API specs and user tools are available from <http://www.linuxtv.org/>.
  13. Please report problems regarding this driver to the LinuxDVB
  14. mailing list.
  15. If unsure say N.
  16. source "drivers/media/dvb/dvb-core/Kconfig"
  17. comment "Supported SAA7146 based PCI Adapters"
  18. depends on DVB_CORE && PCI
  19. source "drivers/media/dvb/ttpci/Kconfig"
  20. comment "Supported USB Adapters"
  21. depends on DVB_CORE && USB
  22. source "drivers/media/dvb/dvb-usb/Kconfig"
  23. source "drivers/media/dvb/ttusb-budget/Kconfig"
  24. source "drivers/media/dvb/ttusb-dec/Kconfig"
  25. source "drivers/media/dvb/cinergyT2/Kconfig"
  26. comment "Supported FlexCopII (B2C2) Adapters"
  27. depends on DVB_CORE && (PCI || USB)
  28. source "drivers/media/dvb/b2c2/Kconfig"
  29. comment "Supported BT878 Adapters"
  30. depends on DVB_CORE && PCI
  31. source "drivers/media/dvb/bt8xx/Kconfig"
  32. comment "Supported Pluto2 Adapters"
  33. depends on DVB_CORE && PCI
  34. source "drivers/media/dvb/pluto2/Kconfig"
  35. comment "Supported DVB Frontends"
  36. depends on DVB_CORE
  37. source "drivers/media/dvb/frontends/Kconfig"
  38. endmenu