diff options
author | 2020-09-24 15:31:14 -0400 | |
---|---|---|
committer | 2020-09-25 10:54:30 +0100 | |
commit | 3250e3311f713210a5f052e18e3c3d529f87a056 (patch) | |
tree | 8c635f2435fbd5c8d8f1b8136729d64778208fbc /meta/classes/kernel-yocto.bbclass | |
parent | cd1795287ae9a5df0f25472cd50f4355f6eecb7f (diff) | |
download | poky-3250e3311f713210a5f052e18e3c3d529f87a056.tar.gz poky-3250e3311f713210a5f052e18e3c3d529f87a056.tar.bz2 poky-3250e3311f713210a5f052e18e3c3d529f87a056.zip |
kernel-yocto: add KBUILD_DEFCONFIG search location to failure message
It was pointed out that since the check for the existence of
KBUILD_DEFCONFIG knows where it is looking, that should be part of
the error/log message.
We only look in one location for the defconfigs, so add where we
checked to the message.
(From OE-Core rev: 1d4d80be41d273abd1fb6416976603d924457973)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/kernel-yocto.bbclass')
-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 a35c5923df..35587dd564 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass @@ -155,7 +155,7 @@ do_kernel_metadata() { fi in_tree_defconfig="${WORKDIR}/defconfig" else - bbfatal "A KBUILD_DEFCONFIG '${KBUILD_DEFCONFIG}' was specified, but not present in the source tree" + bbfatal "A KBUILD_DEFCONFIG '${KBUILD_DEFCONFIG}' was specified, but not present in the source tree (${S}/arch/${ARCH}/configs/)" fi fi |