diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2015-06-17 06:53:11 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-28 18:02:32 +0100 |
commit | c3ac09f06e7af1bdaedc4bf6daf1c4019a1979e6 (patch) | |
tree | 5f1420e68e5325c495d219d1e865ff548087f9a0 | |
parent | 3b9340828a89c01b436dd03571d7b3765be061ab (diff) | |
download | poky-c3ac09f06e7af1bdaedc4bf6daf1c4019a1979e6.tar.gz |
kernel-dev: Added 'make defconfig' details for own source work
I added some detail about what really happens when you use the
'make defconfig' command when working with your own sources.
Fixes [YOCTO #6611]
(From yocto-docs rev: 653c7726e024dcaa908127f0df1d1856f26f4ff0)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/kernel-dev/kernel-dev-common.xml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/documentation/kernel-dev/kernel-dev-common.xml b/documentation/kernel-dev/kernel-dev-common.xml index 532e2e87a6..27c82ceb58 100644 --- a/documentation/kernel-dev/kernel-dev-common.xml +++ b/documentation/kernel-dev/kernel-dev-common.xml | |||
@@ -646,7 +646,18 @@ | |||
646 | <filename>files</filename> directory as "defconfig" and | 646 | <filename>files</filename> directory as "defconfig" and |
647 | then add it to the | 647 | then add it to the |
648 | <ulink url='&YOCTO_DOCS_REF_URL;#var-SRC_URI'><filename>SRC_URI</filename></ulink> | 648 | <ulink url='&YOCTO_DOCS_REF_URL;#var-SRC_URI'><filename>SRC_URI</filename></ulink> |
649 | variable in the recipe. | 649 | variable in the recipe.</para> |
650 | <para>Running the <filename>make defconfig</filename> | ||
651 | command results in the default configuration for your | ||
652 | architecture as defined by your kernel. | ||
653 | However, no guarantee exists that this configuration is | ||
654 | valid for your use case, or that your board will even boot. | ||
655 | This is particularly true for non-x86 architectures. | ||
656 | To use non-x86 <filename>defconfig</filename> files, you | ||
657 | need to be more specific and find one that matches your | ||
658 | board (i.e. for arm, you look in | ||
659 | <filename>arch/arm/configs</filename> and use the one that | ||
660 | is the best starting point for your board). | ||
650 | </para></listitem> | 661 | </para></listitem> |
651 | <listitem><para>Edit the following variables in your recipe | 662 | <listitem><para>Edit the following variables in your recipe |
652 | as appropriate for your project: | 663 | as appropriate for your project: |