[oe-commits] [openembedded-core] 06/25: copy_buildsystem: include layer tree during build structure creation

git at git.openembedded.org git at git.openembedded.org
Fri Aug 18 11:38:44 UTC 2017


This is an automated email from the git hooks/post-receive script.

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

commit 5a59a6997f41e606d088e3e86812de56f72f543b
Author: Andrej Valek <andrej.valek at siemens.com>
AuthorDate: Thu Aug 17 15:16:01 2017 +0200

    copy_buildsystem: include layer tree during build structure creation
    
    When buildsystem with layer structure is going to be copied, only the last
    meta-XXX layer is taken.
    For example, during ext_sdk bblayers creating:
    layers/oe/meta \
    layers/oe/meta-oe \
    layers/oe/meta-networking \
    layers/oe/meta-webserver \
    ...
    It restructured meta-oe, meta-networking,... contents into meta-oe.
    Recipes from meta-oe will be on the same level like meta-networking,
    meta-webserver, ... .
    
    It should take the whole meta path instead of the last one.
    layers/oe/meta \
    layers/oe/meta-oe/meta-oe \
    layers/oe/meta-oe/meta-networking \
    layers/oe/meta-oe/meta-webserver \
    ...
    Now the directory structure is the same like during build creation.
    
    Signed-off-by: Andrej Valek <andrej.valek at siemens.com>
    Signed-off-by: Pascal Bach <pascal.bach at siemens.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oe/copy_buildsystem.py | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/meta/lib/oe/copy_buildsystem.py b/meta/lib/oe/copy_buildsystem.py
index dd506a3..e24488d 100644
--- a/meta/lib/oe/copy_buildsystem.py
+++ b/meta/lib/oe/copy_buildsystem.py
@@ -71,6 +71,11 @@ class BuildSystem(object):
             layerdestpath = destdir
             if corebase == os.path.dirname(layer):
                 layerdestpath += '/' + os.path.basename(corebase)
+            else:
+                layer_relative = os.path.basename(corebase) + '/' + os.path.relpath(layer, corebase)
+                if os.path.dirname(layer_relative) != layernewname:
+                    layerdestpath += '/' + os.path.dirname(layer_relative)
+
             layerdestpath += '/' + layernewname
 
             layer_relative = os.path.relpath(layerdestpath,

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


More information about the Openembedded-commits mailing list