All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/ebtables: install symlink to ebtables-legacy
@ 2021-02-16 11:58 Thomas De Schampheleire
  2021-02-16 19:46 ` Baruch Siach
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Thomas De Schampheleire @ 2021-02-16 11:58 UTC (permalink / raw)
  To: buildroot

From: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>

Since the upgrade of ebtables from 2.0.10-4 to 2.0.11, there no longer is an
'ebtables' binary. It has been renamed to 'ebtables-legacy' and moved from
'/sbin' to '/usr/sbin'. This change is part of the upstream change to
integrate the functionality of ebtables (and arptables) in the iptables
package, using the nf_tables kernel backend [1].

Unfortunately, the renaming (and move) of the original 'ebtables' binary
breaks existing scripts that are calling 'ebtables' or '/sbin/ebtables'.
Therefore, add a symlink from the original path to 'ebtables-legacy'.

However, do not provide this symlink if BR2_PACKAGE_IPTABLES_NFTABLES is
enabled. In this case, the iptables package will build the new equivalent
of ebtables -- a symlink to ebtables-legacy would cause conflicts.

[1] https://wiki.nftables.org/wiki-nftables/index.php/Legacy_xtables_tools

Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
---
 package/ebtables/ebtables.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/ebtables/ebtables.mk b/package/ebtables/ebtables.mk
index 998f06f5f6..54932334c2 100644
--- a/package/ebtables/ebtables.mk
+++ b/package/ebtables/ebtables.mk
@@ -33,4 +33,11 @@ endef
 EBTABLES_POST_INSTALL_TARGET_HOOKS += EBTABLES_REMOVE_UTILS_RESTORE
 endif
 
+ifeq ($(BR2_PACKAGE_IPTABLES_NFTABLES),)
+define EBTABLES_INSTALL_LEGACY_SYMLINK
+	ln -sf /usr/sbin/ebtables-legacy $(TARGET_DIR)/sbin/ebtables
+endef
+EBTABLES_POST_INSTALL_TARGET_HOOKS += EBTABLES_INSTALL_LEGACY_SYMLINK
+endif
+
 $(eval $(autotools-package))
-- 
2.26.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] package/ebtables: install symlink to ebtables-legacy
  2021-02-16 11:58 [Buildroot] [PATCH] package/ebtables: install symlink to ebtables-legacy Thomas De Schampheleire
@ 2021-02-16 19:46 ` Baruch Siach
  2021-02-16 19:47 ` Peter Korsgaard
  2021-02-17  7:15 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Baruch Siach @ 2021-02-16 19:46 UTC (permalink / raw)
  To: buildroot

Hi Thomas,

On Tue, Feb 16 2021, Thomas De Schampheleire wrote:

> From: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
>
> Since the upgrade of ebtables from 2.0.10-4 to 2.0.11, there no longer is an
> 'ebtables' binary. It has been renamed to 'ebtables-legacy' and moved from
> '/sbin' to '/usr/sbin'. This change is part of the upstream change to
> integrate the functionality of ebtables (and arptables) in the iptables
> package, using the nf_tables kernel backend [1].
>
> Unfortunately, the renaming (and move) of the original 'ebtables' binary
> breaks existing scripts that are calling 'ebtables' or '/sbin/ebtables'.
> Therefore, add a symlink from the original path to 'ebtables-legacy'.
>
> However, do not provide this symlink if BR2_PACKAGE_IPTABLES_NFTABLES is
> enabled. In this case, the iptables package will build the new equivalent
> of ebtables -- a symlink to ebtables-legacy would cause conflicts.
>
> [1] https://wiki.nftables.org/wiki-nftables/index.php/Legacy_xtables_tools
>
> Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>

Acked-by: Baruch Siach <baruch@tkos.co.il>

Thanks,
baruch

> ---
>  package/ebtables/ebtables.mk | 7 +++++++
>  1 file changed, 7 insertions(+)
>
> diff --git a/package/ebtables/ebtables.mk b/package/ebtables/ebtables.mk
> index 998f06f5f6..54932334c2 100644
> --- a/package/ebtables/ebtables.mk
> +++ b/package/ebtables/ebtables.mk
> @@ -33,4 +33,11 @@ endef
>  EBTABLES_POST_INSTALL_TARGET_HOOKS += EBTABLES_REMOVE_UTILS_RESTORE
>  endif
>  
> +ifeq ($(BR2_PACKAGE_IPTABLES_NFTABLES),)
> +define EBTABLES_INSTALL_LEGACY_SYMLINK
> +	ln -sf /usr/sbin/ebtables-legacy $(TARGET_DIR)/sbin/ebtables
> +endef
> +EBTABLES_POST_INSTALL_TARGET_HOOKS += EBTABLES_INSTALL_LEGACY_SYMLINK
> +endif
> +
>  $(eval $(autotools-package))


-- 
                                                     ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] package/ebtables: install symlink to ebtables-legacy
  2021-02-16 11:58 [Buildroot] [PATCH] package/ebtables: install symlink to ebtables-legacy Thomas De Schampheleire
  2021-02-16 19:46 ` Baruch Siach
