From: Saul Wold Date: Fri, 18 Jul 2014 17:05:14 +0000 (-0700) Subject: rootfs: Remove the extraneous install directory X-Git-Tag: 2015-4~2249 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=d4f4ad5edd8914e696722c1a1c3ba7de091d4c19;p=openembedded-core.git 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 Signed-off-by: Richard Purdie --- 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):