[oe-commits] [openembedded-core] 06/06: lib/oe/rootfs: Fix DEBUGFS generation for opkg & openssl-cnf

git at git.openembedded.org git at git.openembedded.org
Tue May 17 22:22:53 UTC 2016


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

commit cd4ad2b8a5bd11e91e854cea6a36c7b92fb7cea8
Author: Anders Darander <anders at chargestorm.se>
AuthorDate: Tue May 3 13:57:16 2016 +0200

    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 at chargestorm.se>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
    Signed-off-by: Armin Kuster <akuster at mvista.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oe/rootfs.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py
index 0546c1e..95fd3ab 100644
--- a/meta/lib/oe/rootfs.py
+++ b/meta/lib/oe/rootfs.py
@@ -907,7 +907,7 @@ class OpkgRootfs(DpkgOpkgRootfs):
 
         self.pm.install_complementary()
 
-        self._setup_dbg_rootfs(['/etc', '/var/lib/opkg'])
+        self._setup_dbg_rootfs(['/etc', '/var/lib/opkg', '/usr/lib/ssl'])
 
         execute_pre_post_process(self.d, opkg_post_process_cmds)
 

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


More information about the Openembedded-commits mailing list