diff options
| author | Tom Rini <trini@ti.com> | 2013-07-08 12:15:17 -0400 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-07-26 16:39:10 -0400 | 
| commit | a7d39afbb0097fb50dfb56fe501716b4a29282ef (patch) | |
| tree | 9cf672e7e7796c80c4cdcb49926e8561b589cf0f /include | |
| parent | 3afd8e0828396046c617d2fd6f755457ae52850e (diff) | |
| download | olio-uboot-2014.01-a7d39afbb0097fb50dfb56fe501716b4a29282ef.tar.xz olio-uboot-2014.01-a7d39afbb0097fb50dfb56fe501716b4a29282ef.zip | |
am335x_evm: Correct CONFIG_CMD_SPL_WRITE_SIZE
We use CONFIG_CMD_SPL_WRITE_SIZE when reading/writing the args portion
of falcon mode to NAND.  Previously it was half the size of the
eraseblock which is too small, increase to eraseblock size.
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/am335x_evm.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h index d60f7329a..0f12c7505 100644 --- a/include/configs/am335x_evm.h +++ b/include/configs/am335x_evm.h @@ -344,7 +344,7 @@  /* nand */  #define CONFIG_CMD_SPL_NAND_OFS			0x240000 /* end of u-boot */  #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS		0x280000 -#define CONFIG_CMD_SPL_WRITE_SIZE		0x1000 +#define CONFIG_CMD_SPL_WRITE_SIZE		0x2000  /* spl export command */  #define CONFIG_CMD_SPL |