Kconfig 835 B

123456789101112131415161718192021222324
  1. config DVB_CORE
  2. tristate "DVB Core Support"
  3. depends on DVB
  4. select CRC32
  5. help
  6. DVB core utility functions for device handling, software fallbacks etc.
  7. Say Y when you have a DVB card and want to use it. Say Y if your want
  8. to build your drivers outside the kernel, but need the DVB core. All
  9. in-kernel drivers will select this automatically if needed.
  10. If unsure say N.
  11. config DVB_CORE_ATTACH
  12. bool "Load and attach frontend modules as needed"
  13. depends on DVB_CORE
  14. depends on MODULES
  15. help
  16. Remove the static dependency of DVB card drivers on all
  17. frontend modules for all possible card variants. Instead,
  18. allow the card drivers to only load the frontend modules
  19. they require. This saves several KBytes of memory.
  20. Note: You will need module-init-tools v3.2 or later for this feature.
  21. If unsure say Y.