mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH v1 0/2] dropbear: mirror url and version bump
@ 2025-05-08 11:48 Alexander Dahl via ptxdist
  2025-05-08 11:48 ` [ptxdist] [PATCH v1 1/2] dropbear: Add mirror URL Alexander Dahl via ptxdist
  2025-05-08 11:48 ` [ptxdist] [PATCH v1 2/2] dropbear: version bump 2022.83 -> 2025.88 Alexander Dahl via ptxdist
  0 siblings, 2 replies; 5+ messages in thread
From: Alexander Dahl via ptxdist @ 2025-05-08 11:48 UTC (permalink / raw)
  To: ptxdist; +Cc: Alexander Dahl

Hello,

a new dropbear version is out.  Quite some changes accumulated since 3
years ago, including two fixes for security issues.  The mirror url
patch is optional.  Tested briefly on at91 sam9x60 based armv5 target.

Greets
Alex

Alexander Dahl (2):
  dropbear: Add mirror URL
  dropbear: version bump 2022.83 -> 2025.88

 rules/dropbear.make | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)


base-commit: 07e73af2896186728df06a101cfafa1ab3f58e52
-- 
2.39.5




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

* [ptxdist] [PATCH v1 1/2] dropbear: Add mirror URL
  2025-05-08 11:48 [ptxdist] [PATCH v1 0/2] dropbear: mirror url and version bump Alexander Dahl via ptxdist
@ 2025-05-08 11:48 ` Alexander Dahl via ptxdist
  2025-05-14  6:08   ` [ptxdist] [APPLIED] " Michael Olbrich
  2025-05-08 11:48 ` [ptxdist] [PATCH v1 2/2] dropbear: version bump 2022.83 -> 2025.88 Alexander Dahl via ptxdist
  1 sibling, 1 reply; 5+ messages in thread
From: Alexander Dahl via ptxdist @ 2025-05-08 11:48 UTC (permalink / raw)
  To: ptxdist; +Cc: Alexander Dahl

Officially announced in last release announcement.

Link: https://lists.ucc.gu.uwa.edu.au/pipermail/dropbear/2025q2/002385.html
Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
 rules/dropbear.make | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/rules/dropbear.make b/rules/dropbear.make
index dfdbe572d..ee4f98040 100644
--- a/rules/dropbear.make
+++ b/rules/dropbear.make
@@ -20,7 +20,9 @@ DROPBEAR_VERSION	:= 2022.83
 DROPBEAR_MD5		:= a75a34bcc03cacf71a2db9da3b7c94a5
 DROPBEAR		:= dropbear-$(DROPBEAR_VERSION)
 DROPBEAR_SUFFIX		:= tar.bz2
-DROPBEAR_URL		:= https://matt.ucc.asn.au/dropbear/releases/$(DROPBEAR).$(DROPBEAR_SUFFIX)
+DROPBEAR_URL		:= \
+	https://matt.ucc.asn.au/dropbear/releases/$(DROPBEAR).$(DROPBEAR_SUFFIX) \
+	https://dropbear.nl/mirror/releases/$(DROPBEAR).$(DROPBEAR_SUFFIX)
 DROPBEAR_SOURCE		:= $(SRCDIR)/$(DROPBEAR).$(DROPBEAR_SUFFIX)
 DROPBEAR_DIR		:= $(BUILDDIR)/$(DROPBEAR)
 DROPBEAR_LICENSE	:= \
-- 
2.39.5




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

* [ptxdist] [PATCH v1 2/2] dropbear: version bump 2022.83 -> 2025.88
  2025-05-08 11:48 [ptxdist] [PATCH v1 0/2] dropbear: mirror url and version bump Alexander Dahl via ptxdist
  2025-05-08 11:48 ` [ptxdist] [PATCH v1 1/2] dropbear: Add mirror URL Alexander Dahl via ptxdist
@ 2025-05-08 11:48 ` Alexander Dahl via ptxdist
  2025-05-14  6:08   ` [ptxdist] [APPLIED] " Michael Olbrich
  1 sibling, 1 reply; 5+ messages in thread
From: Alexander Dahl via ptxdist @ 2025-05-08 11:48 UTC (permalink / raw)
  To: ptxdist; +Cc: Alexander Dahl

