From 11558352f073ebe8af7fdb6654d4743b933fe6e3 Mon Sep 17 00:00:00 2001 From: Gabriel Valcazar Date: Wed, 2 Jun 2021 15:53:46 +0200 Subject: [PATCH] swu-images: add "installed-directly" flag to sw-description Otherwise, swupdate will treat the update process like it's an OTA one and it will try to store the package contents in /tmp, which won't fit. swupdate commit 8b70ae5796e75c2ff856e8c46b3a3c09cb8fcccd states that all local SWU packages should include this flag, since the old implementation had this information implicitly. Signed-off-by: Gabriel Valcazar --- meta-digi-dey/recipes-digi/swu-images/files/sw-description | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-digi-dey/recipes-digi/swu-images/files/sw-description b/meta-digi-dey/recipes-digi/swu-images/files/sw-description index 912af7be3..e2b1e365b 100644 --- a/meta-digi-dey/recipes-digi/swu-images/files/sw-description +++ b/meta-digi-dey/recipes-digi/swu-images/files/sw-description @@ -9,12 +9,14 @@ software = device = "##BOOT_DEV##"; type = "raw"; sha256 = "@##BOOTIMG_NAME##"; + installed-directly = true; }, { filename = "##ROOTIMG_NAME##"; device = "##ROOTFS_DEV##"; type = "raw"; sha256 = "@##ROOTIMG_NAME##"; + installed-directly = true; } ); ##PREINSTALL_SCRIPT##