All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/mender: bump version to 2.0
@ 2019-05-28 11:59 deinok at deinok.com
  2019-05-28 11:59 ` [Buildroot] [PATCH 2/2] package/mender: better default mender.config deinok at deinok.com
  2019-05-28 18:47 ` [Buildroot] [PATCH 1/2] package/mender: bump version to 2.0 Mirza Krak
  0 siblings, 2 replies; 8+ messages in thread
From: deinok at deinok.com @ 2019-05-28 11:59 UTC (permalink / raw)
  To: buildroot

From: deinok <deinok@deinok.com>

Signed-off-by: deinok <deinok@deinok.com>
---
 package/mender/Config.in   | 1 +
 package/mender/mender.hash | 2 +-
 package/mender/mender.mk   | 3 ++-
 3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/mender/Config.in b/package/mender/Config.in
index 5ab2304e49..3fc93f9f06 100644
--- a/package/mender/Config.in
+++ b/package/mender/Config.in
@@ -5,6 +5,7 @@ config BR2_PACKAGE_MENDER
 	depends on BR2_TOOLCHAIN_HAS_THREADS
 	select BR2_PACKAGE_UBOOT_TOOLS # runtime
 	select BR2_PACKAGE_UBOOT_TOOLS_FWPRINTENV # runtime
+	select BR2_PACKAGE_XZ
 	help
 	  Mender is an open source over-the-air (OTA) software updater
 	  for embedded Linux devices. Mender comprises a client
diff --git a/package/mender/mender.hash b/package/mender/mender.hash
index 89aec239b1..d5c319e9c5 100644
--- a/package/mender/mender.hash
+++ b/package/mender/mender.hash
@@ -1,5 +1,5 @@
 # Locally computed:
-sha256 caee18d1b8446df0cbb9a9c5a1c040d7eb1924332da94c3489494443a8077eb8 1.7.0.tar.gz
+sha256 af37a11c4189097b485254c35450f289b078bc61f6a230d6540743f202d81b98 2.0.0.tar.gz
 
 # Apache-2.0 license, locally computed
 sha256 98ed35b5a138f58164b5c0dbccd9d7f01ef4d84b9dba01e896f0a3241c50c0f7 LICENSE
diff --git a/package/mender/mender.mk b/package/mender/mender.mk
index 07f6e5e5f9..132b09c738 100644
--- a/package/mender/mender.mk
+++ b/package/mender/mender.mk
@@ -4,10 +4,11 @@
 #
 ################################################################################
 
-MENDER_VERSION = 1.7.0
+MENDER_VERSION = 2.0.0
 MENDER_SITE = https://github.com/mendersoftware/mender/archive
 MENDER_SOURCE = $(MENDER_VERSION).tar.gz
 MENDER_LICENSE = Apache-2.0, BSD-2-Clause, BSD-3-Clause, ISC, MIT, OLDAP-2.8
+MENDER_DEPENDENCIES = xz
 
 # Vendor license paths generated with:
 #    awk '{print $2}' LIC_FILES_CHKSUM.sha256 | grep vendor
-- 
2.17.1

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

* [Buildroot] [PATCH 2/2] package/mender: better default mender.config
  2019-05-28 11:59 [Buildroot] [PATCH 1/2] package/mender: bump version to 2.0 deinok at deinok.com
@ 2019-05-28 11:59 ` deinok at deinok.com
  2019-05-28 18:47 ` [Buildroot] [PATCH 1/2] package/mender: bump version to 2.0 Mirza Krak
  1 sibling, 0 replies; 8+ messages in thread
From: deinok at deinok.com @ 2019-05-28 11:59 UTC (permalink / raw)
  To: buildroot

From: deinok <deinok@deinok.com>

Signed-off-by: deinok <deinok@deinok.com>
---
 package/mender/mender.conf | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/mender/mender.conf b/package/mender/mender.conf
index 979f16aaf6..7eb9fb18b4 100644
--- a/package/mender/mender.conf
+++ b/package/mender/mender.conf
@@ -2,9 +2,9 @@
   "InventoryPollIntervalSeconds": 1800,
   "UpdatePollIntervalSeconds": 1800,
   "RetryPollIntervalSeconds": 300,
-  "RootfsPartA": "mmcblk0p2",
-  "RootfsPartB": "mmcblk0p3",
+  "RootfsPartA": "/dev/mmcblk0p1",
+  "RootfsPartB": "/dev/mmcblk0p2",
   "ServerCertificate": "/etc/mender/server.crt",
-  "ServerURL": "https://docker.mender.io",
+  "ServerURL": "https://hosted.mender.io",
   "TenantToken": "dummy"
 }
-- 
2.17.1

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

