Message ID | 20210127070054.81719-3-joel@jms.id.au |
---|---|
State | New |
Headers | show |
Series | FIT verification | expand |
On 1/27/2021 4:00 AM, Joel Stanley wrote: > This turns on FIT signature verification for the OpenBMC SPL > configuration, for both the SPL and u-boot. > > CONFIG_NR_DRAM_BANKS=1 > CONFIG_FIT=y > +CONFIG_FIT_SIGNATURE=y > +CONFIG_SPL_FIT_SIGNATURE=y > +CONFIG_SPL_LOAD_FIT=y See my comments on patch 6, but feels like this should logically go after the size-reduction patches. > CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyS4,115200n8 root=/dev/ram rw" > CONFIG_USE_BOOTCOMMAND=y >
diff --git a/configs/ast2600_openbmc_spl_emmc_defconfig b/configs/ast2600_openbmc_spl_emmc_defconfig index 68d18652c980..20f2e7019cb3 100644 --- a/configs/ast2600_openbmc_spl_emmc_defconfig +++ b/configs/ast2600_openbmc_spl_emmc_defconfig @@ -35,6 +35,9 @@ CONFIG_ARMV7_BOOT_SEC_DEFAULT=y CONFIG_ARMV7_PSCI_NR_CPUS=2 CONFIG_NR_DRAM_BANKS=1 CONFIG_FIT=y +CONFIG_FIT_SIGNATURE=y +CONFIG_SPL_FIT_SIGNATURE=y +CONFIG_SPL_LOAD_FIT=y CONFIG_USE_BOOTARGS=y CONFIG_BOOTARGS="console=ttyS4,115200n8 root=/dev/ram rw" CONFIG_USE_BOOTCOMMAND=y
This turns on FIT signature verification for the OpenBMC SPL configuration, for both the SPL and u-boot. Signed-off-by: Joel Stanley <joel@jms.id.au> --- configs/ast2600_openbmc_spl_emmc_defconfig | 3 +++ 1 file changed, 3 insertions(+)