Config.in 961 B

1234567891011121314151617181920212223242526272829303132
  1. config BR2_PACKAGE_MODEM_MANAGER
  2. bool "modem-manager"
  3. depends on BR2_USE_WCHAR # libglib2 and gnutls
  4. depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, libglib2
  5. depends on BR2_USE_MMU # dbus
  6. select BR2_PACKAGE_DBUS # runtime dependency
  7. select BR2_PACKAGE_LIBGLIB2
  8. select BR2_PACKAGE_LIBGUDEV if BR2_PACKAGE_HAS_UDEV
  9. help
  10. ModemManager is a DBus-activated daemon which controls mobile
  11. broadband (2G/3G/4G) devices and connections.
  12. http://www.freedesktop.org/wiki/Software/ModemManager/
  13. if BR2_PACKAGE_MODEM_MANAGER
  14. config BR2_PACKAGE_MODEM_MANAGER_LIBMBIM
  15. bool "MBIM support"
  16. select BR2_PACKAGE_LIBMBIM
  17. help
  18. This option enables support for MBIM protocol
  19. config BR2_PACKAGE_MODEM_MANAGER_LIBQMI
  20. bool "QMI support"
  21. select BR2_PACKAGE_LIBQMI
  22. help
  23. This option enables support for QMI protocol
  24. endif
  25. comment "modemmanager needs a toolchain w/ wchar, threads"
  26. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
  27. depends on BR2_USE_MMU