When CONFIG_BOOTM_FORCE_SIGNED_IMAGES is enabled bootm_verify_mode shall be forced to "signature", so set bootm_verify_mode to this value during startup. Otherwise it shows up as "<NULL>" in devinfo. Signed-off-by: Sascha Hauer <s.hauer@xxxxxxxxxxxxxx> --- common/bootm.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/bootm.c b/common/bootm.c index b74b922..53edc71 100644 --- a/common/bootm.c +++ b/common/bootm.c @@ -655,6 +655,10 @@ static int bootm_init(void) globalvar_add_simple("bootm.initrd", NULL); globalvar_add_simple("bootm.initrd.loadaddr", NULL); } + + if (IS_ENABLED(CONFIG_BOOTM_FORCE_SIGNED_IMAGES)) + bootm_verify_mode = BOOTM_VERIFY_SIGNATURE; + globalvar_add_simple_enum("bootm.verify", (unsigned int *)&bootm_verify_mode, bootm_verify_names, ARRAY_SIZE(bootm_verify_names)); -- 2.8.0.rc3 _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox