From: João Henrique Ferreira de Freitas Date: Sun, 16 Feb 2014 21:40:57 +0000 (-0300) Subject: kernel-yocto: Add do_diffconfig task X-Git-Tag: 2015-4~3606 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=db2a44c8f08f2371a52ff6662d6bc64bc42ad551;p=openembedded-core.git kernel-yocto: Add do_diffconfig task Instead of using 'diff' command between two kernel config files, the task diffconfig does the job creating the file $WORKDIR/fragment.cfg that user should review and use. [YOCTO #3862] Signed-off-by: João Henrique Ferreira de Freitas Signed-off-by: Saul Wold --- diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 8f79932438..fab5d4c570 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass @@ -411,3 +411,5 @@ do_kernel_link_vmlinux() { OE_TERMINAL_EXPORTS += "GUILT_BASE KBUILD_OUTPUT" GUILT_BASE = "meta" KBUILD_OUTPUT = "${B}" + +do_diffconfig[depends] += "virtual/kernel:do_kernel_configme"