diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-04-28 12:09:33 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-06 17:59:17 +0100 |
commit | 70b11e54ffaa87e008bee444241cddf29f92f6bb (patch) | |
tree | 6f032936c93a599fb69e823d8e048e29425cbe41 /meta-skeleton | |
parent | ee4f09a8506b60470edc313511da9c0d0260856a (diff) | |
download | poky-70b11e54ffaa87e008bee444241cddf29f92f6bb.tar.gz |
linux-yocto-custom: provide defconfig guidance
As reported by Andrea, defconfigs created with savedefconfig should specify
their expansion mode as "--alldefconfig' for custom yocto recipes. To ensure
that this is documented, we can add a comment in the skeleton recipe.
Reported-by: Andrea Adami <andrea.adami@gmail.com>
(From OE-Core rev: 2c41a28c9a9772531dcfc7079604ff2441c71f8f)
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-skeleton')
-rw-r--r-- | meta-skeleton/recipes-kernel/linux/linux-yocto-custom.bb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/meta-skeleton/recipes-kernel/linux/linux-yocto-custom.bb b/meta-skeleton/recipes-kernel/linux/linux-yocto-custom.bb index c3291064bb..b1a0784c1b 100644 --- a/meta-skeleton/recipes-kernel/linux/linux-yocto-custom.bb +++ b/meta-skeleton/recipes-kernel/linux/linux-yocto-custom.bb | |||
@@ -32,6 +32,16 @@ | |||
32 | # patches: patches can be merged into to the source git tree itself, | 32 | # patches: patches can be merged into to the source git tree itself, |
33 | # added via the SRC_URI, or controlled via a BSP | 33 | # added via the SRC_URI, or controlled via a BSP |
34 | # configuration. | 34 | # configuration. |
35 | # | ||
36 | # defconfig: When a defconfig is provided, the linux-yocto configuration | ||
37 | # uses the filename as a trigger to use a 'allnoconfig' baseline | ||
38 | # before merging the defconfig into the build. | ||
39 | # | ||
40 | # If the defconfig file was created with make_savedefconfig, | ||
41 | # not all options are specified, and should be restored with their | ||
42 | # defaults, not set to 'n'. To properly expand a defconfig like | ||
43 | # this, specify: KCONFIG_MODE="--alldefconfig" in the kernel | ||
44 | # recipe. | ||
35 | # | 45 | # |
36 | # example configuration addition: | 46 | # example configuration addition: |
37 | # SRC_URI += "file://smp.cfg" | 47 | # SRC_URI += "file://smp.cfg" |