* [Buildroot] [PATCH 1/2] package/mender: bump version to 2.0
  2019-05-28 11:59 [Buildroot] [PATCH 1/2] package/mender: bump version to 2.0 deinok at deinok.com
  2019-05-28 11:59 ` [Buildroot] [PATCH 2/2] package/mender: better default mender.config deinok at deinok.com
@ 2019-05-28 18:47 ` Mirza Krak
  2019-05-28 20:39   ` Arnout Vandecappelle
  1 sibling, 1 reply; 8+ messages in thread
From: Mirza Krak @ 2019-05-28 18:47 UTC (permalink / raw)
  To: buildroot

On Tue, May 28, 2019 at 1:59 PM <deinok@deinok.com> wrote:
>
> From: deinok <deinok@deinok.com>
>
> Signed-off-by: deinok <deinok@deinok.com>
> ---
>  package/mender/Config.in   | 1 +
>  package/mender/mender.hash | 2 +-
>  package/mender/mender.mk   | 3 ++-
>  3 files changed, 4 insertions(+), 2 deletions(-)


There is already a patch pending for the 2.0.0 bump, [1].

[1]. https://patchwork.ozlabs.org/patch/1097130/
-- 
Mirza Krak | Embedded Solutions Architect | https://mender.io

 Northern.tech AS | @northerntechHQ

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

* [Buildroot] [PATCH 1/2] package/mender: bump version to 2.0
  2019-05-28 18:47 ` [Buildroot] [PATCH 1/2] package/mender: bump version to 2.0 Mirza Krak
@ 2019-05-28 20:39   ` Arnout Vandecappelle
  2019-05-29  8:03     ` Mirza Krak
  0 siblings, 1 reply; 8+ messages in thread
From: Arnout Vandecappelle @ 2019-05-28 20:39 UTC (permalink / raw)
  To: buildroot



On 28/05/2019 20:47, Mirza Krak wrote:
> On Tue, May 28, 2019 at 1:59 PM <deinok@deinok.com> wrote:
>>
>> From: deinok <deinok@deinok.com>
>>
>> Signed-off-by: deinok <deinok@deinok.com>
>> ---
>>  package/mender/Config.in   | 1 +
>>  package/mender/mender.hash | 2 +-
>>  package/mender/mender.mk   | 3 ++-
>>  3 files changed, 4 insertions(+), 2 deletions(-)
> 
> 
> There is already a patch pending for the 2.0.0 bump, [1].
> 
> [1]. https://patchwork.ozlabs.org/patch/1097130/

 That one, however, is marked as Changes Requested because it failed to explain
why the license file hashes have changed.

 Since this patch doesn't even update the license file hashes, I've alse marked
it as changes requested. Hint: test the version bump with 'make legal-info'.

 Regards,
 Arnout

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

* [Buildroot] [PATCH 1/2] package/mender: bump version to 2.0
  2019-05-28 20:39   ` Arnout Vandecappelle
@ 2019-05-29  8:03     ` Mirza Krak
  2019-05-29 13:24       ` Raul Hidalgo Caballero
  0 siblings, 1 reply; 8+ messages in thread
From: Mirza Krak @ 2019-05-29  8:03 UTC (permalink / raw)
  To: buildroot

On Tue, May 28, 2019 at 10:39 PM Arnout Vandecappelle <arnout@mind.be>
wrote:

>
>
> On 28/05/2019 20:47, Mirza Krak wrote:
> > On Tue, May 28, 2019 at 1:59 PM <deinok@deinok.com> wrote:
> >>
> >> From: deinok <deinok@deinok.com>
> >>
> >> Signed-off-by: deinok <deinok@deinok.com>
> >> ---
> >>  package/mender/Config.in   | 1 +
> >>  package/mender/mender.hash | 2 +-
> >>  package/mender/mender.mk   | 3 ++-
> >>  3 files changed, 4 insertions(+), 2 deletions(-)
> >
> >
> > There is already a patch pending for the 2.0.0 bump, [1].
> >
> > [1]. https://patchwork.ozlabs.org/patch/1097130/
>
>  That one, however, is marked as Changes Requested because it failed to
> explain
> why the license file hashes have changed.
>

Yeah I noticed that, but what I was trying to get at was to try to
coordinate this instead of creating duplicates.


>  Since this patch doesn't even update the license file hashes, I've alse
> marked
> it as changes requested. Hint: test the version bump with 'make
> legal-info'.
>

For info to who ever creates a v2 patch, the license hash change in
mendersoftware/mender is due to a an update to copyright year in the
LICENSE file. The vendor hashes only seem to have different indentation and
that is why git produced a diff, the hashes seem to be the same.

-- 
Mirza Krak | Embedded Solutions Architect | https://mender.io

 Northern.tech AS <https://northern.tech> | @northerntechHQ
<https://twitter.com/northerntechhq>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20190529/cef1c851/attachment.html>

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

* [Buildroot] [PATCH 1/2] package/mender: bump version to 2.0
  2019-05-29  8:03     ` Mirza Krak
