Re: [U-Boot] [PATCH 1/3] common/board_f: enable setup_board_part1() for MIPS

2015-11-05 Thread Simon Glass
On 2 November 2015 at 16:37, Tom Rini wrote: > On Sun, Nov 01, 2015 at 05:36:13PM +0100, Daniel Schwierzeck wrote: > >> The variables bd_t:bi_memstart and bd_t:bi_memsize have to be >> initialized also on MIPS. Otherwise LMB and cmd_bdinfo do not >> correctly work. This currently breaks the bootin

Re: [U-Boot] [PATCH 1/3] common/board_f: enable setup_board_part1() for MIPS

2015-11-02 Thread Tom Rini
On Sun, Nov 01, 2015 at 05:36:13PM +0100, Daniel Schwierzeck wrote: > The variables bd_t:bi_memstart and bd_t:bi_memsize have to be > initialized also on MIPS. Otherwise LMB and cmd_bdinfo do not > correctly work. This currently breaks the booting of FIT images > on MIPS. Enable the board_init_f h

[U-Boot] [PATCH 1/3] common/board_f: enable setup_board_part1() for MIPS

2015-11-01 Thread Daniel Schwierzeck
The variables bd_t:bi_memstart and bd_t:bi_memsize have to be initialized also on MIPS. Otherwise LMB and cmd_bdinfo do not correctly work. This currently breaks the booting of FIT images on MIPS. Enable the board_init_f hook setup_board_part1() for MIPS to fix this. Signed-off-by: Daniel Schwierz