diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2011-01-31 15:52:48 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-01 23:59:43 +0000 |
commit | 95366e44c97a178e2327b3809b0ff29e8dc3deda (patch) | |
tree | 558fd3ab208aa0e750b6a7d22c6e8d92f6277ced /meta/recipes-kernel/linux | |
parent | e4a4d9e984a9661162042af6183ed0892506deb2 (diff) | |
download | openembedded-core-95366e44c97a178e2327b3809b0ff29e8dc3deda.tar.gz openembedded-core-95366e44c97a178e2327b3809b0ff29e8dc3deda.tar.bz2 openembedded-core-95366e44c97a178e2327b3809b0ff29e8dc3deda.zip |
linux-yocto: export kernel configuration audit to the console
Fixes [BUGID #692]
Previously the information dumped by the kernel configuration audit
scripts was only placed in log files. This isn't as useful as it
could be, since they are rarely checked. This change takes the
output from kconf_check and explicitly displays it to the user.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta/recipes-kernel/linux')
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto.inc | 1 | ||||
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto_git.bb | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto.inc b/meta/recipes-kernel/linux/linux-yocto.inc index dc4ab5503c..3ad849e46e 100644 --- a/meta/recipes-kernel/linux/linux-yocto.inc +++ b/meta/recipes-kernel/linux/linux-yocto.inc @@ -15,7 +15,6 @@ LINUX_KERNEL_TYPE ?= standard do_patch[depends] = "kern-tools-native:do_populate_sysroot" addtask kernel_configme before do_configure after do_patch -addtask kernel_configcheck after do_configure before do_compile # Pick up shared functions inherit kernel-yocto diff --git a/meta/recipes-kernel/linux/linux-yocto_git.bb b/meta/recipes-kernel/linux/linux-yocto_git.bb index 7833f65fa4..b1486bce18 100644 --- a/meta/recipes-kernel/linux/linux-yocto_git.bb +++ b/meta/recipes-kernel/linux/linux-yocto_git.bb @@ -30,5 +30,6 @@ KERNEL_FEATURES=features/netfilter # extra tasks addtask kernel_link_vmlinux after do_compile before do_install addtask validate_branches before do_patch after do_kernel_checkout +addtask kernel_configcheck after do_configure before do_compile require linux-tools.inc |