diff options
author | Anders Darander <anders@chargestorm.se> | 2016-05-03 13:57:16 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-11 10:33:41 +0100 |
commit | c1ce0d9a9e200e35a9b6f9d537232875683ab9f1 (patch) | |
tree | e7f263d5ac94ed6b02705f362007be0c807fdf8c /meta/lib | |
parent | 442fbdd58d3c629e5d172a50ca388f2ae0ec8439 (diff) | |
download | poky-c1ce0d9a9e200e35a9b6f9d537232875683ab9f1.tar.gz |
lib/oe/rootfs: Fix DEBUGFS generation for opkg & openssl-cnf
When enabling extra DEBUGFS image generation with opkg, the following error is
seen when openssl-cnf is included in the image.
Collected errors:
* file_md5sum_alloc: Failed to open file /mnt/cs-builds/anders/oe-build/build-ccu/tmp/work/ccu-oe-linux-gnueabi/ccu-image/1.0-r0/rootfs/usr/lib/ssl/openssl.cnf: No such file or directory.
Lots of similar issues was fixed by an earlier commit in oe-core,
5084ed9401250ed269a49d27b303806ab173c5d5, but openssl-cnf is outside of that fix.
Followup to [YOCTO #9490]
(From OE-Core rev: 20ea6d274bb0a9a5addb111f32793de49b907865)
Signed-off-by: Anders Darander <anders@chargestorm.se>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/rootfs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index 0546c1e321..95fd3ab7f1 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py | |||
@@ -907,7 +907,7 @@ class OpkgRootfs(DpkgOpkgRootfs): | |||
907 | 907 | ||
908 | self.pm.install_complementary() | 908 | self.pm.install_complementary() |
909 | 909 | ||
910 | self._setup_dbg_rootfs(['/etc', '/var/lib/opkg']) | 910 | self._setup_dbg_rootfs(['/etc', '/var/lib/opkg', '/usr/lib/ssl']) |
911 | 911 | ||
912 | execute_pre_post_process(self.d, opkg_post_process_cmds) | 912 | execute_pre_post_process(self.d, opkg_post_process_cmds) |
913 | 913 | ||