From patchwork Fri Mar 13 02:26:29 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Biwen Li X-Patchwork-Id: 243613 List-Id: U-Boot discussion From: biwen.li at nxp.com (Biwen Li) Date: Fri, 13 Mar 2020 10:26:29 +0800 Subject: [PATCH] include/configs: ls1012afrwy: fix load address of itb with bootm command Message-ID: <20200313022629.42652-1-biwen.li@nxp.com> The old load address of itb will overwrite uboots reserved memory on ls1012afrwy with 512 MiB ram Signed-off-by: Biwen Li --- include/configs/ls1012afrwy.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/ls1012afrwy.h b/include/configs/ls1012afrwy.h index b5a4bd5412..1de82bbff9 100644 --- a/include/configs/ls1012afrwy.h +++ b/include/configs/ls1012afrwy.h @@ -73,7 +73,7 @@ "kernelheader_size=0x40000\0" \ "kernel_addr_r=0x96000000\0" \ "fdt_addr_r=0x90000000\0" \ - "load_addr=0x96000000\0" \ + "load_addr=0x92000000\0" \ "kernel_size=0x2800000\0" \ "kernelheader_size=0x40000\0" \ "console=ttyS0,115200\0" \