Re: [PATCH v3] board_f: Copy GD to new GD even if relocation disabled

2021-11-18 Thread Tom Rini
On Sat, Nov 13, 2021 at 06:34:04PM +0100, marek.va...@gmail.com wrote: > From: Marek Vasut > > Even if U-Boot has relocation disabled via GD_FLG_SKIP_RELOC , the > relocated stage of U-Boot still picks GD from new_gd location. The > U-Boot itself is not relocated, but GD might be, so copy the GD

[PATCH v3] board_f: Copy GD to new GD even if relocation disabled

2021-11-13 Thread marek . vasut
From: Marek Vasut Even if U-Boot has relocation disabled via GD_FLG_SKIP_RELOC , the relocated stage of U-Boot still picks GD from new_gd location. The U-Boot itself is not relocated, but GD might be, so copy the GD to new GD location even if relocation is disabled. Signed-off-by: Marek Vasut C