Re: FW: Handling boot on NAND Bad Blocks

2017-11-30 Thread Robert Schwebel
On Fri, Nov 24, 2017 at 08:49:22AM +, Kjell Ove Røte wrote: > In the original case the board just reboots when the Barebox is to be loaded > from the bootstream image. > In log below you see that the power_prep and boot_prep is run but the Barebox > is not started at all. > So, in this case

Re: Support for QEMU virt ARM 32

2017-11-30 Thread Lucas Stach
Am Donnerstag, den 30.11.2017, 17:39 +0100 schrieb Andre Wagner: > > On 30.11.2017 15:53, Lucas Stach wrote: > > Hi André, > > > > Am Donnerstag, den 30.11.2017, 15:29 +0100 schrieb Andre Wagner: > > > Hello everyone, > > > > > > I'm trying to add support for the Qemu virt ARM32 machine (qemu >

Re: Support for QEMU virt ARM 32

2017-11-30 Thread Andre Wagner
On 30.11.2017 15:53, Lucas Stach wrote: Hi André, Am Donnerstag, den 30.11.2017, 15:29 +0100 schrieb Andre Wagner: Hello everyone, I'm trying to add support for the Qemu virt ARM32 machine (qemu version 2.10) based on the existing Qemu virt ARM64 support. In my understanding the emulated CPU

Re: Support for QEMU virt ARM 32

2017-11-30 Thread Lucas Stach
Hi André, Am Donnerstag, den 30.11.2017, 15:29 +0100 schrieb Andre Wagner: > Hello everyone, > > I'm trying to add support for the Qemu virt ARM32 machine (qemu > version  > 2.10) based on the existing Qemu virt ARM64 support. In my > understanding  > the emulated CPU is only a ARMv7 CPU instead

Support for QEMU virt ARM 32

2017-11-30 Thread Andre Wagner
Hello everyone, I'm trying to add support for the Qemu virt ARM32 machine (qemu version 2.10) based on the existing Qemu virt ARM64 support. In my understanding the emulated CPU is only a ARMv7 CPU instead of a ARMv8 CPU. Is this correct? Greetings, André +++ Richard Wolf GmbH, Pforzheim

[PATCH] common: globalvar: fix removing multiple nvvars with wildcards

2017-11-30 Thread Sascha Hauer
nvvar_remove takes wildcards, so it can remove multiple variables. This means we cannot return after the first loop iteration, but instead must continue. Fixes: 609d3edc3ad9 (common: globvar: let nvvar_remove() report non-existing variable) Signed-off-by: Sascha Hauer Cc: --- common/globalvar.

[PATCH] of: base: use root_node compatible as suggestion for a hostname

2017-11-30 Thread Oleksij Rempel
on some SoCs we can use generic PLL and RAM initialization. In this cases we create board file only to provide a host name. With this patch host name will be created from device tree compatible. For example: compatible = "board_vendor,board", "chip_vendor,soc" the host name will be: "board" This