Adjust load address(kernel_addr_r) of Image(uncompressed)
from 0x81000000 to 0x96000000.
It will get rid of error message from uboot
when boot kernel with booti command as follows:
    - ERROR: reserving fdt memory region failed (addr=83400000 size=c00000)

For example:
The Image of linux kernel is growing quite quickly,
if Image size is 40 MiB, kernel_addr_r = 0x81000000,
then Image is from 0x81000000 to 0x83800000,
so Image destoryed reserved memory region
(0x81000000 < 0x83400000 < 0x83800000)

Signed-off-by: Biwen Li <biwen...@nxp.com>
---
 include/configs/ls1012ardb.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/configs/ls1012ardb.h b/include/configs/ls1012ardb.h
index 39166fea7d..41e1bff15b 100644
--- a/include/configs/ls1012ardb.h
+++ b/include/configs/ls1012ardb.h
@@ -71,7 +71,7 @@
        "scripthdraddr=0x80080000\0"            \
        "fdtheader_addr_r=0x80100000\0"         \
        "kernelheader_addr_r=0x80200000\0"      \
-       "kernel_addr_r=0x81000000\0"            \
+       "kernel_addr_r=0x96000000\0"            \
        "fdt_addr_r=0x90000000\0"               \
        "load_addr=0xa0000000\0"                \
        "kernel_size=0x2800000\0"               \
-- 
2.17.1

Reply via email to