diff --git a/meta-digi-dey/recipes-digi/swu-images/files/ccimx6ul/sw-description b/meta-digi-dey/recipes-digi/swu-images/files/ccimx6ul/sw-description deleted file mode 100644 index be20fab5f..000000000 --- a/meta-digi-dey/recipes-digi/swu-images/files/ccimx6ul/sw-description +++ /dev/null @@ -1,20 +0,0 @@ -software = -{ - version = "##SW_VERSION##"; - description = "##DESCRIPTION##"; - - images: ( - { - filename = "##BOOTIMG_NAME##"; - volume = "##BOOT_DEV##"; - type = "ubivol"; - sha256 = "@##BOOTIMG_NAME##"; - }, - { - filename = "##ROOTIMG_NAME##"; - volume = "##ROOTFS_DEV##"; - type = "ubivol"; - sha256 = "@##ROOTIMG_NAME##"; - } - ); -} 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 e2b1e365b..727581d36 100644 --- a/meta-digi-dey/recipes-digi/swu-images/files/sw-description +++ b/meta-digi-dey/recipes-digi/swu-images/files/sw-description @@ -3,21 +3,45 @@ software = version = "##SW_VERSION##"; description = "##DESCRIPTION##"; - images: ( - { - filename = "##BOOTIMG_NAME##"; - 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; + mmc = { + platform: { + images: ( + { + filename = "##BOOTIMG_NAME##"; + 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## + ##PREINSTALL_SCRIPT## + }; + mtd = { + platform: { + images: ( + { + filename = "##BOOTIMG_NAME##"; + volume = "##BOOT_DEV##"; + type = "ubivol"; + sha256 = "@##BOOTIMG_NAME##"; + installed-directly = true; + }, + { + filename = "##ROOTIMG_NAME##"; + volume = "##ROOTFS_DEV##"; + type ="ubivol"; + sha256 = "@##ROOTIMG_NAME##"; + installed-directly = true; + } + ); + }; + }; }