@ 2019-05-29 13:24       ` Raul Hidalgo Caballero
  2019-05-29 13:53         ` Arnout Vandecappelle
  0 siblings, 1 reply; 8+ messages in thread
From: Raul Hidalgo Caballero @ 2019-05-29 13:24 UTC (permalink / raw)
  To: buildroot

For me, aduskett's patch is okey.
But for me is important to have the latest mender and mender-artifact in
the 2019.05 as it will be our main update mechanism for a bus system

On Wed, May 29, 2019 at 10:03 AM Mirza Krak <mirza.krak@northern.tech>
wrote:

> On Tue, May 28, 2019 at 10:39 PM Arnout Vandecappelle <arnout@mind.be>
> wrote:
>
>>
>>
>> On 28/05/2019 20:47, Mirza Krak wrote:
>> > On Tue, May 28, 2019 at 1:59 PM <deinok@deinok.com> wrote:
>> >>
>> >> From: deinok <deinok@deinok.com>
>> >>
>> >> Signed-off-by: deinok <deinok@deinok.com>
>> >> ---
>> >>  package/mender/Config.in   | 1 +
>> >>  package/mender/mender.hash | 2 +-
>> >>  package/mender/mender.mk   | 3 ++-
>> >>  3 files changed, 4 insertions(+), 2 deletions(-)
>> >
>> >
>> > There is already a patch pending for the 2.0.0 bump, [1].
>> >
>> > [1]. https://patchwork.ozlabs.org/patch/1097130/
>>
>>  That one, however, is marked as Changes Requested because it failed to
>> explain
>> why the license file hashes have changed.
>>
>
> Yeah I noticed that, but what I was trying to get at was to try to
> coordinate this instead of creating duplicates.
>
>
>>  Since this patch doesn't even update the license file hashes, I've alse
>> marked
>> it as changes requested. Hint: test the version bump with 'make
>> legal-info'.
>>
>
> For info to who ever creates a v2 patch, the license hash change in
> mendersoftware/mender is due to a an update to copyright year in the
> LICENSE file. The vendor hashes only seem to have different indentation and
> that is why git produced a diff, the hashes seem to be the same.
>
> --
> Mirza Krak | Embedded Solutions Architect | https://mender.io
>
>  Northern.tech AS <https://northern.tech> | @northerntechHQ
> <https://twitter.com/northerntechhq>
>
>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20190529/693e105c/attachment.html>

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

* [Buildroot] [PATCH 1/2] package/mender: bump version to 2.0
  2019-05-29 13:24       ` Raul Hidalgo Caballero
@ 2019-05-29 13:53         ` Arnout Vandecappelle
  0 siblings, 0 replies; 8+ messages in thread
From: Arnout Vandecappelle @ 2019-05-29 13:53 UTC (permalink / raw)
  To: buildroot



On 29/05/2019 15:24, Raul Hidalgo Caballero wrote:
> For me, aduskett's patch is okey.?
> But for me is important to have the latest mender and mender-artifact in
> the?2019.05 as it will be our main update mechanism for a bus system

 Sorry, that's not going to happen. We don't do version bumps anymore for
2019.05. Only pure security bumps.

 Regards,
 Arnout

> 
> On Wed, May 29, 2019 at 10:03 AM Mirza Krak <mirza.krak@northern.tech> wrote:
> 
>     On Tue, May 28, 2019 at 10:39 PM Arnout Vandecappelle <arnout@mind.be
>     <mailto:arnout@mind.be>> wrote:
> 
> 
> 
>         On 28/05/2019 20:47, Mirza Krak wrote:
>         > On Tue, May 28, 2019 at 1:59 PM <deinok@deinok.com
>         <mailto:deinok@deinok.com>> wrote:
>         >>
>         >> From: deinok <deinok at deinok.com <mailto:deinok@deinok.com>>
>         >>
>         >> Signed-off-by: deinok <deinok at deinok.com <mailto:deinok@deinok.com>>
>         >> ---
>         >>? package/mender/Config.in? ?| 1 +
>         >>? package/mender/mender.hash | 2 +-
>         >>? package/mender/mender.mk <http://mender.mk>? ?| 3 ++-
>         >>? 3 files changed, 4 insertions(+), 2 deletions(-)
>         >
>         >
>         > There is already a patch pending for the 2.0.0 bump, [1].
>         >
>         > [1]. https://patchwork.ozlabs.org/patch/1097130/
> 
>         ?That one, however, is marked as Changes Requested because it failed to
>         explain
>         why the license file hashes have changed.
> 
> 
>     Yeah I noticed that, but what I was trying to get at was to try to
>     coordinate this instead of creating duplicates.
> 
> 
>         ?Since this patch doesn't even update the license file hashes, I've alse
>         marked
>         it as changes requested. Hint: test the version bump with 'make legal-info'.
> 
> 
>     For info to who ever creates a v2 patch, the license hash change in
>     mendersoftware/mender is due to a an update to copyright year in the LICENSE
>     file. The vendor hashes only seem to have different indentation and that is
>     why git produced a diff, the hashes seem to be the same.
> 
>     -- 
>     Mirza Krak | Embedded Solutions Architect |?https://mender.io
> 
>     ?Northern.tech AS <https://northern.tech>?|?@northerntechHQ
>     <https://twitter.com/northerntechhq>
> 
> 
> 
> 

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

