From f0d56691c7e6a26d0ec3dfc839e1454fe239e898 Mon Sep 17 00:00:00 2001 From: Tobias Waldekranz Date: Wed, 19 Nov 2025 21:28:21 +0100 Subject: [PATCH] board/common: Fix trusted key installation logic Rather than using the creation of a signed image as a proxy for whether the trusted keys should be installed RAUC/U-Boot's trust stores, use the dedicated option. --- board/common/common.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/common/common.mk b/board/common/common.mk index 4fa482bb..7beecade 100644 --- a/board/common/common.mk +++ b/board/common/common.mk @@ -1,4 +1,4 @@ -ifeq ($(SIGN_ENABLED),y) +ifeq ($(TRUSTED_KEYS),y) include $(BR2_EXTERNAL_INFIX_PATH)/board/common/uboot/uboot.mk TRUSTED_KEYS=$(TRUSTED_KEYS_DEVELOPMENT_PATH) $(TRUSTED_KEYS_EXTRA_PATH)