From 213ac1109b466103c447f9aafa141fa51a38943a Mon Sep 17 00:00:00 2001 From: Cedric Hombourger Date: Mon, 24 Feb 2025 12:28:55 +0100 Subject: [PATCH] fix(firmware-update): explicitly set DPKG_ARCH to "any" Isar commit 0816ae6e97d15712f6b8eb873311464263f5df59 changed the default architecture for dpkg-raw from "any" to "all". Having a task that assumes the generated package file ends with "_arm64.deb" (not great btw), set DPKG_ARCH to "any". Signed-off-by: Cedric Hombourger --- .../iot2050-firmware-update/iot2050-firmware-update_0.5.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes-app/iot2050-firmware-update/iot2050-firmware-update_0.5.bb b/recipes-app/iot2050-firmware-update/iot2050-firmware-update_0.5.bb index 4b22eab9a..fe92b1b6f 100644 --- a/recipes-app/iot2050-firmware-update/iot2050-firmware-update_0.5.bb +++ b/recipes-app/iot2050-firmware-update/iot2050-firmware-update_0.5.bb @@ -18,6 +18,8 @@ SRC_URI = " \ TEMPLATE_FILES = "update.conf.json.tmpl iot2050-firmware-update.tmpl" +DPKG_ARCH = "any" + inherit dpkg-raw DEBIAN_DEPENDS = "python3-progress, u-boot-tools"