swu-images: fix sha256 entry from sw-description file in dualboot

This commit fixes the following build warning with the swupdate v2022.05:

WARNING: dey-image-qt-swu-1.0-r0 do_swuimage: Syntax for sha256 changed,
please use $swupdate_get_sha256(dey-image-qt-wayland-ccmp15-dvk.boot.ubifs)
WARNING: dey-image-qt-swu-1.0-r0 do_swuimage: Syntax for sha256 changed,
please use $swupdate_get_sha256(dey-image-qt-wayland-ccmp15-dvk.ubifs)
WARNING: dey-image-qt-swu-1.0-r0 do_swuimage: Syntax for sha256 changed,
please use $swupdate_get_sha256(dey-image-qt-wayland-ccmp15-dvk.boot.ubifs)
WARNING: dey-image-qt-swu-1.0-r0 do_swuimage: Syntax for sha256 changed,
please use $swupdate_get_sha256(dey-image-qt-wayland-ccmp15-dvk.ubifs)
WARNING: dey-image-qt-swu-1.0-r0 do_swuimage: Syntax for sha256 changed,
please use $swupdate_get_sha256(dey-image-qt-wayland-ccmp15-dvk.boot.ubifs)
WARNING: dey-image-qt-swu-1.0-r0 do_swuimage: Syntax for sha256 changed,
please use $swupdate_get_sha256(dey-image-qt-wayland-ccmp15-dvk.ubifs)
WARNING: dey-image-qt-swu-1.0-r0 do_swuimage: Syntax for sha256 changed,
please use $swupdate_get_sha256(dey-image-qt-wayland-ccmp15-dvk.boot.ubifs)
WARNING: dey-image-qt-swu-1.0-r0 do_swuimage: Syntax for sha256 changed,
please use $swupdate_get_sha256(dey-image-qt-wayland-ccmp15-dvk.ubifs)


Signed-off-by: Francisco Gil <francisco.gilmartinez@digi.com>
This commit is contained in:
Francisco Gil 2022-11-14 17:38:11 +01:00
parent b52339d591
commit 116cb2ac26
1 changed files with 8 additions and 8 deletions

View File

@ -9,14 +9,14 @@ software =
filename = "##BOOTIMG_NAME##"; filename = "##BOOTIMG_NAME##";
device = "##BOOT_DEV_A##"; device = "##BOOT_DEV_A##";
type = "raw"; type = "raw";
sha256 = "@##BOOTIMG_NAME##"; sha256 = "$swupdate_get_sha256(##BOOTIMG_NAME##)";
installed-directly = true; installed-directly = true;
}, },
{ {
filename = "##ROOTIMG_NAME##"; filename = "##ROOTIMG_NAME##";
device = "##ROOTFS_DEV_A##"; device = "##ROOTFS_DEV_A##";
type = "raw"; type = "raw";
sha256 = "@##ROOTIMG_NAME##"; sha256 = "$swupdate_get_sha256(##ROOTIMG_NAME##)";
compressed = "zlib"; compressed = "zlib";
installed-directly = true; installed-directly = true;
} }
@ -34,14 +34,14 @@ software =
filename = "##BOOTIMG_NAME##"; filename = "##BOOTIMG_NAME##";
device = "##BOOT_DEV_B##"; device = "##BOOT_DEV_B##";
type = "raw"; type = "raw";
sha256 = "@##BOOTIMG_NAME##"; sha256 = "$swupdate_get_sha256(##BOOTIMG_NAME##)";
installed-directly = true; installed-directly = true;
}, },
{ {
filename = "##ROOTIMG_NAME##"; filename = "##ROOTIMG_NAME##";
device = "##ROOTFS_DEV_B##"; device = "##ROOTFS_DEV_B##";
type = "raw"; type = "raw";
sha256 = "@##ROOTIMG_NAME##"; sha256 = "$swupdate_get_sha256(##ROOTIMG_NAME##)";
compressed = "zlib"; compressed = "zlib";
installed-directly = true; installed-directly = true;
} }
@ -61,14 +61,14 @@ software =
filename = "##BOOTIMG_NAME##"; filename = "##BOOTIMG_NAME##";
volume = "##BOOT_DEV_A##"; volume = "##BOOT_DEV_A##";
type = "ubivol"; type = "ubivol";
sha256 = "@##BOOTIMG_NAME##"; sha256 = "$swupdate_get_sha256(##BOOTIMG_NAME##)";
installed-directly = true; installed-directly = true;
}, },
{ {
filename = "##ROOTIMG_NAME##"; filename = "##ROOTIMG_NAME##";
volume = "##ROOTFS_DEV_A##"; volume = "##ROOTFS_DEV_A##";
type = "ubivol"; type = "ubivol";
sha256 = "@##ROOTIMG_NAME##"; sha256 = "$swupdate_get_sha256(##ROOTIMG_NAME##)";
installed-directly = true; installed-directly = true;
} }
); );
@ -85,14 +85,14 @@ software =
filename = "##BOOTIMG_NAME##"; filename = "##BOOTIMG_NAME##";
volume = "##BOOT_DEV_B##"; volume = "##BOOT_DEV_B##";
type = "ubivol"; type = "ubivol";
sha256 = "@##BOOTIMG_NAME##"; sha256 = "$swupdate_get_sha256(##BOOTIMG_NAME##)";
installed-directly = true; installed-directly = true;
}, },
{ {
filename = "##ROOTIMG_NAME##"; filename = "##ROOTIMG_NAME##";
volume = "##ROOTFS_DEV_B##"; volume = "##ROOTFS_DEV_B##";
type = "ubivol"; type = "ubivol";
sha256 = "@##ROOTIMG_NAME##"; sha256 = "$swupdate_get_sha256(##ROOTIMG_NAME##)";
installed-directly = true; installed-directly = true;
} }
); );