diff options
author | João Henrique Ferreira de Freitas <joaohf@gmail.com> | 2014-02-16 18:40:57 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-20 14:28:09 +0000 |
commit | 07e59b5ff659bde6e6a60c4781c0a2deb406c667 (patch) | |
tree | fca276c26f7a3a1778117b510dab784950b13aff /meta/classes | |
parent | ccb0a580956d309e8a501ee956f08fafcc886ea6 (diff) | |
download | poky-07e59b5ff659bde6e6a60c4781c0a2deb406c667.tar.gz |
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]
(From OE-Core rev: db2a44c8f08f2371a52ff6662d6bc64bc42ad551)
Signed-off-by: João Henrique Ferreira de Freitas <joaohf@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
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() { | |||
411 | OE_TERMINAL_EXPORTS += "GUILT_BASE KBUILD_OUTPUT" | 411 | OE_TERMINAL_EXPORTS += "GUILT_BASE KBUILD_OUTPUT" |
412 | GUILT_BASE = "meta" | 412 | GUILT_BASE = "meta" |
413 | KBUILD_OUTPUT = "${B}" | 413 | KBUILD_OUTPUT = "${B}" |
414 | |||
415 | do_diffconfig[depends] += "virtual/kernel:do_kernel_configme" | ||