From 77ebf64634892a0408d449b0bdf4d36488c73a6c Mon Sep 17 00:00:00 2001 From: Kory Maincent Date: Thu, 23 Jun 2022 16:00:25 +0200 Subject: [PATCH] boot/u-boot: 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/uboot/uboot.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot/uboot/uboot.mk b/boot/uboot/uboot.mk index 70d4d585f7..a9f9b1bf16 100644 --- a/boot/uboot/uboot.mk +++ b/boot/uboot/uboot.mk @@ -20,7 +20,7 @@ UBOOT_INSTALL_IMAGES = YES UBOOT_DEPENDENCIES = host-pkgconf $(BR2_MAKE_HOST_DEPENDENCY) UBOOT_MAKE = $(BR2_MAKE) -ifeq ($(UBOOT_VERSION),custom) +ifeq ($(BR2_TARGET_UBOOT_CUSTOM_TARBALL),y) # Handle custom U-Boot tarballs as specified by the configuration UBOOT_TARBALL = $(call qstrip,$(BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION)) UBOOT_SITE = $(patsubst %/,%,$(dir $(UBOOT_TARBALL)))