Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] dropbear: use https URLs
@ 2018-02-12  8:21 Danilo Bargen
  2018-02-12 11:55 ` Adrian Perez de Castro
  2018-02-13 21:07 ` Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Danilo Bargen @ 2018-02-12  8:21 UTC (permalink / raw)
  To: buildroot

While a hash check is being done, it's still better to use a download
URL with HTTPS.

Signed-off-by: Danilo Bargen <mail@dbrgn.ch>
---
 package/dropbear/Config.in   | 2 +-
 package/dropbear/dropbear.mk | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/dropbear/Config.in b/package/dropbear/Config.in
index d92361fa39..6700778161 100644
--- a/package/dropbear/Config.in
+++ b/package/dropbear/Config.in
@@ -13,7 +13,7 @@ config BR2_PACKAGE_DROPBEAR
 	  Alternatively, mount a persistent unionfs over your root
 	  filesystem.
 
-	  http://matt.ucc.asn.au/dropbear/dropbear.html
+	  https://matt.ucc.asn.au/dropbear/dropbear.html
 
 if BR2_PACKAGE_DROPBEAR
 
diff --git a/package/dropbear/dropbear.mk b/package/dropbear/dropbear.mk
index bf7f99d975..01a1a07b76 100644
--- a/package/dropbear/dropbear.mk
+++ b/package/dropbear/dropbear.mk
@@ -5,7 +5,7 @@
 ################################################################################
 
 DROPBEAR_VERSION = 2017.75
-DROPBEAR_SITE = http://matt.ucc.asn.au/dropbear/releases
+DROPBEAR_SITE = https://matt.ucc.asn.au/dropbear/releases
 DROPBEAR_SOURCE = dropbear-$(DROPBEAR_VERSION).tar.bz2
 DROPBEAR_LICENSE = MIT, BSD-2-Clause-like, BSD-2-Clause
 DROPBEAR_LICENSE_FILES = LICENSE
-- 
2.16.1

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

* [Buildroot] [PATCH] dropbear: use https URLs
  2018-02-12  8:21 [Buildroot] [PATCH] dropbear: use https URLs Danilo Bargen
@ 2018-02-12 11:55 ` Adrian Perez de Castro
  2018-02-13 21:07 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Adrian Perez de Castro @ 2018-02-12 11:55 UTC (permalink / raw)
  To: buildroot

On Mon, 12 Feb 2018 09:21:50 +0100, Danilo Bargen <mail@dbrgn.ch> wrote:
> While a hash check is being done, it's still better to use a download
> URL with HTTPS.
> 
> Signed-off-by: Danilo Bargen <mail@dbrgn.ch>
> ---
>  package/dropbear/Config.in   | 2 +-
>  package/dropbear/dropbear.mk | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/dropbear/Config.in b/package/dropbear/Config.in
> index d92361fa39..6700778161 100644
> --- a/package/dropbear/Config.in
> +++ b/package/dropbear/Config.in
> @@ -13,7 +13,7 @@ config BR2_PACKAGE_DROPBEAR
>  	  Alternatively, mount a persistent unionfs over your root
>  	  filesystem.
>  
> -	  http://matt.ucc.asn.au/dropbear/dropbear.html
> +	  https://matt.ucc.asn.au/dropbear/dropbear.html
>  
>  if BR2_PACKAGE_DROPBEAR
>  
> diff --git a/package/dropbear/dropbear.mk b/package/dropbear/dropbear.mk
> index bf7f99d975..01a1a07b76 100644
> --- a/package/dropbear/dropbear.mk
> +++ b/package/dropbear/dropbear.mk
> @@ -5,7 +5,7 @@
>  ################################################################################
>  
>  DROPBEAR_VERSION = 2017.75
> -DROPBEAR_SITE = http://matt.ucc.asn.au/dropbear/releases
> +DROPBEAR_SITE = https://matt.ucc.asn.au/dropbear/releases
>  DROPBEAR_SOURCE = dropbear-$(DROPBEAR_VERSION).tar.bz2
>  DROPBEAR_LICENSE = MIT, BSD-2-Clause-like, BSD-2-Clause
>  DROPBEAR_LICENSE_FILES = LICENSE
> -- 
> 2.16.1

Reviewed-by: Adrian Perez de Castro <aperez@igalia.com>

--
 Adri?n ?
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 195 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180212/4b708142/attachment.asc>

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

* [Buildroot] [PATCH] dropbear: use https URLs
  2018-02-12  8:21 [Buildroot] [PATCH] dropbear: use https URLs Danilo Bargen
  2018-02-12 11:55 ` Adrian Perez de Castro
@ 2018-02-13 21:07 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2018-02-13 21:07 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon, 12 Feb 2018 09:21:50 +0100, Danilo Bargen wrote:
> While a hash check is being done, it's still better to use a download
> URL with HTTPS.
> 
> Signed-off-by: Danilo Bargen <mail@dbrgn.ch>
> ---
>  package/dropbear/Config.in   | 2 +-
>  package/dropbear/dropbear.mk | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

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

end of thread, other threads:[~2018-02-13 21:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-12  8:21 [Buildroot] [PATCH] dropbear: use https URLs Danilo Bargen
2018-02-12 11:55 ` Adrian Perez de Castro
2018-02-13 21:07 ` Thomas Petazzoni

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