]> code.ossystems Code Review - openembedded-core.git/commitdiff
rootfs: don't put /usr/lib/ssl and /etc into debugfs
authorRoss Burton <ross.burton@intel.com>
Tue, 10 Jan 2017 15:09:48 +0000 (15:09 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 16 Jan 2017 18:01:54 +0000 (18:01 +0000)
The /etc and /usr/lib/ssl directories were only put into the opkg-generated
debugfs because of a bug in opkg which means that a conffile has to exist if
we're running 'opkg status'.  This is now fixed, so the workaround can be
reverted.

Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/lib/oe/rootfs.py

index d9a473006a6ada0fd0e1f445e530acc7ed00f680..274ddb810546ad9766d6ba1d26425edb8aed5393 100644 (file)
@@ -952,7 +952,7 @@ class OpkgRootfs(DpkgOpkgRootfs):
         if self.progress_reporter:
             self.progress_reporter.next_stage()
 
-        self._setup_dbg_rootfs(['/etc', '/var/lib/opkg', '/usr/lib/ssl'])
+        self._setup_dbg_rootfs(['/var/lib/opkg'])
 
         execute_pre_post_process(self.d, opkg_post_process_cmds)