* [Buildroot] [PATCH 1/1] package/strongswan: add config option to enable bypass-lan plugin
@ 2022-05-11 12:34 Bert Schueszler
2022-07-04 15:28 ` Quentin Schulz
2022-07-26 15:12 ` Thomas Petazzoni via buildroot
0 siblings, 2 replies; 3+ messages in thread
From: Bert Schueszler @ 2022-05-11 12:34 UTC (permalink / raw)
To: buildroot; +Cc: Bert Schueszler, Jérôme Pouiller
In case the user wants to use the bypass-lan plugin for libcharon, add
a configuration option.
Signed-off-by: Bert Schueszler <bert.schueszler@theobroma-systems.com>
---
package/strongswan/Config.in | 3 +++
package/strongswan/strongswan.mk | 1 +
2 files changed, 4 insertions(+)
diff --git a/package/strongswan/Config.in b/package/strongswan/Config.in
index 430625a102..c611175f47 100644
--- a/package/strongswan/Config.in
+++ b/package/strongswan/Config.in
@@ -191,6 +191,9 @@ config BR2_PACKAGE_STRONGSWAN_SQL
bool "Enable SQL database configuration backend"
depends on BR2_PACKAGE_SQLITE || BR2_PACKAGE_MYSQL
+config BR2_PACKAGE_STRONGSWAN_BYPASS_LAN
+ bool "Enable BYPASS-LAN plugin"
+
endif
config BR2_PACKAGE_STRONGSWAN_PKI
diff --git a/package/strongswan/strongswan.mk b/package/strongswan/strongswan.mk
index 95079aceb3..44c20f8414 100644
--- a/package/strongswan/strongswan.mk
+++ b/package/strongswan/strongswan.mk
@@ -57,6 +57,7 @@ STRONGSWAN_CONF_OPTS += \
--enable-eap-tnc=$(if $(BR2_PACKAGE_STRONGSWAN_EAP_TNC),yes,no) \
--enable-eap-dynamic=$(if $(BR2_PACKAGE_STRONGSWAN_EAP_DYNAMIC),yes,no) \
--enable-eap-radius=$(if $(BR2_PACKAGE_STRONGSWAN_EAP_RADIUS),yes,no) \
+ --enable-bypass-lan=$(if $(BR2_PACKAGE_STRONGSWAN_BYPASS_LAN),yes,no) \
--with-ipseclibdir=/usr/lib \
--with-plugindir=/usr/lib/ipsec/plugins \
--with-imcvdir=/usr/lib/ipsec/imcvs \
--
2.25.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/strongswan: add config option to enable bypass-lan plugin
2022-05-11 12:34 [Buildroot] [PATCH 1/1] package/strongswan: add config option to enable bypass-lan plugin Bert Schueszler
@ 2022-07-04 15:28 ` Quentin Schulz
2022-07-26 15:12 ` Thomas Petazzoni via buildroot
1 sibling, 0 replies; 3+ messages in thread
From: Quentin Schulz @ 2022-07-04 15:28 UTC (permalink / raw)
To: Bert Schueszler, buildroot; +Cc: Jérôme Pouiller
Hi all,
Any feedback to offer on this patch?
Cheers,
Quentin
On 5/11/22 14:34, Bert Schueszler wrote:
> In case the user wants to use the bypass-lan plugin for libcharon, add
> a configuration option.
>
> Signed-off-by: Bert Schueszler <bert.schueszler@theobroma-systems.com>
> ---
> package/strongswan/Config.in | 3 +++
> package/strongswan/strongswan.mk | 1 +
> 2 files changed, 4 insertions(+)
>
> diff --git a/package/strongswan/Config.in b/package/strongswan/Config.in
> index 430625a102..c611175f47 100644
> --- a/package/strongswan/Config.in
> +++ b/package/strongswan/Config.in
> @@ -191,6 +191,9 @@ config BR2_PACKAGE_STRONGSWAN_SQL
> bool "Enable SQL database configuration backend"
> depends on BR2_PACKAGE_SQLITE || BR2_PACKAGE_MYSQL
>
> +config BR2_PACKAGE_STRONGSWAN_BYPASS_LAN
> + bool "Enable BYPASS-LAN plugin"
> +
> endif
>
> config BR2_PACKAGE_STRONGSWAN_PKI
> diff --git a/package/strongswan/strongswan.mk b/package/strongswan/strongswan.mk
> index 95079aceb3..44c20f8414 100644
> --- a/package/strongswan/strongswan.mk
> +++ b/package/strongswan/strongswan.mk
> @@ -57,6 +57,7 @@ STRONGSWAN_CONF_OPTS += \
> --enable-eap-tnc=$(if $(BR2_PACKAGE_STRONGSWAN_EAP_TNC),yes,no) \
> --enable-eap-dynamic=$(if $(BR2_PACKAGE_STRONGSWAN_EAP_DYNAMIC),yes,no) \
> --enable-eap-radius=$(if $(BR2_PACKAGE_STRONGSWAN_EAP_RADIUS),yes,no) \
> + --enable-bypass-lan=$(if $(BR2_PACKAGE_STRONGSWAN_BYPASS_LAN),yes,no) \
> --with-ipseclibdir=/usr/lib \
> --with-plugindir=/usr/lib/ipsec/plugins \
> --with-imcvdir=/usr/lib/ipsec/imcvs \
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/strongswan: add config option to enable bypass-lan plugin
2022-05-11 12:34 [Buildroot] [PATCH 1/1] package/strongswan: add config option to enable bypass-lan plugin Bert Schueszler
2022-07-04 15:28 ` Quentin Schulz
@ 2022-07-26 15:12 ` Thomas Petazzoni via buildroot
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2022-07-26 15:12 UTC (permalink / raw)
To: Bert Schueszler; +Cc: Quentin Schulz, Jérôme Pouiller, buildroot
Hello Bert,
On Wed, 11 May 2022 14:34:23 +0200
Bert Schueszler <bert.schueszler@theobroma-systems.com> wrote:
> In case the user wants to use the bypass-lan plugin for libcharon, add
> a configuration option.
>
> Signed-off-by: Bert Schueszler <bert.schueszler@theobroma-systems.com>
> ---
> package/strongswan/Config.in | 3 +++
> package/strongswan/strongswan.mk | 1 +
> 2 files changed, 4 insertions(+)
Sorry for the long delay it took to get such a simple patch applied.
I've now applied to master, thanks for your contribution!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-07-26 15:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-11 12:34 [Buildroot] [PATCH 1/1] package/strongswan: add config option to enable bypass-lan plugin Bert Schueszler
2022-07-04 15:28 ` Quentin Schulz
2022-07-26 15:12 ` Thomas Petazzoni via buildroot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox