From 4e2fc007a1459a10e07831e83ca2dcb9af5a8337 Mon Sep 17 00:00:00 2001 From: Gabriel Valcazar Date: Fri, 4 Jun 2021 14:21:30 +0200 Subject: [PATCH] swupdate: call cml1_do_configure() at least once while configuring Without this call, swupdate will be built with a default configuration which is incompatible with our package format. Even though this function is already called in the original recipe, it was done in the package's "git" directory. Make sure the function is called at least once so that our defconfig is used in the build. Signed-off-by: Gabriel Valcazar --- .../recipes-support/swupdate/swupdate_2021.04.bbappend | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-digi-dey/recipes-support/swupdate/swupdate_2021.04.bbappend b/meta-digi-dey/recipes-support/swupdate/swupdate_2021.04.bbappend index 0459601a6..7fc819560 100644 --- a/meta-digi-dey/recipes-support/swupdate/swupdate_2021.04.bbappend +++ b/meta-digi-dey/recipes-support/swupdate/swupdate_2021.04.bbappend @@ -7,8 +7,8 @@ do_configure_append() { # '.config' file. if [ "${TRUSTFENCE_SIGN}" = "1" ]; then echo "CONFIG_SIGNED_IMAGES=y" >> ${B}/.config - cml1_do_configure fi + cml1_do_configure } do_install_append() {