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.

(From OE-Core rev: 7deb1f670c188c24744b7888a2d2f73c2a8ddff7)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2014-12-18 11:41:58 +00:00
parent d0857f4ae3
commit 63695c6353
1 changed files with 2 additions and 0 deletions

View File

@ -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"