From: Richard Purdie Date: Fri, 24 Oct 2014 14:14:31 +0000 (+0100) Subject: rm_work: Speed up rootfs/populate_sdk removal X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=38b1f9d8e4fa9afb8644e4be55191fbe5cfd99a1;p=openembedded-core.git rm_work: Speed up rootfs/populate_sdk removal Commands like bitbake X -c rootfs or bitbake X -c populate_sdk do not trigger rm_work to clean up the directories afterwards since it traditionally hooks onto do_build. This change means those two tasks now clean up after themselves. We use the cleandirs function attribute to handle this. [YOCTO #6413] (From OE-Core rev: 6bf06d80c2ce03dfdedac5ad8cf42ef8e36b0ecb) Signed-off-by: Richard Purdie Signed-off-by: Armin Kuster --- diff --git a/meta/classes/rm_work.bbclass b/meta/classes/rm_work.bbclass index f0f6d18249..7979a53a38 100644 --- a/meta/classes/rm_work.bbclass +++ b/meta/classes/rm_work.bbclass @@ -97,3 +97,15 @@ do_rm_work_all () { } do_rm_work_all[recrdeptask] = "do_rm_work" addtask rm_work_all after do_rm_work + +do_populate_sdk[postfuncs] += "rm_work_populatesdk" +rm_work_populatesdk () { + : +} +rm_work_populatesdk[cleandirs] = "${WORKDIR}/sdk" + +do_rootfs[postfuncs] += "rm_work_rootfs" +rm_work_rootfs () { + : +} +rm_work_rootfs[cleandirs] = "${WORKDIR}/rootfs"