diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-08-25 13:22:53 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-21 12:37:53 +0000 |
commit | b829eaa125217a2c0bcdc55eaaf7448029214dab (patch) | |
tree | df34e83272f8a0cb1fa433222c564930bef4b926 /meta/recipes-extended | |
parent | a1c24ecbe84866e116e795f509b70124a4d9f730 (diff) | |
download | poky-b829eaa125217a2c0bcdc55eaaf7448029214dab.tar.gz |
images: introduce core-image-kernel-dev
When building a new kernel, or testing and update to the kernel there
are a set of packages that are sensitive to APIs, build system and
other changes associated with the kernel.
After building this recipe, we can be reasonably sure that a new kernel
package and coupled userspace have been built, installed and tested
via a single image.
(From OE-Core rev: 6c22c0e7e7bb392df6d04864f56d66d3a2c1e32b)
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/images/core-image-kernel-dev.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/recipes-extended/images/core-image-kernel-dev.bb b/meta/recipes-extended/images/core-image-kernel-dev.bb new file mode 100644 index 0000000000..d14f658726 --- /dev/null +++ b/meta/recipes-extended/images/core-image-kernel-dev.bb | |||
@@ -0,0 +1,17 @@ | |||
1 | DESCRIPTION = "A development image that builds the kernel and packages that are \ | ||
2 | sensitive to kernel updates and version changes" | ||
3 | |||
4 | # Could also be core-image-basic, but we'll keep this small for now | ||
5 | require recipes-core/images/core-image-minimal.bb | ||
6 | |||
7 | KERNEL_DEV_UTILS ?= "dropbear" | ||
8 | KERNEL_DEV_TOOLS ?= "packagegroup-core-tools-profile packagegroup-core-buildessential kernel-devsrc" | ||
9 | KERNEL_DEV_MODULE ?= "" | ||
10 | |||
11 | CORE_IMAGE_EXTRA_INSTALL += "${KERNEL_DEV_MODULE} \ | ||
12 | ${KERNEL_DEV_UTILS} \ | ||
13 | ${KERNEL_DEV_TOOLS} \ | ||
14 | " | ||
15 | |||
16 | # We need extra space for things like kernel builds, etc. | ||
17 | IMAGE_ROOTFS_EXTRA_SPACE_append += "+ 3000000" | ||