summaryrefslogtreecommitdiffstats
path: root/meta/classes/rootfs-postcommands.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/rootfs-postcommands.bbclass')
-rw-r--r--meta/classes/rootfs-postcommands.bbclass4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/rootfs-postcommands.bbclass b/meta/classes/rootfs-postcommands.bbclass
index 970e9f34b1..0736d6c533 100644
--- a/meta/classes/rootfs-postcommands.bbclass
+++ b/meta/classes/rootfs-postcommands.bbclass
@@ -207,13 +207,15 @@ insert_feed_uris () {
207 207
208python write_image_manifest () { 208python write_image_manifest () {
209 from oe.rootfs import image_list_installed_packages 209 from oe.rootfs import image_list_installed_packages
210 from oe.utils import format_pkg_list
210 211
211 deploy_dir = d.getVar('DEPLOY_DIR_IMAGE', True) 212 deploy_dir = d.getVar('DEPLOY_DIR_IMAGE', True)
212 link_name = d.getVar('IMAGE_LINK_NAME', True) 213 link_name = d.getVar('IMAGE_LINK_NAME', True)
213 manifest_name = d.getVar('IMAGE_MANIFEST', True) 214 manifest_name = d.getVar('IMAGE_MANIFEST', True)
214 215
216 pkgs = image_list_installed_packages(d)
215 with open(manifest_name, 'w+') as image_manifest: 217 with open(manifest_name, 'w+') as image_manifest:
216 image_manifest.write(image_list_installed_packages(d, 'ver')) 218 image_manifest.write(format_pkg_list(pkgs, "ver"))
217 image_manifest.write("\n") 219 image_manifest.write("\n")
218 220
219 if manifest_name is not None and os.path.exists(manifest_name): 221 if manifest_name is not None and os.path.exists(manifest_name):