1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-09 05:29:32 +00:00

wic: use sparse_copy to preserve sparseness

Used sparse_copy API in favor of dd/cp in rawcopy plugin to
preserve sparseness of the copied raw content.

[YOCTO #9099]

(From OE-Core rev: 04eca59068a79ae6a9969be495c4cdf0c5c3e466)

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ed Bartosh
2016-04-28 13:58:11 +03:00
committed by Richard Purdie
parent db9557cc46
commit 7669219652
+3 -4
View File
@@ -20,6 +20,7 @@ import os
from wic import msger
from wic.pluginbase import SourcePlugin
from wic.utils.oe.misc import exec_cmd, get_bitbake_var
from wic.filemap import sparse_copy
class RawCopyPlugin(SourcePlugin):
"""
@@ -70,11 +71,9 @@ class RawCopyPlugin(SourcePlugin):
dst = os.path.join(cr_workdir, source_params['file'])
if 'skip' in source_params:
dd_cmd = "dd if=%s of=%s ibs=%s skip=1 conv=notrunc" % \
(src, dst, source_params['skip'])
sparse_copy(src, dst, skip=source_params['skip'])
else:
dd_cmd = "cp %s %s" % (src, dst)
exec_cmd(dd_cmd)
sparse_copy(src, dst)
# get the size in the right units for kickstart (kB)
du_cmd = "du -Lbks %s" % dst