Re: [PATCH] lib:font:fbconsole: add custom font support for review

2015-10-28 Thread Kevin Du Huanpeng
2015-10-28 14:59 GMT+08:00 Sascha Hauer : > Hi, > > On Tue, Oct 27, 2015 at 04:40:56AM +0800, Kevin Du Huanpeng wrote: >> On Mon, Oct 26, 2015 at 08:18:36AM +0100, Sascha Hauer wrote: >> > >> > This patch has several hunks without changes which makes it hard to look >> >

Re: memtest updates

2015-10-28 Thread Sascha Hauer
On Tue, Oct 27, 2015 at 05:55:04PM +0100, Alexander Aring wrote: > On Tue, Oct 27, 2015 at 09:29:53AM +0100, Sascha Hauer wrote: > > This series has some updates for the memory test. The output and the > > code are made more compact and some additional options are added. Also > > the remap_range

Re: [PATCH v3 2/9] of_path: add of_find_path_by_node()

2015-10-28 Thread Sascha Hauer
On Sun, Oct 25, 2015 at 10:03:29PM +0100, Marc Kleine-Budde wrote: > This patch adds the function of_find_path_by_node(), which is similar to > of_find_path(), but it translates a device tree node into a barebox device > path > directly. > > Signed-off-by: Marc Kleine-Budde

Re: [PATCH] lib:font:fbconsole: add custom font support for review

2015-10-28 Thread Sascha Hauer
Hi, On Tue, Oct 27, 2015 at 04:40:56AM +0800, Kevin Du Huanpeng wrote: > On Mon, Oct 26, 2015 at 08:18:36AM +0100, Sascha Hauer wrote: > > > > This patch has several hunks without changes which makes it hard to look > > at. > > > > Somehow this looks like beginning unicode support. Wouldn't it

Re: [PATCH v3 2/9] of_path: add of_find_path_by_node()

2015-10-28 Thread Marc Kleine-Budde
On 10/28/2015 07:20 AM, Sascha Hauer wrote: > On Sun, Oct 25, 2015 at 10:03:29PM +0100, Marc Kleine-Budde wrote: >> This patch adds the function of_find_path_by_node(), which is similar to >> of_find_path(), but it translates a device tree node into a barebox device >> path >> directly. >> >>

Re: [PATCH] lib:font:fbconsole: add custom font support for review

2015-10-28 Thread Sascha Hauer
On Wed, Oct 28, 2015 at 04:20:26PM +0800, Kevin Du Huanpeng wrote: > 2015-10-28 14:59 GMT+08:00 Sascha Hauer : > > Hi, > > > > On Tue, Oct 27, 2015 at 04:40:56AM +0800, Kevin Du Huanpeng wrote: > >> On Mon, Oct 26, 2015 at 08:18:36AM +0100, Sascha Hauer wrote: > >> > > >> >

[PATCH v2] ARM: Add support for semihosting

2015-10-28 Thread Andrey Smirnov
Add semihosting API implementation and implement a filesystem driver to access debugging host filesystem using it. Tested on Freescale SabreSD board (i.MX6Q) using OpenOCD Signed-off-by: Andrey Smirnov --- New in version 2: - Added documntation for host side setup

[PATCH v2 2/2] arm/cpu: Avoid multiple definitions of barebox_arm_entry

2015-10-28 Thread Andrey Smirnov
All versions of barebox_arm_entry (in uncompress.c, start.c and start-pbl.c) appear to be doing exacty the same thing. So move the definition into a separate file and use IS_ENABLED macro to avoid re-definition. Signed-off-by: Andrey Smirnov --- Changes since v1:

[PATCH v2 1/2] arm/cpu/start.c: Distil some common code in __start().

2015-10-28 Thread Andrey Smirnov
Both barebox_boarddata and barebox_boot_dtb perform essentially the same function -- hold a pointer to a chunk of private data. Since only one variable is ever used at any given time we may as well merge those two variable into one. This also allows us to share more code between two boot paths

Booting Linux bzImage on x86_64

2015-10-28 Thread Viktor Stark
Hi, I recently discovered barebox and I am trying to boot a Linux bzImage on an x86_64 embedded platform. Some background: My project involves an x86_64 embedded device for which I am building a bzImage and a root filesystem with buildroot. The idea is to have multiple combinations of these

Re: memtest updates

2015-10-28 Thread Alexander Aring
Hi, On Wed, Oct 28, 2015 at 07:17:55AM +0100, Sascha Hauer wrote: > On Tue, Oct 27, 2015 at 05:55:04PM +0100, Alexander Aring wrote: > > On Tue, Oct 27, 2015 at 09:29:53AM +0100, Sascha Hauer wrote: > > > This series has some updates for the memory test. The output and the > > > code are made