[oe-commits] [openembedded-core] 06/08: wic: rawcopy: make source filenames unique

git at git.openembedded.org git at git.openembedded.org
Wed Jul 6 16:28:39 UTC 2016


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

commit 6f7afd6f76c40e1b050e40bc4965cb5000df7088
Author: Ed Bartosh <ed.bartosh at linux.intel.com>
AuthorDate: Fri Jul 1 11:05:39 2016 +0300

    wic: rawcopy: make source filenames unique
    
    Rawcopy plugin copies source files to build folder before using them
    to assemble result image. After assembling the image wic renames
    source files to <image>.p<partition number>. If the same source file
    is used in multiple partitions wic breaks trying to rename file that
    doesn't exist.
    
    Added <line number> suffix to the files when copying them to the
    build dir. This should make filename unique even if the same source
    file is used for multiple partitions.
    
    [YOCTO #9826]
    
    Signed-off-by: Ed Bartosh <ed.bartosh at linux.intel.com>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/lib/wic/plugins/source/rawcopy.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/lib/wic/plugins/source/rawcopy.py b/scripts/lib/wic/plugins/source/rawcopy.py
index 0472f53..7ce0cc4 100644
--- a/scripts/lib/wic/plugins/source/rawcopy.py
+++ b/scripts/lib/wic/plugins/source/rawcopy.py
@@ -67,7 +67,7 @@ class RawCopyPlugin(SourcePlugin):
             return
 
         src = os.path.join(bootimg_dir, source_params['file'])
-        dst = os.path.join(cr_workdir, source_params['file'])
+        dst = os.path.join(cr_workdir, "%s.%s" % (source_params['file'], part.lineno))
 
         if 'skip' in source_params:
             dd_cmd = "dd if=%s of=%s ibs=%s skip=1 conv=notrunc" % \

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


More information about the Openembedded-commits mailing list