[oe-commits] [openembedded-core] branch master updated: image.bbclass: fix incomplete .rootfs customization

git at git.openembedded.org git at git.openembedded.org
Mon Mar 7 22:11:43 UTC 2016


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

The following commit(s) were added to refs/heads/master by this push:
       new  0d02159   image.bbclass: fix incomplete .rootfs customization
0d02159 is described below

commit 0d02159c8d66bb136f7da2c10fda7d1a57f40cec
Author: Patrick Ohly <patrick.ohly at intel.com>
AuthorDate: Mon Mar 7 22:13:48 2016 +0100

    image.bbclass: fix incomplete .rootfs customization
    
    The patch for making the .rootfs configurable was incomplete: in the
    python create_symlinks() method the new variable must be expanded
    explicitly.
    
    Not doing so broke the symlink creation and that led to hard build
    failures in image types depending on the boot-directdisk.bbclass (like
    qcow2) because the build_boot_dd() method relied on the symlink.
    
    Signed-off-by: Patrick Ohly <patrick.ohly at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/image.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 081a0b3..8b6c30b 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -474,7 +474,7 @@ python create_symlinks() {
     manifest_name = d.getVar('IMAGE_MANIFEST', True)
     taskname = d.getVar("BB_CURRENTTASK", True)
     subimages = (d.getVarFlag("do_" + taskname, 'subimages', False) or "").split()
-    imgsuffix = d.getVarFlag("do_" + taskname, 'imgsuffix', True) or "${IMAGE_NAME_SUFFIX}."
+    imgsuffix = d.getVarFlag("do_" + taskname, 'imgsuffix', True) or d.expand("${IMAGE_NAME_SUFFIX}.")
     os.chdir(deploy_dir)
 
     if not link_name:

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


More information about the Openembedded-commits mailing list