Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. config DVB_CORE
  2. tristate "DVB for Linux"
  3. depends on NET && INET
  4. select CRC32
  5. help
  6. Support Digital Video Broadcasting hardware. Enable this if you
  7. own a DVB adapter and want to use it or if you compile Linux for
  8. a digital SetTopBox.
  9. DVB core utility functions for device handling, software fallbacks etc.
  10. Say Y when you have a DVB card and want to use it. Say Y if your want
  11. to build your drivers outside the kernel, but need the DVB core. All
  12. in-kernel drivers will select this automatically if needed.
  13. API specs and user tools are available from <http://www.linuxtv.org/>.
  14. Please report problems regarding this driver to the LinuxDVB
  15. mailing list.
  16. If unsure say N.
  17. config DVB_CORE_ATTACH
  18. bool "Load and attach frontend modules as needed"
  19. depends on DVB_CORE
  20. depends on MODULES
  21. help
  22. Remove the static dependency of DVB card drivers on all
  23. frontend modules for all possible card variants. Instead,
  24. allow the card drivers to only load the frontend modules
  25. they require. This saves several KBytes of memory.
  26. Note: You will need module-init-tools v3.2 or later for this feature.
  27. If unsure say Y.