diff options
author | Darren Hart <dvhart@linux.intel.com> | 2012-06-27 17:38:57 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-29 13:14:25 +0100 |
commit | 7a41d96c946029aeec03cd26f326bc6ca26e74fd (patch) | |
tree | d0d273d52333be8ca2f9291a8f807c7268057416 /meta/recipes-kernel/linux/linux-yocto.inc | |
parent | eefbc2f219571dd0c66e1099ea4ad72b1a973fd4 (diff) | |
download | openembedded-core-7a41d96c946029aeec03cd26f326bc6ca26e74fd.tar.gz openembedded-core-7a41d96c946029aeec03cd26f326bc6ca26e74fd.tar.bz2 openembedded-core-7a41d96c946029aeec03cd26f326bc6ca26e74fd.zip |
linux-yocto: Use INC_PR and move kernel require to linux-yocto.inc
When making changes to kernel.bbclass, it would be nice not to have to
manually change the PR of every linux-yocto*.bb file that requires it.
Move the "require kernel" line to linux-yocto.inc and update the
linux-yocto recipes to use INC_PR.
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
CC: Bruce Ashfield <bruce.ashfield@windriver.com>
CC: Tom Zanussi <tom.zanussi@intel.com>
Diffstat (limited to 'meta/recipes-kernel/linux/linux-yocto.inc')
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto.inc b/meta/recipes-kernel/linux/linux-yocto.inc index 0912beef5a..9b46e74531 100644 --- a/meta/recipes-kernel/linux/linux-yocto.inc +++ b/meta/recipes-kernel/linux/linux-yocto.inc @@ -4,6 +4,8 @@ LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7" +INC_PR = "r3" + # A KMACHINE is the mapping of a yocto $MACHINE to what is built # by the kernel. This is typically the branch that should be built, # and it can be specific to the machine or shared @@ -23,6 +25,7 @@ do_patch[depends] = "kern-tools-native:do_populate_sysroot" addtask kernel_configme before do_configure after do_patch # Pick up shared functions +inherit kernel inherit kernel-yocto require linux-dtb.inc |