mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 00:59:48 +00:00
lib/oe/rootfs: Fix DEBUGFS generation, without openssl
In commit 20ea6d274bb0a9a5addb111f32793de49b907865, debugfs generation for images using opkg, which included openssl was fixed. However, that broke the generation of the opkg-based images, that lacks openssl. The error is a python stack trace, showing that shutil.copytree tries to copy a non-existing directory. This relates to [YOCTO #9040]. (From OE-Core rev: f6b0b260ce18a30d04edfb0afb7942b9f9a5480b) Signed-off-by: Anders Darander <anders@chargestorm.se> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
bf4616d43b
commit
e73a85be3e
@@ -116,6 +116,8 @@ class Rootfs(object):
|
|||||||
|
|
||||||
bb.note(" Copying back package database...")
|
bb.note(" Copying back package database...")
|
||||||
for dir in dirs:
|
for dir in dirs:
|
||||||
|
if not os.path.isdir(self.image_rootfs + '-orig' + dir):
|
||||||
|
continue
|
||||||
bb.utils.mkdirhier(self.image_rootfs + os.path.dirname(dir))
|
bb.utils.mkdirhier(self.image_rootfs + os.path.dirname(dir))
|
||||||
shutil.copytree(self.image_rootfs + '-orig' + dir, self.image_rootfs + dir, symlinks=True)
|
shutil.copytree(self.image_rootfs + '-orig' + dir, self.image_rootfs + dir, symlinks=True)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user