swu-images: fix sha256 entry from sw-description file
This commit fixes the following build warning with the swupdate v2021.11:
WARNING: dey-image-qt-swu-1.0-r0 do_swuimage: Syntax for sha256 changed,
please use $swupdate_get_sha256(dey-image-qt-xxxxxx.boot.ubifs)
WARNING: dey-image-qt-swu-1.0-r0 do_swuimage: Syntax for sha256 changed,
please use $swupdate_get_sha256(dey-image-qt-xxxxxx.ubifs)
Signed-off-by: Arturo Buzarra <arturo.buzarra@digi.com>
This commit is contained in:
parent
cbea119d3d
commit
cf43c47278
|
|
@ -10,14 +10,14 @@ software =
|
||||||
filename = "##BOOTIMG_NAME##";
|
filename = "##BOOTIMG_NAME##";
|
||||||
device = "##BOOT_DEV##";
|
device = "##BOOT_DEV##";
|
||||||
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##";
|
device = "##ROOTFS_DEV##";
|
||||||
type ="raw";
|
type ="raw";
|
||||||
sha256 = "@##ROOTIMG_NAME##";
|
sha256 = "$swupdate_get_sha256(##ROOTIMG_NAME##)";
|
||||||
compressed = "zlib";
|
compressed = "zlib";
|
||||||
installed-directly = true;
|
installed-directly = true;
|
||||||
}
|
}
|
||||||
|
|
@ -31,14 +31,14 @@ software =
|
||||||
filename = "##BOOTIMG_NAME##";
|
filename = "##BOOTIMG_NAME##";
|
||||||
volume = "##BOOT_DEV##";
|
volume = "##BOOT_DEV##";
|
||||||
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##";
|
volume = "##ROOTFS_DEV##";
|
||||||
type ="ubivol";
|
type ="ubivol";
|
||||||
sha256 = "@##ROOTIMG_NAME##";
|
sha256 = "$swupdate_get_sha256(##ROOTIMG_NAME##)";
|
||||||
installed-directly = true;
|
installed-directly = true;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue