[oe-commits] [openembedded-core] 07/11: buildhistory.bbclass: create image directory when needed

git at git.openembedded.org git at git.openembedded.org
Tue Mar 29 12:01:38 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 723328319ee53235969ec9cce7ff5d7729dcf8d7
Author: Patrick Ohly <patrick.ohly at intel.com>
AuthorDate: Mon Mar 28 15:27:57 2016 +0200

    buildhistory.bbclass: create image directory when needed
    
    buildhistory_get_imageinfo() assumed that the buildhistory directory
    for the image had already been created earlier. That assumption is not
    true for special images (like the virtual swupd images from
    meta-swupd) where the entire traditional do_rootfs/do_image is
    skipped.
    
    Creating files-in-image.txt still makes sense for such images, so
    support them by creating the directory also in
    buildhistory_get_imageinfo().
    
    Signed-off-by: Patrick Ohly <patrick.ohly at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/buildhistory.bbclass | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass
index 0b3b7ce..108275a 100644
--- a/meta/classes/buildhistory.bbclass
+++ b/meta/classes/buildhistory.bbclass
@@ -504,6 +504,7 @@ buildhistory_get_imageinfo() {
 		return
 	fi
 
+        mkdir -p ${BUILDHISTORY_DIR_IMAGE}
 	buildhistory_list_files ${IMAGE_ROOTFS} ${BUILDHISTORY_DIR_IMAGE}/files-in-image.txt
 
 	# Collect files requested in BUILDHISTORY_IMAGE_FILES

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list