2024.84: Mitigates CVE-2023-48795.
2024.85: Build regression fixes.
2024.86: Small fixes and improvements.
2025.87: Post-quantum key exchange methods, and disables sha1 by default.
2025.88: Few regression fixes, and mitigates CVE-2025-47203.

Link: https://lists.ucc.gu.uwa.edu.au/pipermail/dropbear/2024q2/002365.html
Link: https://lists.ucc.gu.uwa.edu.au/pipermail/dropbear/2024q2/002368.html
Link: https://lists.ucc.gu.uwa.edu.au/pipermail/dropbear/2024q4/002379.html
Link: https://lists.ucc.gu.uwa.edu.au/pipermail/dropbear/2025q1/002384.html
Link: https://lists.ucc.gu.uwa.edu.au/pipermail/dropbear/2025q2/002385.html
Link: https://matt.ucc.asn.au/dropbear/CHANGES
Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
 rules/dropbear.make | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/rules/dropbear.make b/rules/dropbear.make
index ee4f98040..79cb8873e 100644
--- a/rules/dropbear.make
+++ b/rules/dropbear.make
@@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_DROPBEAR) += dropbear
 #
 # Paths and names
 #
-DROPBEAR_VERSION	:= 2022.83
-DROPBEAR_MD5		:= a75a34bcc03cacf71a2db9da3b7c94a5
+DROPBEAR_VERSION	:= 2025.88
+DROPBEAR_MD5		:= 510165167b102589d64144cab4477b6c
 DROPBEAR		:= dropbear-$(DROPBEAR_VERSION)
 DROPBEAR_SUFFIX		:= tar.bz2
 DROPBEAR_URL		:= \
@@ -31,7 +31,7 @@ DROPBEAR_LICENSE_FILES	:= \
 	file://LICENSE;md5=25cf44512b7bc8966a48b6b1a9b7605f \
 	file://libtomcrypt/LICENSE;md5=71baacc459522324ef3e2b9e052e8180 \
 	file://libtommath/LICENSE;md5=23e7e0a32e53a2b1d35f5fd9ef053402 \
-	file://loginrec.c;startline=1;endline=26;md5=0d785ee11fab1cead2c7fee9c35574f1
+	file://src/loginrec.c;startline=1;endline=26;md5=0d785ee11fab1cead2c7fee9c35574f1
 
 # ----------------------------------------------------------------------------
 # Prepare
-- 
2.39.5




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

* Re: [ptxdist] [APPLIED] dropbear: Add mirror URL
  2025-05-08 11:48 ` [ptxdist] [PATCH v1 1/2] dropbear: Add mirror URL Alexander Dahl via ptxdist
@ 2025-05-14  6:08   ` Michael Olbrich
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Olbrich @ 2025-05-14  6:08 UTC (permalink / raw)
  To: ptxdist; +Cc: Alexander Dahl

Thanks, applied as 6a89a3bb5ad61b0a8d70ddef367aee7d239df63e.

Michael

[sent from post-receive hook]

On Wed, 14 May 2025 08:08:02 +0200, Alexander Dahl <ada@thorsis.com> wrote:
> Officially announced in last release announcement.
> 
> Link: https://lists.ucc.gu.uwa.edu.au/pipermail/dropbear/2025q2/002385.html
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> Message-Id: <20250508114856.270879-2-ada@thorsis.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/dropbear.make b/rules/dropbear.make
> index dfdbe572d8ce..ee4f980403f5 100644
> --- a/rules/dropbear.make
> +++ b/rules/dropbear.make
> @@ -20,7 +20,9 @@ DROPBEAR_VERSION	:= 2022.83
>  DROPBEAR_MD5		:= a75a34bcc03cacf71a2db9da3b7c94a5
>  DROPBEAR		:= dropbear-$(DROPBEAR_VERSION)
>  DROPBEAR_SUFFIX		:= tar.bz2
> -DROPBEAR_URL		:= https://matt.ucc.asn.au/dropbear/releases/$(DROPBEAR).$(DROPBEAR_SUFFIX)
> +DROPBEAR_URL		:= \
> +	https://matt.ucc.asn.au/dropbear/releases/$(DROPBEAR).$(DROPBEAR_SUFFIX) \
> +	https://dropbear.nl/mirror/releases/$(DROPBEAR).$(DROPBEAR_SUFFIX)
>  DROPBEAR_SOURCE		:= $(SRCDIR)/$(DROPBEAR).$(DROPBEAR_SUFFIX)
>  DROPBEAR_DIR		:= $(BUILDDIR)/$(DROPBEAR)
>  DROPBEAR_LICENSE	:= \



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

