aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMurali Karicheri2014-07-01 11:20:34 -0500
committerMurali Karicheri2014-07-03 10:02:51 -0500
commitb60aa0f0c3b7df8be4173db911dde84162965705 (patch)
treee683faae76690e7dd3d7f9c5ced9b85e4151d96e
parente02868af640de835caf16e4e5ab32742231f310f (diff)
downloadu-boot-b60aa0f0c3b7df8be4173db911dde84162965705.tar.gz
u-boot-b60aa0f0c3b7df8be4173db911dde84162965705.tar.xz
u-boot-b60aa0f0c3b7df8be4173db911dde84162965705.zip
keystone2: Add secure key copy for ubi boot mode
this is a duplicate of the commit below as this change got lost during the code restructure. Only change is it is now applicable for all devices. commit 0b9b4be2f3097b5bdc3b0ea7aa5e8f465097e365 Author: Sam Nelson <sam.nelson@ti.com> Date: Wed Mar 19 13:41:46 2014 -0400 tci6638: Add secure key copy for ubi boot mode - The secure key is used for secure storage feature - added script to copy key from nand to msmc Signed-off-by: Sam Nelson <sam.nelson@ti.com> Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
-rw-r--r--include/configs/ks2_evm.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/configs/ks2_evm.h b/include/configs/ks2_evm.h
index 2b2ff2c659..09eb846330 100644
--- a/include/configs/ks2_evm.h
+++ b/include/configs/ks2_evm.h
@@ -214,6 +214,7 @@
214 "addr_uboot=0x87000000\0" \ 214 "addr_uboot=0x87000000\0" \
215 "addr_fs=0x82000000\0" \ 215 "addr_fs=0x82000000\0" \
216 "addr_ubi=0x82000000\0" \ 216 "addr_ubi=0x82000000\0" \
217 "addr_secdb_key=0xc000000\0" \
217 "fdt_high=0xffffffff\0" \ 218 "fdt_high=0xffffffff\0" \
218 "initrd_high=0xffffffff\0" \ 219 "initrd_high=0xffffffff\0" \
219 NAME_FDT \ 220 NAME_FDT \
@@ -228,7 +229,8 @@
228 "run_kern=bootm ${addr_kern} ${addr_uinitrd} ${addr_fdt}\0" \ 229 "run_kern=bootm ${addr_kern} ${addr_uinitrd} ${addr_fdt}\0" \
229 "init_net=run set_fs_none args_all args_net\0" \ 230 "init_net=run set_fs_none args_all args_net\0" \
230 "init_ubi=run set_fs_none args_all args_ubi; " \ 231 "init_ubi=run set_fs_none args_all args_ubi; " \
231 "ubi part ubifs; ubifsmount boot\0" \ 232 "ubi part ubifs; ubifsmount boot;" \
233 "ubifsload ${addr_secdb_key} securedb.key.bin;\0" \
232 "get_fdt_net=dhcp ${addr_fdt} ${tftp_root}/${name_fdt}\0" \ 234 "get_fdt_net=dhcp ${addr_fdt} ${tftp_root}/${name_fdt}\0" \
233 "get_fdt_ubi=ubifsload ${addr_fdt} ${name_fdt}\0" \ 235 "get_fdt_ubi=ubifsload ${addr_fdt} ${name_fdt}\0" \
234 "get_kern_net=dhcp ${addr_kern} ${tftp_root}/${name_kern}\0" \ 236 "get_kern_net=dhcp ${addr_kern} ${tftp_root}/${name_kern}\0" \