mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
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
6 changed files with 16 additions and 0 deletions
|
@ -5,3 +5,4 @@ F: board/freescale/ls1021aqds/
|
|||
F: include/configs/ls1021aqds.h
|
||||
F: configs/ls1021aqds_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: include/configs/ls1021atwr.h
|
||||
F: configs/ls1021atwr_nor_defconfig
|
||||
F: configs/ls1021atwr_nor_SECURE_BOOT_defconfig
|
||||
|
|
3
configs/ls1021aqds_nor_SECURE_BOOT_defconfig
Normal file
3
configs/ls1021aqds_nor_SECURE_BOOT_defconfig
Normal file
|
@ -0,0 +1,3 @@
|
|||
CONFIG_SYS_EXTRA_OPTIONS="SECURE_BOOT"
|
||||
CONFIG_ARM=y
|
||||
CONFIG_TARGET_LS1021AQDS=y
|
3
configs/ls1021atwr_nor_SECURE_BOOT_defconfig
Normal file
3
configs/ls1021atwr_nor_SECURE_BOOT_defconfig
Normal file
|
@ -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_SHA_HW_ACCEL
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
#define CONFIG_CMD_BLOB
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
|
@ -296,4 +296,8 @@
|
|||
#define CONFIG_CMD_HASH
|
||||
#define CONFIG_SHA_HW_ACCEL
|
||||
|
||||
#ifdef CONFIG_SECURE_BOOT
|
||||
#define CONFIG_CMD_BLOB
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue