Message ID | 20200313022629.42652-1-biwen.li@nxp.com |
---|---|
State | Accepted |
Commit | 095b6be41ecf1cfef24d762ab9fdc062367ffeda |
Headers | show |
Series | include/configs: ls1012afrwy: fix load address of itb with bootm command | expand |
>-----Original Message----- >From: U-Boot <u-boot-bounces at lists.denx.de> On Behalf Of Biwen Li >Sent: Friday, March 13, 2020 7:56 AM >To: Jagdish Gediya <jagdish.gediya at nxp.com>; Priyanka Jain ><priyanka.jain at nxp.com>; Shengzhou Liu <shengzhou.liu at nxp.com> >Cc: Alison Wang <alison.wang at nxp.com>; u-boot at lists.denx.de; Biwen Li ><biwen.li at nxp.com> >Subject: [PATCH] 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 <biwen.li at nxp.com> >--- Applied to u-boot-fsl-qoriq. Waiting upstream Thanks Priyanka
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" \
The old load address of itb will overwrite uboots reserved memory on ls1012afrwy with 512 MiB ram Signed-off-by: Biwen Li <biwen.li at nxp.com> --- include/configs/ls1012afrwy.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)