From 1dae191afa1a67cb0b97d5fab7e7fdec2322fe59 Mon Sep 17 00:00:00 2001 From: Patrick Vogelaar Date: Tue, 13 Jun 2023 10:51:53 +0200 Subject: [PATCH] fix(cn9131-bldn-mbv): fix IMAGE_INSTALL assignement Due to the wrong order of assignement bg_printenv and bg_setenv were not available anymore. --- .../recipes-core/images/coreos-image-all-features.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layers/meta-belden-coreos/recipes-core/images/coreos-image-all-features.bb b/layers/meta-belden-coreos/recipes-core/images/coreos-image-all-features.bb index db81beb..25a5c3b 100644 --- a/layers/meta-belden-coreos/recipes-core/images/coreos-image-all-features.bb +++ b/layers/meta-belden-coreos/recipes-core/images/coreos-image-all-features.bb @@ -13,4 +13,4 @@ IMAGE_INSTALL:append = " systemd-analyze" ### Device specific settings # Needed for phy firmware -IMAGE_INSTALL:cn9131-bldn-mbv += "linux-firmware" \ No newline at end of file +IMAGE_INSTALL:append:cn9131-bldn-mbv = " linux-firmware" \ No newline at end of file