From 6bf06d80c2ce03dfdedac5ad8cf42ef8e36b0ecb Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 24 Oct 2014 15:14:31 +0100 Subject: 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] Signed-off-by: Richard Purdie --- meta/classes/rm_work.bbclass | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'meta') diff --git a/meta/classes/rm_work.bbclass b/meta/classes/rm_work.bbclass index f0f6d18249..7b1ec17205 100644 --- a/meta/classes/rm_work.bbclass +++ b/meta/classes/rm_work.bbclass @@ -97,3 +97,16 @@ 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" + -- cgit 1.2.3-korg