From 44179982b64a2c1c4f4232d4e9d14cd241ed36f0 Mon Sep 17 00:00:00 2001 From: sameeruddin shaik Date: Thu, 13 Dec 2018 11:49:28 +0530 Subject: [PATCH] ipq806x: change the tftp default load address Adjust the tftp loading address, so that it wont try to load the files to the u-boot region in ram. Change-Id: I8b56ce8930c534b275c157c06033ba385ccb8a04 Signed-off-by: sameeruddin shaik --- include/configs/ipq806x.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/ipq806x.h b/include/configs/ipq806x.h index 3e359438a0..fc8e6d1e97 100644 --- a/include/configs/ipq806x.h +++ b/include/configs/ipq806x.h @@ -244,7 +244,7 @@ typedef struct { #define IPQ_NSSTCM_DUMP_ADDR (IPQ_MEM_RESERVE_BASE(nsstcmdump)) #define IPQ_TEMP_DUMP_ADDR (IPQ_MEM_RESERVE_BASE(nsstcmdump)) -#define IPQ_TFTP_MIN_ADDR (CONFIG_SYS_SDRAM_BASE + (32 << 20)) +#define IPQ_TFTP_MIN_ADDR (CONFIG_SYS_SDRAM_BASE + (64 << 20)) #define IPQ_TFTP_MAX_ADDR (gd->bd->bi_dram[0].start + \ gd->bd->bi_dram[0].size)