From: Faiz Abbas Date: Tue, 16 Jan 2018 08:13:40 +0000 (+0530) Subject: configs: keystone2: env: Fix burn_uboot_spi command X-Git-Tag: v2018.03-rc1~120 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e8b9fdced641bbc6edb0a2c85f6000edaedf8b2e;p=platform%2Fkernel%2Fu-boot.git configs: keystone2: env: Fix burn_uboot_spi command Now the u-boot spi image is greater than 0x90000, increase the same in env during spi erase. Signed-off-by: Faiz Abbas Reviewed-by: Tom Rini --- diff --git a/include/configs/ti_armv7_keystone2.h b/include/configs/ti_armv7_keystone2.h index 562bb65..7fb3aaf 100644 --- a/include/configs/ti_armv7_keystone2.h +++ b/include/configs/ti_armv7_keystone2.h @@ -266,7 +266,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 0x90000; " \ + "burn_uboot_spi=sf probe; sf erase 0 0x100000; " \ "sf write ${loadaddr} 0 ${filesize}\0" \ "burn_uboot_nand=nand erase 0 0x100000; " \ "nand write ${loadaddr} 0 ${filesize}\0" \