From ef1b3e5e8384e908732d983dcf2e3cfc2bced9c7 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Fri, 21 Apr 2023 12:11:46 +0200 Subject: ARM: rockchip: bootm: move image to 4k alignment The new barebox must be 4k aligned which is not always the case when we skip over the SDRAM initialisation binary. memmove to a suitable place. Signed-off-by: Sascha Hauer --- arch/arm/mach-rockchip/bootm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm/mach-rockchip/bootm.c b/arch/arm/mach-rockchip/bootm.c index 4317fdefd6..6f4aa27808 100644 --- a/arch/arm/mach-rockchip/bootm.c +++ b/arch/arm/mach-rockchip/bootm.c @@ -88,7 +88,8 @@ static int do_bootm_rkns_barebox_image(struct image_data *data) file_type_to_string(filetype)); if (filetype == filetype_arm_barebox) { - barebox = buf + entry_start; + memmove(buf, buf + entry_start, image_size - entry_start); + barebox = buf; goto found; } } -- cgit v1.2.1