diff options
author | Robby Cai <R63905@freescale.com> | 2013-09-06 17:46:48 +0800 |
---|---|---|
committer | Robby Cai <R63905@freescale.com> | 2013-09-06 18:54:44 +0800 |
commit | 49f84c2fcd7243afe433195550ec9982057e2d7a (patch) | |
tree | 3530f05a92eed6de8374bf075887969608be26db | |
parent | 4849bf9f4ca9ac0017831402e78459a30768a788 (diff) | |
download | u-boot-imx-49f84c2fcd7243afe433195550ec9982057e2d7a.zip u-boot-imx-49f84c2fcd7243afe433195550ec9982057e2d7a.tar.gz u-boot-imx-49f84c2fcd7243afe433195550ec9982057e2d7a.tar.bz2 |
ENGR00278575 imx6sl: modify fdt_addr to avoid overlap of image and dtb file
since loadaddr is set to 0x80800000, previous setting for 'fdt_addr'
is 0x81000000, the kernel image could be overlapped by dtb file when
do decompressing. This patch changes 'fdt_addr' to 0x83000000 to fix it.
Signed-off-by: Robby Cai <R63905@freescale.com>
-rw-r--r-- | include/configs/mx6slevk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/mx6slevk.h b/include/configs/mx6slevk.h index 48cace6..d5f97cc 100644 --- a/include/configs/mx6slevk.h +++ b/include/configs/mx6slevk.h @@ -105,7 +105,7 @@ "fdt_high=0xffffffff\0" \ "initrd_high=0xffffffff\0" \ "fdt_file=imx6sl-evk.dtb\0" \ - "fdt_addr=0x81000000\0" \ + "fdt_addr=0x83000000\0" \ "boot_fdt=try\0" \ "ip_dyn=yes\0" \ "mmcdev=0\0" \ |