From f2dcae2f9e9434392673fea7584641afa98f4232 Mon Sep 17 00:00:00 2001 From: Sourav Poddar Date: Fri, 7 Feb 2014 17:58:15 +0530 Subject: [PATCH] configs: dra7_evm: Resize qspi uboot and kernel partition size Resize the uboot to 1 MB, as that will be sufficient. Increase the kernel size from 5MB to 8MB, as android kernel build images are more than 5MB. Signed-off-by: Sourav Poddar --- include/configs/dra7xx_evm.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/include/configs/dra7xx_evm.h b/include/configs/dra7xx_evm.h index 9fac414ff6..0bbb7f3cba 100644 --- a/include/configs/dra7xx_evm.h +++ b/include/configs/dra7xx_evm.h @@ -80,12 +80,12 @@ * 0x010000 - 0x020000 : QSPI.SPL.backup1 (64KiB) * 0x020000 - 0x030000 : QSPI.SPL.backup2 (64KiB) * 0x030000 - 0x040000 : QSPI.SPL.backup3 (64KiB) - * 0x040000 - 0x1c0000 : QSPI.u-boot (1.5MiB) - * 0x1c0000 - 0x1d0000 : QSPI.u-boot-spl-os (64KiB) - * 0x1d0000 - 0x1e0000 : QSPI.u-boot-env (64KiB) - * 0x1e0000 - 0x1f0000 : QSPI.u-boot-env.backup1 (64KiB) - * 0x1f0000 - 0x6f0000 : QSPI.kernel (5MiB) - * 0x6f0000 - 0x2000000 : USERLAND + * 0x040000 - 0x140000 : QSPI.u-boot (1MiB) + * 0x140000 - 0x150000 : QSPI.u-boot-spl-os (64KiB) + * 0x150000 - 0x160000 : QSPI.u-boot-env (64KiB) + * 0x160000 - 0x170000 : QSPI.u-boot-env.backup1 (64KiB) + * 0x170000 - 0x970000 : QSPI.kernel (8MiB) + * 0x970000 - 0x2000000 : USERLAND */ #if defined(CONFIG_QSPI_BOOT) #define CONFIG_ENV_IS_IN_SPI_FLASH @@ -110,11 +110,11 @@ "64k(QSPI.SPL.backup1)," \ "64k(QSPI.SPL.backup2)," \ "64k(QSPI.SPL.backup3)," \ - "1.5m(QSPI.u-boot)," \ + "1m(QSPI.u-boot)," \ "64k(QSPI.u-boot-spl-os)," \ "64k(QSPI.u-boot-env)," \ "64k(QSPI.u-boot-env.backup1)," \ - "5m(QSPI.kernel)," \ + "8m(QSPI.kernel)," \ "-(QSPI.rootfs)" #endif