ls102x: Add support for secure boot and enable blob command
Signed-off-by: Ruchika Gupta <ruchika.gupta@freescale.com> Reviewed-by: York Sun <yorksun@freescale.com>
This commit is contained in:
parent
789490b6c0
commit
ba4740205d
|
@ -5,3 +5,4 @@ F: board/freescale/ls1021aqds/
|
||||||
F: include/configs/ls1021aqds.h
|
F: include/configs/ls1021aqds.h
|
||||||
F: configs/ls1021aqds_nor_defconfig
|
F: configs/ls1021aqds_nor_defconfig
|
||||||
F: configs/ls1021aqds_ddr4_nor_defconfig
|
F: configs/ls1021aqds_ddr4_nor_defconfig
|
||||||
|
F: configs/ls1021aqds_nor_SECURE_BOOT_defconfig
|
||||||
|
|
|
@ -4,3 +4,4 @@ S: Maintained
|
||||||
F: board/freescale/ls1021atwr/
|
F: board/freescale/ls1021atwr/
|
||||||
F: include/configs/ls1021atwr.h
|
F: include/configs/ls1021atwr.h
|
||||||
F: configs/ls1021atwr_nor_defconfig
|
F: configs/ls1021atwr_nor_defconfig
|
||||||
|
F: configs/ls1021atwr_nor_SECURE_BOOT_defconfig
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
CONFIG_SYS_EXTRA_OPTIONS="SECURE_BOOT"
|
||||||
|
CONFIG_ARM=y
|
||||||
|
CONFIG_TARGET_LS1021AQDS=y
|
|
@ -0,0 +1,3 @@
|
||||||
|
CONFIG_SYS_EXTRA_OPTIONS="SECURE_BOOT"
|
||||||
|
CONFIG_ARM=y
|
||||||
|
CONFIG_TARGET_LS1021ATWR=y
|
|
@ -395,4 +395,8 @@ unsigned long get_board_ddr_clk(void);
|
||||||
#define CONFIG_CMD_HASH
|
#define CONFIG_CMD_HASH
|
||||||
#define CONFIG_SHA_HW_ACCEL
|
#define CONFIG_SHA_HW_ACCEL
|
||||||
|
|
||||||
|
#ifdef CONFIG_SECURE_BOOT
|
||||||
|
#define CONFIG_CMD_BLOB
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -296,4 +296,8 @@
|
||||||
#define CONFIG_CMD_HASH
|
#define CONFIG_CMD_HASH
|
||||||
#define CONFIG_SHA_HW_ACCEL
|
#define CONFIG_SHA_HW_ACCEL
|
||||||
|
|
||||||
|
#ifdef CONFIG_SECURE_BOOT
|
||||||
|
#define CONFIG_CMD_BLOB
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue