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:
parent
b52339d591
commit
116cb2ac26
|
|
@ -9,14 +9,14 @@ software =
|
|||
filename = "##BOOTIMG_NAME##";
|
||||
device = "##BOOT_DEV_A##";
|
||||
type = "raw";
|
||||
sha256 = "@##BOOTIMG_NAME##";
|
||||
sha256 = "$swupdate_get_sha256(##BOOTIMG_NAME##)";
|
||||
installed-directly = true;
|
||||
},
|
||||
{
|
||||
filename = "##ROOTIMG_NAME##";
|
||||
device = "##ROOTFS_DEV_A##";
|
||||
type = "raw";
|
||||
sha256 = "@##ROOTIMG_NAME##";
|
||||
sha256 = "$swupdate_get_sha256(##ROOTIMG_NAME##)";
|
||||
compressed = "zlib";
|
||||
installed-directly = true;
|
||||
}
|
||||
|
|
@ -34,14 +34,14 @@ software =
|
|||
filename = "##BOOTIMG_NAME##";
|
||||
device = "##BOOT_DEV_B##";
|
||||
type = "raw";
|
||||
sha256 = "@##BOOTIMG_NAME##";
|
||||
sha256 = "$swupdate_get_sha256(##BOOTIMG_NAME##)";
|
||||
installed-directly = true;
|
||||
},
|
||||
{
|
||||
filename = "##ROOTIMG_NAME##";
|
||||
device = "##ROOTFS_DEV_B##";
|
||||
type = "raw";
|
||||
sha256 = "@##ROOTIMG_NAME##";
|
||||
sha256 = "$swupdate_get_sha256(##ROOTIMG_NAME##)";
|
||||
compressed = "zlib";
|
||||
installed-directly = true;
|
||||
}
|
||||
|
|
@ -61,14 +61,14 @@ software =
|
|||
filename = "##BOOTIMG_NAME##";
|
||||
volume = "##BOOT_DEV_A##";
|
||||
type = "ubivol";
|
||||
sha256 = "@##BOOTIMG_NAME##";
|
||||
sha256 = "$swupdate_get_sha256(##BOOTIMG_NAME##)";
|
||||
installed-directly = true;
|
||||
},
|
||||
{
|
||||
filename = "##ROOTIMG_NAME##";
|
||||
volume = "##ROOTFS_DEV_A##";
|
||||
type = "ubivol";
|
||||
sha256 = "@##ROOTIMG_NAME##";
|
||||
sha256 = "$swupdate_get_sha256(##ROOTIMG_NAME##)";
|
||||
installed-directly = true;
|
||||
}
|
||||
);
|
||||
|
|
@ -85,14 +85,14 @@ software =
|
|||
filename = "##BOOTIMG_NAME##";
|
||||
volume = "##BOOT_DEV_B##";
|
||||
type = "ubivol";
|
||||
sha256 = "@##BOOTIMG_NAME##";
|
||||
sha256 = "$swupdate_get_sha256(##BOOTIMG_NAME##)";
|
||||
installed-directly = true;
|
||||
},
|
||||
{
|
||||
filename = "##ROOTIMG_NAME##";
|
||||
volume = "##ROOTFS_DEV_B##";
|
||||
type = "ubivol";
|
||||
sha256 = "@##ROOTIMG_NAME##";
|
||||
sha256 = "$swupdate_get_sha256(##ROOTIMG_NAME##)";
|
||||
installed-directly = true;
|
||||
}
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in New Issue