Skip to content
Snippets Groups Projects
Commit a7d39afb authored by Tom Rini's avatar Tom Rini
Browse files

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: default avatarTom Rini <trini@ti.com>
parent 3afd8e08
No related branches found
No related tags found
No related merge requests found
...@@ -344,7 +344,7 @@ ...@@ -344,7 +344,7 @@
/* nand */ /* nand */
#define CONFIG_CMD_SPL_NAND_OFS 0x240000 /* end of u-boot */ #define CONFIG_CMD_SPL_NAND_OFS 0x240000 /* end of u-boot */
#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000 #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 */ /* spl export command */
#define CONFIG_CMD_SPL #define CONFIG_CMD_SPL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment