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 <sourav.poddar@ti.com>
This commit is contained in:
Sourav Poddar 2014-02-07 17:58:15 +05:30 committed by Tom Rini
parent 00c053d7d2
commit f2dcae2f9e
1 changed files with 8 additions and 8 deletions

View File

@ -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