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 <gabriel.valcazar@digi.com>
This commit is contained in:
Gabriel Valcazar 2021-06-04 14:21:30 +02:00
parent 098bce03f9
commit 4e2fc007a1
1 changed files with 1 additions and 1 deletions

View File

@ -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() {