diff mbox series

[1/1] package/bird: add optional protocols

Message ID 20190320210943.21377-1-adrien@gallouet.fr
State Accepted
Headers show
Series [1/1] package/bird: add optional protocols | expand

Commit Message

Adrien Gallouët March 20, 2019, 9:09 p.m. UTC
Signed-off-by: Adrien Gallouët <adrien@gallouet.fr>
---
 package/bird/Config.in | 46 ++++++++++++++++++++++++++++++++++++++++++
 package/bird/bird.mk   | 16 +++++++++++++++
 2 files changed, 62 insertions(+)

Comments

Thomas Petazzoni March 26, 2019, 7:16 p.m. UTC | #1
Hello,

On Wed, 20 Mar 2019 21:09:44 +0000
Adrien Gallouët <adrien@gallouet.fr> wrote:

> Signed-off-by: Adrien Gallouët <adrien@gallouet.fr>
> ---
>  package/bird/Config.in | 46 ++++++++++++++++++++++++++++++++++++++++++
>  package/bird/bird.mk   | 16 +++++++++++++++
>  2 files changed, 62 insertions(+)

I've applied, but I had to fix a number of things, see below.

> 
> diff --git a/package/bird/Config.in b/package/bird/Config.in
> index a69551f94e..298348d098 100644
> --- a/package/bird/Config.in
> +++ b/package/bird/Config.in
> @@ -20,4 +20,50 @@ config BR2_PACKAGE_BIRD_CLIENT
>  	help
>  	  Enable the BIRD client

I added a Config.in comment here to make it clear the below options are
for configuring the list of supported protocols.

> +# BUG: RIP is needed for now
> +BR2_PACKAGE_BIRD_RIP=y

BR2_PACKAGE_* is reserved for config options. Variables in a package
should be prefixed by the package name.

> +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_BFD),bfd,)
> +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_BABEL),babel,)
> +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_BGP),bgp,)
> +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_MRT),mrt,)
> +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_OSPF),ospf,)
> +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_PERF),perf,)
> +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_PIPE),pipe,)
> +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_RADV),radv,)
> +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_RIP),rip,)
> +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_STATIC),static,)
> +
> +BIRD_CONF_OPTS += --with-protocols=$(subst $(space),$(comma),$(strip $(BR2_PACKAGE_BIRD_PROTOCOLS)))

So I've changed all of this by:

# 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)))

and applied to master.

Thanks!

Thomas
Adrien Gallouët March 27, 2019, 8:24 a.m. UTC | #2
On Tue, Mar 26, 2019 at 8:16 PM Thomas Petazzoni
<thomas.petazzoni@bootlin.com> wrote:
>
> Hello,
>
> On Wed, 20 Mar 2019 21:09:44 +0000
> Adrien Gallouët <adrien@gallouet.fr> wrote:
>
> > Signed-off-by: Adrien Gallouët <adrien@gallouet.fr>
> > ---
> >  package/bird/Config.in | 46 ++++++++++++++++++++++++++++++++++++++++++
> >  package/bird/bird.mk   | 16 +++++++++++++++
> >  2 files changed, 62 insertions(+)
>
> I've applied, but I had to fix a number of things, see below.
>
> >
> > diff --git a/package/bird/Config.in b/package/bird/Config.in
> > index a69551f94e..298348d098 100644
> > --- a/package/bird/Config.in
> > +++ b/package/bird/Config.in
> > @@ -20,4 +20,50 @@ config BR2_PACKAGE_BIRD_CLIENT
> >       help
> >         Enable the BIRD client
>
> I added a Config.in comment here to make it clear the below options are
> for configuring the list of supported protocols.
>
> > +# BUG: RIP is needed for now
> > +BR2_PACKAGE_BIRD_RIP=y
>
> BR2_PACKAGE_* is reserved for config options. Variables in a package
> should be prefixed by the package name.
>
> > +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_BFD),bfd,)
> > +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_BABEL),babel,)
> > +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_BGP),bgp,)
> > +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_MRT),mrt,)
> > +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_OSPF),ospf,)
> > +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_PERF),perf,)
> > +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_PIPE),pipe,)
> > +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_RADV),radv,)
> > +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_RIP),rip,)
> > +BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_STATIC),static,)
> > +
> > +BIRD_CONF_OPTS += --with-protocols=$(subst $(space),$(comma),$(strip $(BR2_PACKAGE_BIRD_PROTOCOLS)))
>
> So I've changed all of this by:
>
> # 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)))
>
> and applied to master.
>
> Thanks!
>
> Thomas
> --
> Thomas Petazzoni, CTO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com

Hi Thomas,
Thanks to you!
diff mbox series

Patch

diff --git a/package/bird/Config.in b/package/bird/Config.in
index a69551f94e..298348d098 100644
--- a/package/bird/Config.in
+++ b/package/bird/Config.in
@@ -20,4 +20,50 @@  config BR2_PACKAGE_BIRD_CLIENT
 	help
 	  Enable the BIRD client
 
+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
diff --git a/package/bird/bird.mk b/package/bird/bird.mk
index e165be61c0..26bec01ebf 100644
--- a/package/bird/bird.mk
+++ b/package/bird/bird.mk
@@ -17,4 +17,20 @@  else
 BIRD_CONF_OPTS += --disable-client
 endif
 
+# BUG: RIP is needed for now
+BR2_PACKAGE_BIRD_RIP=y
+
+BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_BFD),bfd,)
+BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_BABEL),babel,)
+BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_BGP),bgp,)
+BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_MRT),mrt,)
+BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_OSPF),ospf,)
+BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_PERF),perf,)
+BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_PIPE),pipe,)
+BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_RADV),radv,)
+BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_RIP),rip,)
+BR2_PACKAGE_BIRD_PROTOCOLS += $(if $(BR2_PACKAGE_BIRD_STATIC),static,)
+
+BIRD_CONF_OPTS += --with-protocols=$(subst $(space),$(comma),$(strip $(BR2_PACKAGE_BIRD_PROTOCOLS)))
+
 $(eval $(autotools-package))