* [Buildroot] [PATCH 1/2] package/mender: bump version to 2.0
@ 2019-05-28 13:41 deinok at deinok.com
  0 siblings, 0 replies; 8+ messages in thread
From: deinok at deinok.com @ 2019-05-28 13:41 UTC (permalink / raw)
  To: buildroot

From: deinok <deinok@deinok.com>

Signed-off-by: Raul Hidalgo Caballero <deinok@deinok.com>
---
 package/mender/Config.in   | 1 +
 package/mender/mender.hash | 2 +-
 package/mender/mender.mk   | 3 ++-
 3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/mender/Config.in b/package/mender/Config.in
index 5ab2304e49..3fc93f9f06 100644
--- a/package/mender/Config.in
+++ b/package/mender/Config.in
@@ -5,6 +5,7 @@ config BR2_PACKAGE_MENDER
 	depends on BR2_TOOLCHAIN_HAS_THREADS
 	select BR2_PACKAGE_UBOOT_TOOLS # runtime
 	select BR2_PACKAGE_UBOOT_TOOLS_FWPRINTENV # runtime
+	select BR2_PACKAGE_XZ
 	help
 	  Mender is an open source over-the-air (OTA) software updater
 	  for embedded Linux devices. Mender comprises a client
diff --git a/package/mender/mender.hash b/package/mender/mender.hash
index 89aec239b1..d5c319e9c5 100644
--- a/package/mender/mender.hash
+++ b/package/mender/mender.hash
@@ -1,5 +1,5 @@
 # Locally computed:
-sha256 caee18d1b8446df0cbb9a9c5a1c040d7eb1924332da94c3489494443a8077eb8 1.7.0.tar.gz
+sha256 af37a11c4189097b485254c35450f289b078bc61f6a230d6540743f202d81b98 2.0.0.tar.gz
 
 # Apache-2.0 license, locally computed
 sha256 98ed35b5a138f58164b5c0dbccd9d7f01ef4d84b9dba01e896f0a3241c50c0f7 LICENSE
diff --git a/package/mender/mender.mk b/package/mender/mender.mk
index 07f6e5e5f9..132b09c738 100644
--- a/package/mender/mender.mk
+++ b/package/mender/mender.mk
@@ -4,10 +4,11 @@
 #
 ################################################################################
 
-MENDER_VERSION = 1.7.0
+MENDER_VERSION = 2.0.0
 MENDER_SITE = https://github.com/mendersoftware/mender/archive
 MENDER_SOURCE = $(MENDER_VERSION).tar.gz
 MENDER_LICENSE = Apache-2.0, BSD-2-Clause, BSD-3-Clause, ISC, MIT, OLDAP-2.8
+MENDER_DEPENDENCIES = xz
 
 # Vendor license paths generated with:
 #    awk '{print $2}' LIC_FILES_CHKSUM.sha256 | grep vendor
-- 
2.17.1

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

end of thread, other threads:[~2019-05-29 13:53 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-28 11:59 [Buildroot] [PATCH 1/2] package/mender: bump version to 2.0 deinok at deinok.com
2019-05-28 11:59 ` [Buildroot] [PATCH 2/2] package/mender: better default mender.config deinok at deinok.com
2019-05-28 18:47 ` [Buildroot] [PATCH 1/2] package/mender: bump version to 2.0 Mirza Krak
2019-05-28 20:39   ` Arnout Vandecappelle
2019-05-29  8:03     ` Mirza Krak
2019-05-29 13:24       ` Raul Hidalgo Caballero
2019-05-29 13:53         ` Arnout Vandecappelle
2019-05-28 13:41 deinok at deinok.com

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.