Config.in 870 B

12345678910111213141516171819202122232425262728293031
  1. comment "ubus needs a toolchain w/ dynamic library"
  2. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  3. depends on BR2_STATIC_LIBS
  4. config BR2_PACKAGE_UBUS
  5. bool "ubus"
  6. depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c
  7. depends on !BR2_STATIC_LIBS # libubox
  8. select BR2_PACKAGE_LIBUBOX
  9. select BR2_PACKAGE_JSON_C
  10. help
  11. IPC/RPC bus that allows communication between processes.
  12. It consists of few parts including a daemon (ubusd), a
  13. library (libubus) and a command line interface
  14. (ubus). Although created for the OpenWRT project, it can be
  15. used as a general IPC/RPC mechanism in other projects.
  16. * Select BR2_PACKAGE_LUA_5_1 if you want to have Lua
  17. support.
  18. https://wiki.openwrt.org/doc/techref/ubus
  19. if BR2_PACKAGE_UBUS
  20. config BR2_PACKAGE_UBUS_EXAMPLES
  21. bool "build and install ubus examples"
  22. help
  23. Build and install client and server ubus examples.
  24. endif