Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/wireguard-linux-compat: bump version to 0.0.20200215
@ 2020-02-15 18:20 Peter Korsgaard
  2020-02-15 18:20 ` [Buildroot] [PATCH 2/2] linux: use correct conditional for wireguard kernel config fixup Peter Korsgaard
  2020-02-16 14:27 ` [Buildroot] [PATCH 1/2] package/wireguard-linux-compat: bump version to 0.0.20200215 Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Peter Korsgaard @ 2020-02-15 18:20 UTC (permalink / raw)
  To: buildroot

Fixes a regression introduced in 0.0.20200214.  For details, see the
announcement:
https://lists.zx2c4.com/pipermail/wireguard/2020-February/005014.html

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 package/wireguard-linux-compat/wireguard-linux-compat.hash | 4 ++--
 package/wireguard-linux-compat/wireguard-linux-compat.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/wireguard-linux-compat/wireguard-linux-compat.hash b/package/wireguard-linux-compat/wireguard-linux-compat.hash
index 5c0962d85d..9e33c22f02 100644
--- a/package/wireguard-linux-compat/wireguard-linux-compat.hash
+++ b/package/wireguard-linux-compat/wireguard-linux-compat.hash
@@ -1,4 +1,4 @@
-# https://lists.zx2c4.com/pipermail/wireguard/2020-February/005013.html
-sha256  6aaed62beb23803a456b7875a56e9462125a589c9dfb6d0b672c1a8f9f3f45ab  wireguard-linux-compat-0.0.20200214.tar.xz
+# https://lists.zx2c4.com/pipermail/wireguard/2020-February/005014.html
+sha256  0def6f3608ec06f6dfc454aa5281a7c38b06ff27096cb341448d20602da4e923  wireguard-linux-compat-0.0.20200215.tar.xz
 # Locally calculated
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  COPYING
diff --git a/package/wireguard-linux-compat/wireguard-linux-compat.mk b/package/wireguard-linux-compat/wireguard-linux-compat.mk
index 057fee7fce..747cef3e50 100644
--- a/package/wireguard-linux-compat/wireguard-linux-compat.mk
+++ b/package/wireguard-linux-compat/wireguard-linux-compat.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-WIREGUARD_LINUX_COMPAT_VERSION = 0.0.20200214
+WIREGUARD_LINUX_COMPAT_VERSION = 0.0.20200215
 WIREGUARD_LINUX_COMPAT_SITE = https://git.zx2c4.com/wireguard-linux-compat/snapshot
 WIREGUARD_LINUX_COMPAT_SOURCE = wireguard-linux-compat-$(WIREGUARD_LINUX_COMPAT_VERSION).tar.xz
 WIREGUARD_LINUX_COMPAT_LICENSE = GPL-2.0
-- 
2.20.1

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

* [Buildroot] [PATCH 2/2] linux: use correct conditional for wireguard kernel config fixup
  2020-02-15 18:20 [Buildroot] [PATCH 1/2] package/wireguard-linux-compat: bump version to 0.0.20200215 Peter Korsgaard
@ 2020-02-15 18:20 ` Peter Korsgaard
  2020-02-16 14:27   ` Peter Korsgaard
  2020-02-16 14:27 ` [Buildroot] [PATCH 1/2] package/wireguard-linux-compat: bump version to 0.0.20200215 Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Peter Korsgaard @ 2020-02-15 18:20 UTC (permalink / raw)
  To: buildroot

Commit de591c5c3a93 (package/wireguard-linux-compat: new package) split up
the wireguard package in wireguard-tools and wireguard-linux-compat, but
forgot to update the conditional in linux.mk, so the kernel config fixups
needed for wireguard are no longer applied.

Update the conditional to use the BR2_PACKAGE_WIREGUARD_LINUX_COMPAT symbol
instead.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 linux/linux.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/linux/linux.mk b/linux/linux.mk
index bf308b807a..4b60f33ff3 100644
--- a/linux/linux.mk
+++ b/linux/linux.mk
@@ -392,7 +392,7 @@ define LINUX_KCONFIG_FIXUP_CMDS
 		$(call KCONFIG_ENABLE_OPT,CONFIG_NF_CONNTRACK,$(@D)/.config)
 		$(call KCONFIG_ENABLE_OPT,CONFIG_NF_CONNTRACK_MARK,$(@D)/.config)
 		$(call KCONFIG_ENABLE_OPT,CONFIG_NF_NAT,$(@D)/.config))
-	$(if $(BR2_PACKAGE_WIREGUARD),
+	$(if $(BR2_PACKAGE_WIREGUARD_LINUX_COMPAT),
 		$(call KCONFIG_ENABLE_OPT,CONFIG_INET,$(@D)/.config)
 		$(call KCONFIG_ENABLE_OPT,CONFIG_NET,$(@D)/.config)
 		$(call KCONFIG_ENABLE_OPT,CONFIG_NET_FOU,$(@D)/.config)
-- 
2.20.1

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

* [Buildroot] [PATCH 1/2] package/wireguard-linux-compat: bump version to 0.0.20200215
  2020-02-15 18:20 [Buildroot] [PATCH 1/2] package/wireguard-linux-compat: bump version to 0.0.20200215 Peter Korsgaard
  2020-02-15 18:20 ` [Buildroot] [PATCH 2/2] linux: use correct conditional for wireguard kernel config fixup Peter Korsgaard
@ 2020-02-16 14:27 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2020-02-16 14:27 UTC (permalink / raw)
  To: buildroot

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

 > Fixes a regression introduced in 0.0.20200214.  For details, see the
 > announcement:
 > https://lists.zx2c4.com/pipermail/wireguard/2020-February/005014.html

 > Signed-off-by: Peter Korsgaard <peter@korsgaard.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] linux: use correct conditional for wireguard kernel config fixup
  2020-02-15 18:20 ` [Buildroot] [PATCH 2/2] linux: use correct conditional for wireguard kernel config fixup Peter Korsgaard
@ 2020-02-16 14:27   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2020-02-16 14:27 UTC (permalink / raw)
  To: buildroot

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

 > Commit de591c5c3a93 (package/wireguard-linux-compat: new package) split up
 > the wireguard package in wireguard-tools and wireguard-linux-compat, but
 > forgot to update the conditional in linux.mk, so the kernel config fixups
 > needed for wireguard are no longer applied.

 > Update the conditional to use the BR2_PACKAGE_WIREGUARD_LINUX_COMPAT symbol
 > instead.

 > Signed-off-by: Peter Korsgaard <peter@korsgaard.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2020-02-16 14:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-15 18:20 [Buildroot] [PATCH 1/2] package/wireguard-linux-compat: bump version to 0.0.20200215 Peter Korsgaard
2020-02-15 18:20 ` [Buildroot] [PATCH 2/2] linux: use correct conditional for wireguard kernel config fixup Peter Korsgaard
2020-02-16 14:27   ` Peter Korsgaard
2020-02-16 14:27 ` [Buildroot] [PATCH 1/2] package/wireguard-linux-compat: bump version to 0.0.20200215 Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox