Config.in 588 B

123456789101112131415161718
  1. config BR2_PACKAGE_MRP
  2. bool "mrp"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS
  4. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0
  5. select BR2_PACKAGE_LIBEV
  6. select BR2_PACKAGE_LIBMNL
  7. select BR2_PACKAGE_LIBNL
  8. select BR2_PACKAGE_CFM
  9. help
  10. This is the userspace application that configures the kernel
  11. to run MRP protocol. The userspace application is made of 2
  12. applications, one daemon and a client.
  13. https://github.com/microchip-ung/mrp
  14. comment "mrp needs a toolchain w/ threads, kernel headers >= 5.0"
  15. depends on !BR2_TOOLCHAIN_HAS_THREADS \
  16. || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0