* Re: [ptxdist] [APPLIED] dropbear: version bump 2022.83 -> 2025.88
  2025-05-08 11:48 ` [ptxdist] [PATCH v1 2/2] dropbear: version bump 2022.83 -> 2025.88 Alexander Dahl via ptxdist
@ 2025-05-14  6:08   ` Michael Olbrich
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Olbrich @ 2025-05-14  6:08 UTC (permalink / raw)
  To: ptxdist; +Cc: Alexander Dahl

Thanks, applied as 14e37d712c883d39eadc25f3df40e432fbd29769.

Michael

[sent from post-receive hook]

On Wed, 14 May 2025 08:08:03 +0200, Alexander Dahl <ada@thorsis.com> wrote:
> 2024.84: Mitigates CVE-2023-48795.
> 2024.85: Build regression fixes.
> 2024.86: Small fixes and improvements.
> 2025.87: Post-quantum key exchange methods, and disables sha1 by default.
> 2025.88: Few regression fixes, and mitigates CVE-2025-47203.
> 
> Link: https://lists.ucc.gu.uwa.edu.au/pipermail/dropbear/2024q2/002365.html
> Link: https://lists.ucc.gu.uwa.edu.au/pipermail/dropbear/2024q2/002368.html
> Link: https://lists.ucc.gu.uwa.edu.au/pipermail/dropbear/2024q4/002379.html
> Link: https://lists.ucc.gu.uwa.edu.au/pipermail/dropbear/2025q1/002384.html
> Link: https://lists.ucc.gu.uwa.edu.au/pipermail/dropbear/2025q2/002385.html
> Link: https://matt.ucc.asn.au/dropbear/CHANGES
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> Message-Id: <20250508114856.270879-3-ada@thorsis.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/dropbear.make b/rules/dropbear.make
> index ee4f980403f5..79cb8873e3e1 100644
> --- a/rules/dropbear.make
> +++ b/rules/dropbear.make
> @@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_DROPBEAR) += dropbear
>  #
>  # Paths and names
>  #
> -DROPBEAR_VERSION	:= 2022.83
> -DROPBEAR_MD5		:= a75a34bcc03cacf71a2db9da3b7c94a5
> +DROPBEAR_VERSION	:= 2025.88
> +DROPBEAR_MD5		:= 510165167b102589d64144cab4477b6c
>  DROPBEAR		:= dropbear-$(DROPBEAR_VERSION)
>  DROPBEAR_SUFFIX		:= tar.bz2
>  DROPBEAR_URL		:= \
> @@ -31,7 +31,7 @@ DROPBEAR_LICENSE_FILES	:= \
>  	file://LICENSE;md5=25cf44512b7bc8966a48b6b1a9b7605f \
>  	file://libtomcrypt/LICENSE;md5=71baacc459522324ef3e2b9e052e8180 \
>  	file://libtommath/LICENSE;md5=23e7e0a32e53a2b1d35f5fd9ef053402 \
> -	file://loginrec.c;startline=1;endline=26;md5=0d785ee11fab1cead2c7fee9c35574f1
> +	file://src/loginrec.c;startline=1;endline=26;md5=0d785ee11fab1cead2c7fee9c35574f1
>  
>  # ----------------------------------------------------------------------------
>  # Prepare



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

end of thread, other threads:[~2025-05-14  6:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-05-08 11:48 [ptxdist] [PATCH v1 0/2] dropbear: mirror url and version bump Alexander Dahl via ptxdist
2025-05-08 11:48 ` [ptxdist] [PATCH v1 1/2] dropbear: Add mirror URL Alexander Dahl via ptxdist
2025-05-14  6:08   ` [ptxdist] [APPLIED] " Michael Olbrich
2025-05-08 11:48 ` [ptxdist] [PATCH v1 2/2] dropbear: version bump 2022.83 -> 2025.88 Alexander Dahl via ptxdist
2025-05-14  6:08   ` [ptxdist] [APPLIED] " Michael Olbrich

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