From d4f4ad5edd8914e696722c1a1c3ba7de091d4c19 Mon Sep 17 00:00:00 2001 From: Saul Wold Date: Fri, 18 Jul 2014 10:05:14 -0700 Subject: 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 --- meta/lib/oe/rootfs.py | 1 + 1 file changed, 1 insertion(+) (limited to 'meta/lib') 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): -- cgit 1.2.3-korg