repo: https://github.com/buildroot/buildroot/tree/2021.05 commit: 69f79f2a2ee1417e19c1ead2c9226e11753c06cb Update for 2021.05 Change-Id: I77d6d14da04483c97cb172bf6732732012e538d9
82 lines
1.4 KiB
Plaintext
82 lines
1.4 KiB
Plaintext
config BR2_PACKAGE_BIRD
|
|
bool "bird"
|
|
depends on !BR2_nios2 # relocations don't fit
|
|
depends on BR2_USE_MMU # fork()
|
|
help
|
|
BIRD Internet Routing Daemon
|
|
|
|
The BIRD project aims to develop a dynamic IP routing daemon
|
|
with full support of all modern routing protocols, easy to
|
|
use configuration interface and powerful route filtering
|
|
language
|
|
|
|
http://bird.network.cz/
|
|
|
|
if BR2_PACKAGE_BIRD
|
|
|
|
config BR2_PACKAGE_BIRD_CLIENT
|
|
bool "birdc"
|
|
select BR2_PACKAGE_NCURSES
|
|
select BR2_PACKAGE_READLINE
|
|
help
|
|
Enable the BIRD client
|
|
|
|
comment "protocol support"
|
|
|
|
config BR2_PACKAGE_BIRD_BABEL
|
|
bool "babel"
|
|
help
|
|
Enable Babel protocol.
|
|
|
|
config BR2_PACKAGE_BIRD_BFD
|
|
bool "bfd"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
|
help
|
|
Enable BFD protocol.
|
|
|
|
comment "BFD protocol needs a toolchain w/ NPTL"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
|
|
|
config BR2_PACKAGE_BIRD_BGP
|
|
bool "bgp"
|
|
default y
|
|
help
|
|
Enable BGP protocol.
|
|
|
|
config BR2_PACKAGE_BIRD_MRT
|
|
bool "mrt"
|
|
help
|
|
Enable MRT protocol.
|
|
|
|
config BR2_PACKAGE_BIRD_OSPF
|
|
bool "ospf"
|
|
help
|
|
Enable OSPFv2 and OSPFv3 protocol.
|
|
|
|
config BR2_PACKAGE_BIRD_PERF
|
|
bool "perf"
|
|
help
|
|
Enable Perf protocol.
|
|
|
|
config BR2_PACKAGE_BIRD_PIPE
|
|
bool "pipe"
|
|
help
|
|
Enable Pipe protocol.
|
|
|
|
config BR2_PACKAGE_BIRD_RADV
|
|
bool "radv"
|
|
help
|
|
Enable RAdv protocol.
|
|
|
|
config BR2_PACKAGE_BIRD_RIP
|
|
bool "rip"
|
|
help
|
|
Enable RIP protocol.
|
|
|
|
config BR2_PACKAGE_BIRD_STATIC
|
|
bool "static"
|
|
help
|
|
Enable Static protocol.
|
|
|
|
endif
|