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:18:21 +0100 |
commit | 4d2ac6f6df2b3ef98699dd4f7afadb2d994222bb (patch) | |
tree | aecdcb7b1c1ff7ebb280401de7a84c2585c159e8 /meta/lib | |
parent | bcadbb66eca662d9bb7a72db9edd66be5aa49f96 (diff) | |
download | poky-4d2ac6f6df2b3ef98699dd4f7afadb2d994222bb.tar.gz |
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]
(From OE-Core rev: d4f4ad5edd8914e696722c1a1c3ba7de091d4c19)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-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): | |||
379 | # __db.00* (Berkeley DB files that hold locks, rpm specific environment | 379 | # __db.00* (Berkeley DB files that hold locks, rpm specific environment |
380 | # settings, etc.), that should not get into the final rootfs | 380 | # settings, etc.), that should not get into the final rootfs |
381 | self.pm.unlock_rpm_db() | 381 | self.pm.unlock_rpm_db() |
382 | bb.utils.remove(self.image_rootfs + "/install", True) | ||
382 | 383 | ||
383 | 384 | ||
384 | class DpkgRootfs(Rootfs): | 385 | class DpkgRootfs(Rootfs): |