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"
+ help
+ Enable BFD protocol.
+
+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_STATIC
+ bool "static"
+ help
+ Enable Static protocol.
+
endif
BIRD_CONF_OPTS += --disable-client
endif
+# BUG: RIP is mandatory for now
+BIRD_PROTOCOLS = \
+ rip \
+ $(if $(BR2_PACKAGE_BIRD_BFD),bfd) \
+ $(if $(BR2_PACKAGE_BIRD_BABEL),babel) \
+ $(if $(BR2_PACKAGE_BIRD_BGP),bgp) \
+ $(if $(BR2_PACKAGE_BIRD_MRT),mrt) \
+ $(if $(BR2_PACKAGE_BIRD_OSPF),ospf) \
+ $(if $(BR2_PACKAGE_BIRD_PERF),perf) \
+ $(if $(BR2_PACKAGE_BIRD_PIPE),pipe) \
+ $(if $(BR2_PACKAGE_BIRD_RADV),radv) \
+ $(if $(BR2_PACKAGE_BIRD_RIP),rip) \
+ $(if $(BR2_PACKAGE_BIRD_STATIC),static)
+
+BIRD_CONF_OPTS += --with-protocols=$(subst $(space),$(comma),$(strip $(BIRD_PROTOCOLS)))
+
$(eval $(autotools-package))