From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fabien Parent Date: Mon, 5 Dec 2016 19:15:20 +0100 Subject: [U-Boot] [PATCH 1/2] davinci: omapl138_lcdk: increase u-boot load size In-Reply-To: <20161205181521.10586-1-fparent@baylibre.com> References: <20161205181521.10586-1-fparent@baylibre.com> Message-ID: <20161205181521.10586-2-fparent@baylibre.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de A size of 0x200 seems way too short for u-boot. Increase the size to 512k. Signed-off-by: Fabien Parent --- include/configs/omapl138_lcdk.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/omapl138_lcdk.h b/include/configs/omapl138_lcdk.h index 9e11f7dc95..2101086d59 100644 --- a/include/configs/omapl138_lcdk.h +++ b/include/configs/omapl138_lcdk.h @@ -176,7 +176,7 @@ #define CONFIG_SYS_NAND_5_ADDR_CYCLE #define CONFIG_SYS_NAND_PAGE_SIZE (2 << 10) #define CONFIG_SYS_NAND_BLOCK_SIZE (128 << 10) -#define CONFIG_SYS_NAND_U_BOOT_SIZE 0x200 /*0x60000*/ +#define CONFIG_SYS_NAND_U_BOOT_SIZE SZ_512K #define CONFIG_SYS_NAND_U_BOOT_DST 0xc1080000 #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_NAND_U_BOOT_DST #define CONFIG_SYS_NAND_U_BOOT_RELOC_SP (CONFIG_SYS_NAND_U_BOOT_DST - \ -- 2.11.0