@ 2021-02-16 19:47 ` Peter Korsgaard
  2021-02-17  7:15 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2021-02-16 19:47 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas De Schampheleire <patrickdepinguin@gmail.com> writes:

 > From: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
 > Since the upgrade of ebtables from 2.0.10-4 to 2.0.11, there no longer is an
 > 'ebtables' binary. It has been renamed to 'ebtables-legacy' and moved from
 > '/sbin' to '/usr/sbin'. This change is part of the upstream change to
 > integrate the functionality of ebtables (and arptables) in the iptables
 > package, using the nf_tables kernel backend [1].

 > Unfortunately, the renaming (and move) of the original 'ebtables' binary
 > breaks existing scripts that are calling 'ebtables' or '/sbin/ebtables'.
 > Therefore, add a symlink from the original path to 'ebtables-legacy'.

 > However, do not provide this symlink if BR2_PACKAGE_IPTABLES_NFTABLES is
 > enabled. In this case, the iptables package will build the new equivalent
 > of ebtables -- a symlink to ebtables-legacy would cause conflicts.

 > [1] https://wiki.nftables.org/wiki-nftables/index.php/Legacy_xtables_tools

 > Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] package/ebtables: install symlink to ebtables-legacy
  2021-02-16 11:58 [Buildroot] [PATCH] package/ebtables: install symlink to ebtables-legacy Thomas De Schampheleire
  2021-02-16 19:46 ` Baruch Siach
  2021-02-16 19:47 ` Peter Korsgaard
@ 2021-02-17  7:15 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2021-02-17  7:15 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas De Schampheleire <patrickdepinguin@gmail.com> writes:

 > From: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
 > Since the upgrade of ebtables from 2.0.10-4 to 2.0.11, there no longer is an
 > 'ebtables' binary. It has been renamed to 'ebtables-legacy' and moved from
 > '/sbin' to '/usr/sbin'. This change is part of the upstream change to
 > integrate the functionality of ebtables (and arptables) in the iptables
 > package, using the nf_tables kernel backend [1].

 > Unfortunately, the renaming (and move) of the original 'ebtables' binary
 > breaks existing scripts that are calling 'ebtables' or '/sbin/ebtables'.
 > Therefore, add a symlink from the original path to 'ebtables-legacy'.

 > However, do not provide this symlink if BR2_PACKAGE_IPTABLES_NFTABLES is
 > enabled. In this case, the iptables package will build the new equivalent
 > of ebtables -- a symlink to ebtables-legacy would cause conflicts.

 > [1] https://wiki.nftables.org/wiki-nftables/index.php/Legacy_xtables_tools

 > Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>

Committed to 2020.11.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-02-17  7:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-16 11:58 [Buildroot] [PATCH] package/ebtables: install symlink to ebtables-legacy Thomas De Schampheleire
2021-02-16 19:46 ` Baruch Siach
2021-02-16 19:47 ` Peter Korsgaard
2021-02-17  7:15 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.