[oe-commits] [openembedded-core] 02/06: rootfs.py: Respect OPKGLIBDIR variable

git at git.openembedded.org git at git.openembedded.org
Thu Mar 23 16:34:39 UTC 2017


This is an automated email from the git hooks/post-receive script.

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

commit bebdb056c8bd0efc056f07b275a154e5d5a3aa2b
Author: Martin Jansa <martin.jansa at gmail.com>
AuthorDate: Thu Mar 23 13:21:22 2017 +0100

    rootfs.py: Respect OPKGLIBDIR variable
    
    * when OPKGLIBDIR doesn't have the default /var/lib value it will
      silently fail to copy package database from normal rootfs to debugfs
      rootfs and then when trying to install *-dbg complimentary packages
      it won't install anything, because installed_pkgs.txt file generated
      from debugfs is empty
    
    Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oe/rootfs.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py
index 5e1c097..96591f3 100644
--- a/meta/lib/oe/rootfs.py
+++ b/meta/lib/oe/rootfs.py
@@ -946,7 +946,9 @@ class OpkgRootfs(DpkgOpkgRootfs):
         if self.progress_reporter:
             self.progress_reporter.next_stage()
 
-        self._setup_dbg_rootfs(['/var/lib/opkg'])
+        opkg_lib_dir = self.d.getVar('OPKGLIBDIR')
+        opkg_dir = os.path.join(opkg_lib_dir, 'opkg')
+        self._setup_dbg_rootfs([opkg_dir])
 
         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