diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2011-02-09 00:45:23 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-09 11:16:34 +0000 |
commit | 970f3959d39708f3da3e5c181e645c1f9a010628 (patch) | |
tree | a0df45c8653983f3303be4d28d906832e97975e7 /meta/recipes-kernel/linux/linux-yocto.inc | |
parent | 1de7185d8ee3c432ea4262d795e340b79ad9795d (diff) | |
download | openembedded-core-970f3959d39708f3da3e5c181e645c1f9a010628.tar.gz openembedded-core-970f3959d39708f3da3e5c181e645c1f9a010628.tar.bz2 openembedded-core-970f3959d39708f3da3e5c181e645c1f9a010628.zip |
linux: factor dts/dtc/dtb handling into a specific include
Fixes [BUGID #610]
The powerpc linux-yocto kernels were not creating dtb images
in the deploy directories. This was due to two problems:
- the dtb generation rules were not being configured
- the boards were not specifying a device tree in their config
This change addresses the first point by factoring out the
dtb generation routines into a new include that can be used by
multiple recipes.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta/recipes-kernel/linux/linux-yocto.inc')
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto.inc b/meta/recipes-kernel/linux/linux-yocto.inc index 03935fa702..0812144d46 100644 --- a/meta/recipes-kernel/linux/linux-yocto.inc +++ b/meta/recipes-kernel/linux/linux-yocto.inc @@ -18,5 +18,6 @@ addtask kernel_configme before do_configure after do_patch # Pick up shared functions inherit kernel-yocto +require linux-dtb.inc B = "${WORKDIR}/linux-${MACHINE}-${LINUX_KERNEL_TYPE}-build" |