diff options
author | Saul Wold <sgw@linux.intel.com> | 2017-12-04 10:39:23 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-12-10 22:41:44 +0000 |
commit | b63cc051f1eb58c768f49db2c04843336e62d3df (patch) | |
tree | 5d39f3cf65eb8cb6b955edff20c9113b04ec73f5 | |
parent | 8fe7f4d227f2f4ae0e39d6661b848611d907c0b6 (diff) | |
download | openembedded-core-b63cc051f1eb58c768f49db2c04843336e62d3df.tar.gz openembedded-core-b63cc051f1eb58c768f49db2c04843336e62d3df.tar.bz2 openembedded-core-b63cc051f1eb58c768f49db2c04843336e62d3df.zip |
kernel-yocto: ensure sccs variable is set when using KBUILD_DEFCONFIG
When using KBUILD_DEFCONFIG, $sccs should be set to the $WORKDIR/defconfig
regardless if it compares or is copied. Otherwise $sccs is not set and the
defconfig is not found correctly.
Part of
[YOCTO #12162]
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 1d447951c4..98ec78fb76 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass @@ -110,8 +110,8 @@ do_kernel_metadata() { fi else cp -f ${S}/arch/${ARCH}/configs/${KBUILD_DEFCONFIG} ${WORKDIR}/defconfig - sccs="${WORKDIR}/defconfig" fi + sccs="${WORKDIR}/defconfig" else bbfatal "A KBUILD_DEFCONFIG '${KBUILD_DEFCONFIG}' was specified, but not present in the source tree" fi |