Config.in 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. config BR2_PACKAGE_MOSQUITTO
  2. bool "mosquitto"
  3. help
  4. Eclipse Mosquitto is an open source (EPL/EDL licensed) message
  5. broker that implements the MQTT protocol versions 5.0, 3.1.1
  6. and 3.1. Mosquitto is lightweight and is suitable for use on
  7. all devices from low power single board computers to full
  8. servers.
  9. The MQTT protocol provides a lightweight method of carrying
  10. out messaging using a publish/subscribe model. This makes it
  11. suitable for Internet of Things messaging such as with low
  12. power sensors or mobile devices such as phones,
  13. embedded computers or microcontrollers.
  14. The Mosquitto project also provides a C library for
  15. implementing MQTT clients, and the very popular mosquitto_pub
  16. and mosquitto_sub command line MQTT clients.
  17. http://mosquitto.org/
  18. config BR2_PACKAGE_MOSQUITTO_BROKER
  19. bool "install the mosquitto broker"
  20. default y
  21. depends on BR2_USE_MMU # fork()
  22. depends on !BR2_STATIC_LIBS # include <dlfcn.h>
  23. depends on BR2_PACKAGE_MOSQUITTO
  24. help
  25. Build and install the mosquitto broker onto target.
  26. comment "mosquitto broker needs a toolchain w/ dynamic library"
  27. depends on BR2_USE_MMU
  28. depends on BR2_STATIC_LIBS
  29. depends on BR2_PACKAGE_MOSQUITTO