From: Biwen Li Date: Fri, 13 Mar 2020 02:26:29 +0000 (+0800) Subject: include/configs: ls1012afrwy: fix load address of itb with bootm command X-Git-Tag: v2020.04-rc4~1^2~21 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=095b6be41ecf1cfef24d762ab9fdc062367ffeda;p=oweals%2Fu-boot.git include/configs: ls1012afrwy: fix load address of itb with bootm command The old load address of itb will overwrite uboots reserved memory on ls1012afrwy with 512 MiB ram Signed-off-by: Biwen Li Reviewed-by: Priyanka Jain --- diff --git a/include/configs/ls1012afrwy.h b/include/configs/ls1012afrwy.h index dde4369c97..6ea524c5bb 100644 --- a/include/configs/ls1012afrwy.h +++ b/include/configs/ls1012afrwy.h @@ -65,7 +65,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" \