From 7deb1f670c188c24744b7888a2d2f73c2a8ddff7 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 18 Dec 2014 11:41:58 +0000 Subject: kernel: Clean ${S} before unpack Currently unpack just forces sources over the current files. This change ensures ${S} is cleaned out before sources are unpacked. This resolves issues seen when upgrading to the new kernel class changes. Ultimately, this should probably move to base.bbclass but one step at a time, this solves an immediate problem blocking the other patches from merging. Signed-off-by: Richard Purdie --- meta/classes/kernel.bbclass | 2 ++ 1 file changed, 2 insertions(+) (limited to 'meta') diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index 6eb87acf06..c9e1c363e8 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass @@ -5,6 +5,8 @@ DEPENDS += "virtual/${TARGET_PREFIX}binutils virtual/${TARGET_PREFIX}gcc kmod-na S = "${STAGING_DIR_TARGET}/${KERNEL_SRC_PATH}" +do_unpack[cleandirs] = "${S}" + # we include gcc above, we dont need virtual/libc INHIBIT_DEFAULT_DEPS = "1" -- cgit 1.2.3-korg