diff options
author | 2012-06-26 14:27:35 -0700 | |
---|---|---|
committer | 2012-06-29 15:54:26 +0100 | |
commit | 73cdebf60df225ee10f2eb215935be3b61e1b831 (patch) | |
tree | b429c4633cb602756a3d102b93eaa601cdc4a152 | |
parent | 6b06a4fa1b99768516ac5bee9e70922af811d285 (diff) | |
download | poky-denzil-7.0.1.tar.gz poky-denzil-7.0.1.tar.bz2 poky-denzil-7.0.1.zip |
documentation/dev-manual/dev-manual-kernel-appendix.xml: Add note about conflictdenzil-7.0.1_rc2denzil-7.0.1
Added a note to the part of the example where you bitbake the kernel
after turning off CONFIG_SMP. The warnings you get can cause confusion.
the note explains they are normal.
(From yocto-docs rev: 08ed090f0b8b6970832242a52827ae2957918cf3)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/dev-manual/dev-manual-kernel-appendix.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/documentation/dev-manual/dev-manual-kernel-appendix.xml b/documentation/dev-manual/dev-manual-kernel-appendix.xml index da74721c63..2901384412 100644 --- a/documentation/dev-manual/dev-manual-kernel-appendix.xml +++ b/documentation/dev-manual/dev-manual-kernel-appendix.xml @@ -775,6 +775,17 @@ $ bitbake linux-yocto </literallayout> </para> + + <note> + Manually turning off a kernel configuration setting such as + <filename>CONFIG_SMP</filename> can cause the kernel configuration audit + to issue warnings during the build. + In this example, warnings appear telling you that the expected value + <filename>CONFIG_SMP</filename> does not appear in the <filename>.config</filename> + file. + Because in this example you specifically turned off <filename>CONFIG_SMP</filename>, + you can safely ignore the apparent conflict. + </note> <para> Now run the QEMU emulator and pass it the same multi-processor option as before: |