hc
2024-08-13 72be3801e63d82671c9d90577a9efb3126a6aa37
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
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_RPKI
   bool "rpki"
   help
     Enable RPKI protocol.
 
config BR2_PACKAGE_BIRD_STATIC
   bool "static"
   help
     Enable Static protocol.
 
endif