1config 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 7 select BR2_PACKAGE_BASH 8 select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # bash 9 select BR2_PACKAGE_C_ARES 10 select BR2_PACKAGE_LIBYANG 11 select BR2_PACKAGE_LIBNL 12 select BR2_PACKAGE_READLINE 13 select BR2_PACKAGE_JSON_C 14 help 15 The FRRouting Protocol Suite. 16 17 FRR is free software that implements and manages various 18 IPv4 and IPv6 routing protocols. 19 20 https://frrouting.org 21 22comment "frr needs a toolchain w/ threads, dynamic library" 23 depends on BR2_TOOLCHAIN_HAS_SYNC_4 24 depends on BR2_USE_MMU 25 depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS 26