diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-01-21 14:56:07 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-02-14 16:36:12 +0900 |
commit | a304143925df7fd509a110a5b4069e4e85d39192 (patch) | |
tree | f5c82117a86deef514d5881f332609904764fd85 /include | |
parent | 90a6e929881caf4a74015c8e8f2279ee0a7b3804 (diff) | |
download | u-boot-imx-a304143925df7fd509a110a5b4069e4e85d39192.zip u-boot-imx-a304143925df7fd509a110a5b4069e4e85d39192.tar.gz u-boot-imx-a304143925df7fd509a110a5b4069e4e85d39192.tar.bz2 |
ARM: uniphier: add default bootm_low to fix FIT boot
Commit 25d4eb8091f4 ("ARM: uniphier: add bootm_low environment")
missed to add "bootm_low" for FIT boot. Set "bootm_low" to the
DRAM base address.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/uniphier.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/configs/uniphier.h b/include/configs/uniphier.h index ec4fd67..00c27f1 100644 --- a/include/configs/uniphier.h +++ b/include/configs/uniphier.h @@ -223,6 +223,7 @@ "netdev=eth0\0" \ "verify=n\0" \ "nor_base=0x42000000\0" \ + "bootm_low=0x80000000\0" \ "nandupdate=nand erase 0 0x00100000 &&" \ "tftpboot u-boot-spl-dtb.bin &&" \ "nand write $loadaddr 0 0x00010000 &&" \ |