From f13cf28b622c37d83a70a0899ccada50cd8c0711 Mon Sep 17 00:00:00 2001 From: Kory Maincent Date: Thu, 23 Jun 2022 16:00:27 +0200 Subject: [PATCH] boot/opensbi: update condition for custom tarball management This patch updates the condition to handle custom tarballs as specified by the configuration. This change is made to have cleaner condition and for consistency. Signed-off-by: Kory Maincent Signed-off-by: Yann E. MORIN --- boot/opensbi/opensbi.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot/opensbi/opensbi.mk b/boot/opensbi/opensbi.mk index 8e055633a8..01f0c3ad40 100644 --- a/boot/opensbi/opensbi.mk +++ b/boot/opensbi/opensbi.mk @@ -6,7 +6,7 @@ OPENSBI_VERSION = $(call qstrip,$(BR2_TARGET_OPENSBI_VERSION)) -ifeq ($(OPENSBI_VERSION),custom) +ifeq ($(BR2_TARGET_OPENSBI_CUSTOM_TARBALL),y) # Handle custom OpenSBI tarballs as specified by the configuration OPENSBI_TARBALL = $(call qstrip,$(BR2_TARGET_OPENSBI_CUSTOM_TARBALL_LOCATION)) OPENSBI_SITE = $(patsubst %/,%,$(dir $(OPENSBI_TARBALL)))