diff options
author | Jason Liu <r64343@freescale.com> | 2013-06-20 15:04:05 +0800 |
---|---|---|
committer | Jason Liu <r64343@freescale.com> | 2013-06-20 15:04:05 +0800 |
commit | a7b23ab027160e7f94110e029ba5d49a6b9fb46e (patch) | |
tree | 4364605fa38665cf3d82c504acfe6c6379d47af0 | |
parent | 0ad327f8d0811da6725296d881ce2f3335462c93 (diff) | |
download | u-boot-imx-a7b23ab027160e7f94110e029ba5d49a6b9fb46e.zip u-boot-imx-a7b23ab027160e7f94110e029ba5d49a6b9fb46e.tar.gz u-boot-imx-a7b23ab027160e7f94110e029ba5d49a6b9fb46e.tar.bz2 |
ENGR00268032 config/sabre_common: change the fdt_addr to a high address
current the fdt_addr is just 16MB offset from the ddr base address, which
will cause the dtb will be overritten by linux kernel(include .bss section)
if the linux kernel is bigger than 16MB, which cause setup_machine_fdt
failed and thus kernel failed to boot.
This patch change the defaut fdt_addr to 128MB offset from the ddr base
address, which should be enough for common user case. user can change it
to other value according to their system needs.
Signed-off-by: Jason Liu <r64343@freescale.com>
-rw-r--r-- | include/configs/mx6qsabre_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/mx6qsabre_common.h b/include/configs/mx6qsabre_common.h index 0576d47..eb078d5 100644 --- a/include/configs/mx6qsabre_common.h +++ b/include/configs/mx6qsabre_common.h @@ -89,7 +89,7 @@ "script=boot.scr\0" \ "uimage=uImage\0" \ "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \ - "fdt_addr=0x11000000\0" \ + "fdt_addr=0x18000000\0" \ "boot_fdt=try\0" \ "ip_dyn=yes\0" \ "console=" CONFIG_CONSOLE_DEV "\0" \ |