Re: [PATCH 01/39] ARM: imx: add image type choice

2019-12-03 Thread Sascha Hauer
On Mon, Dec 02, 2019 at 11:51:08AM +0100, Lucas Stach wrote: > Uh, sorry about this. Somehow I already had a feeling that his patch > might mess something up... > > Can you remove this single patch from the series? I'll send an updated > patch after some soak time in the randconfig builder. Did

Re: [PATCH] ARM: VFxxx: Display UID information on boot

2019-12-03 Thread Sascha Hauer
On Mon, Dec 02, 2019 at 06:56:03AM -0800, Andrey Smirnov wrote: > Cc: Chris Healy > Cc: Lucas Stach > Signed-off-by: Andrey Smirnov > --- > arch/arm/mach-imx/include/mach/vf610.h | 2 ++ > arch/arm/mach-imx/vf610.c | 8 > 2 files changed, 10 insertions(+) Applied, thanks

Re: [PATCH 1/2] HABv4: remove useless error message

2019-12-03 Thread Marc Kleine-Budde
On 12/3/19 3:36 PM, Sascha Hauer wrote: >> I think there is just one warning in the buffer: >> >>> HABv4: Status: Operation completed with warning (0x69) >>> HABv4: Config: Secure IC (0xcc) >>> HABv4: State: Trusted state (0x99) >>> HABv4: ERROR: Recompile with larger event data buffer (at least

Re: [PATCH 1/2] HABv4: remove useless error message

2019-12-03 Thread Sascha Hauer
On Tue, Dec 03, 2019 at 03:04:45PM +0100, Marc Kleine-Budde wrote: > On 12/2/19 3:30 PM, Juergen Borleis wrote: > > Am Montag, den 02.12.2019, 14:24 +0100 schrieb Marc Kleine-Budde: > >> On 12/2/19 2:07 PM, Roland Hieber wrote: > >>> On Mon, Dec 02, 2019 at 11:24:48AM +0100, Juergen Borleis wrote:

[PATCH] ARM: boards: phytec-som-imx6: Replace spi by spi-nor in bootsource script

2019-12-03 Thread Stefan Riedmueller
Commit 7802c6f891b7 ("ARM: i.MX6: boot: Return BOOTSOURCE_SPI_NOR, not BOOTSOURCE_SPI") changed the returned boot source for SPI NOR on i.MX 6 from SPI to SPI_NOR. This needs to be accounted for in the bootsource scripts. Signed-off-by: Stefan Riedmueller ---

Re: [PATCH 1/2] HABv4: remove useless error message

2019-12-03 Thread Marc Kleine-Budde
On 12/2/19 3:30 PM, Juergen Borleis wrote: > Am Montag, den 02.12.2019, 14:24 +0100 schrieb Marc Kleine-Budde: >> On 12/2/19 2:07 PM, Roland Hieber wrote: >>> On Mon, Dec 02, 2019 at 11:24:48AM +0100, Juergen Borleis wrote: This change removes the stupid error message at the end of the

[PATCH] ARM: dts: imx6qdl: phycore: Remove emmc vmmc-supply

2019-12-03 Thread Stefan Riedmueller
There is no driver for the eMMC's vmmc-supply regulator in the barebox. Use a dummy regulator instead by simply deleting the vmmc-supply property. Signed-off-by: Stefan Riedmueller --- arch/arm/dts/imx6qdl-phytec-phycore-som.dtsi | 1 + 1 file changed, 1 insertion(+) diff --git

Re: [PATCH 1/3] scripts: use #!/usr/bin/env bash shebang instead of #!/bin/bash

2019-12-03 Thread Roland Hieber
On Tue, Dec 03, 2019 at 07:46:03AM +0100, Michael Olbrich wrote: > On Thu, Nov 28, 2019 at 12:19:44AM +0100, Florian Klink wrote: > > Some distributions might not have bash in /bin, but in $PATH. > > > > Using #!/usr/bin/env bash solves this, and is consistent with how the > > perl and python

[PATCH 1/2] imd: add support for checksum generation/verification

2019-12-03 Thread Steffen Trumtrar
Add a new imd type "checksum". This type consists of the CRC32 checksum of the whole barebox image minus the checksum itself. The checksum can be written to the imd field with the bareboximd host-tool. It can be verified with said tool or with "imd" on the target. Signed-off-by: Steffen Trumtrar

[PATCH 2/2] commands: bbu: add support for imd checksum

2019-12-03 Thread Steffen Trumtrar
Add support for verifying an image by use of the imd checksum. If the checksum that is saved in the image and the one that is calculated over the image differ, barebox_update aborts. Signed-off-by: Steffen Trumtrar --- commands/barebox-update.c | 9 +++-- common/bbu.c | 6

Re: [PATCH 1/3] scripts: use #!/usr/bin/env bash shebang instead of #!/bin/bash

2019-12-03 Thread Michael Olbrich
On Tue, Dec 03, 2019 at 09:45:28AM +0100, Sascha Hauer wrote: > On Tue, Dec 03, 2019 at 07:46:03AM +0100, Michael Olbrich wrote: > > On Thu, Nov 28, 2019 at 12:19:44AM +0100, Florian Klink wrote: > > > Some distributions might not have bash in /bin, but in $PATH. > > > > > > Using #!/usr/bin/env

Re: [PATCH 1/3] scripts: use #!/usr/bin/env bash shebang instead of #!/bin/bash

2019-12-03 Thread Sascha Hauer
On Tue, Dec 03, 2019 at 07:46:03AM +0100, Michael Olbrich wrote: > On Thu, Nov 28, 2019 at 12:19:44AM +0100, Florian Klink wrote: > > Some distributions might not have bash in /bin, but in $PATH. > > > > Using #!/usr/bin/env bash solves this, and is consistent with how the > > perl and python