diff options
author | Saul Wold <sgw@linux.intel.com> | 2014-07-18 10:05:14 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-19 00:17:36 +0100 |
commit | d4f4ad5edd8914e696722c1a1c3ba7de091d4c19 (patch) | |
tree | 3aa828d26c2d037e93533d3cb7267e1723c5cacf /meta/lib/oe | |
parent | f3b5421a9c95b5516e5810285729affe80729135 (diff) | |
download | openembedded-core-d4f4ad5edd8914e696722c1a1c3ba7de091d4c19.tar.gz openembedded-core-d4f4ad5edd8914e696722c1a1c3ba7de091d4c19.tar.bz2 openembedded-core-d4f4ad5edd8914e696722c1a1c3ba7de091d4c19.zip |
rootfs: Remove the extraneous install directory
The /install/tmp diectory is created during installation by
the smart package manager, we need to clean it up here
[YOCTO #6497]
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/rootfs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index bc2524f593..b34856c3ed 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py @@ -379,6 +379,7 @@ class RpmRootfs(Rootfs): # __db.00* (Berkeley DB files that hold locks, rpm specific environment # settings, etc.), that should not get into the final rootfs self.pm.unlock_rpm_db() + bb.utils.remove(self.image_rootfs + "/install", True) class DpkgRootfs(Rootfs): |