48 lines
1.4 KiB
Plaintext
48 lines
1.4 KiB
Plaintext
software =
|
|
{
|
|
version = "##SW_VERSION##";
|
|
description = "##DESCRIPTION##";
|
|
|
|
mmc = {
|
|
platform: {
|
|
images: (
|
|
{
|
|
filename = "##BOOTIMG_NAME##";
|
|
device = "##BOOT_DEV##";
|
|
type = "raw";
|
|
sha256 = "$swupdate_get_sha256(##BOOTIMG_NAME##)";
|
|
installed-directly = true;
|
|
},
|
|
{
|
|
filename = "##ROOTIMG_NAME##";
|
|
device = "##ROOTFS_DEV##";
|
|
type ="raw";
|
|
sha256 = "$swupdate_get_sha256(##ROOTIMG_NAME##)";
|
|
compressed = "zlib";
|
|
installed-directly = true;
|
|
}
|
|
);
|
|
};
|
|
};
|
|
mtd = {
|
|
platform: {
|
|
images: (
|
|
{
|
|
filename = "##BOOTIMG_NAME##";
|
|
volume = "##BOOT_DEV##";
|
|
type = "ubivol";
|
|
sha256 = "$swupdate_get_sha256(##BOOTIMG_NAME##)";
|
|
installed-directly = true;
|
|
},
|
|
{
|
|
filename = "##ROOTIMG_NAME##";
|
|
volume = "##ROOTFS_DEV##";
|
|
type ="ubivol";
|
|
sha256 = "$swupdate_get_sha256(##ROOTIMG_NAME##)";
|
|
installed-directly = true;
|
|
}
|
|
);
|
|
};
|
|
};
|
|
}
|