diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2017-09-21 07:31:13 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-09-29 14:07:56 -0400 |
commit | ba7f58b12f48212085d5c26c84b6e13cdb30c1f4 (patch) | |
tree | aee65fe9fc9a511e2f3700fbd16604fb6db8fe26 /include | |
parent | f8e714ebfa6f225a2eaca1d7be9e6963801fe762 (diff) | |
download | u-boot-ba7f58b12f48212085d5c26c84b6e13cdb30c1f4.zip u-boot-ba7f58b12f48212085d5c26c84b6e13cdb30c1f4.tar.gz u-boot-ba7f58b12f48212085d5c26c84b6e13cdb30c1f4.tar.bz2 |
configs: keystone2: env: Fix burn_uboot_spi command
Now the u-boot spi image is greater than 0x80000, increase the same
in env during spi erase.
Reported-by: Yan Liu <yan-liu@ti.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/ti_armv7_keystone2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/ti_armv7_keystone2.h b/include/configs/ti_armv7_keystone2.h index 2b2b85d..53046a2 100644 --- a/include/configs/ti_armv7_keystone2.h +++ b/include/configs/ti_armv7_keystone2.h @@ -270,7 +270,7 @@ "${bootdir}/${fit_bootfile}\0" \ "get_uboot_net=dhcp ${loadaddr} ${tftp_root}/${name_uboot}\0" \ "get_uboot_nfs=nfs ${loadaddr} ${nfs_root}/boot/${name_uboot}\0" \ - "burn_uboot_spi=sf probe; sf erase 0 0x80000; " \ + "burn_uboot_spi=sf probe; sf erase 0 0x90000; " \ "sf write ${loadaddr} 0 ${filesize}\0" \ "burn_uboot_nand=nand erase 0 0x100000; " \ "nand write ${loadaddr} 0 ${filesize}\0" \ |