diff options
author | Ross Burton <ross.burton@intel.com> | 2017-01-10 15:09:48 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-16 18:05:13 +0000 |
commit | 1800b1ba7ae07cd010e529653eaa1d7a5841e6e5 (patch) | |
tree | aef95874f7688891d4313caa83f81e780d1f9254 | |
parent | b894376415d09781890fa03d5643e9e05248f11e (diff) | |
download | poky-1800b1ba7ae07cd010e529653eaa1d7a5841e6e5.tar.gz |
rootfs: don't put /usr/lib/ssl and /etc into debugfs
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.
(From OE-Core rev: 7267b1f6fa25e290eac070263355aa7f30b2ebcb)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 d9a473006a..274ddb8105 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py | |||
@@ -952,7 +952,7 @@ class OpkgRootfs(DpkgOpkgRootfs): | |||
952 | if self.progress_reporter: | 952 | if self.progress_reporter: |
953 | self.progress_reporter.next_stage() | 953 | self.progress_reporter.next_stage() |
954 | 954 | ||
955 | self._setup_dbg_rootfs(['/etc', '/var/lib/opkg', '/usr/lib/ssl']) | 955 | self._setup_dbg_rootfs(['/var/lib/opkg']) |
956 | 956 | ||
957 | execute_pre_post_process(self.d, opkg_post_process_cmds) | 957 | execute_pre_post_process(self.d, opkg_post_process_cmds) |
958 | 958 | ||