Config.in 977 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. config BR2_PACKAGE_FRR
  2. bool "frr"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS
  4. depends on !BR2_STATIC_LIBS # libyang
  5. depends on BR2_USE_MMU # fork()
  6. depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c, libyang
  7. select BR2_PACKAGE_BASH
  8. select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # bash
  9. select BR2_PACKAGE_LIBYANG
  10. select BR2_PACKAGE_READLINE
  11. select BR2_PACKAGE_JSON_C
  12. help
  13. The FRRouting Protocol Suite.
  14. FRR is free software that implements and manages various
  15. IPv4 and IPv6 routing protocols.
  16. https://frrouting.org
  17. if BR2_PACKAGE_FRR
  18. config BR2_PACKAGE_FRR_BMP
  19. bool "BMP protocol"
  20. select BR2_PACKAGE_C_ARES
  21. help
  22. Build BGP Monitoring Protocol daemon.
  23. config BR2_PACKAGE_FRR_NHRPD
  24. bool "NHRPD protocol"
  25. select BR2_PACKAGE_C_ARES
  26. help
  27. Build Next Hop Routing Protocol daemon.
  28. endif
  29. comment "frr needs a toolchain w/ threads, dynamic library"
  30. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  31. depends on BR2_USE_MMU
  32. depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS