summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/dev-manual-kernel-appendix.xml
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-06-20 09:04:27 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-06-29 14:59:27 +0100
commit1f53e5a96a35c2d7bb4679ea732ee5fe2b3bee1e (patch)
tree2fba031fd01c0fe17cc87d089f54b9b663faa46d /documentation/dev-manual/dev-manual-kernel-appendix.xml
parentbf46fa7d50929f379dcd3f3af91fc2e382d29eb9 (diff)
downloadpoky-1f53e5a96a35c2d7bb4679ea732ee5fe2b3bee1e.tar.gz
documentation/dev-manual/dev-manual-kernel-appendix.xml: Added note
The example that changes the kernel configuration by enabling multiple processor support failed. The reason is because of bug 2256. This bug was discovered during Release 1.2. Apparently it also affects 1.1.2. I have added the Note explaining the bug. (From yocto-docs rev: 6a0af8103b24a0b24ffd0e29873feeb685e1cf5e) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual/dev-manual-kernel-appendix.xml')
-rw-r--r--documentation/dev-manual/dev-manual-kernel-appendix.xml15
1 files changed, 13 insertions, 2 deletions
diff --git a/documentation/dev-manual/dev-manual-kernel-appendix.xml b/documentation/dev-manual/dev-manual-kernel-appendix.xml
index c8f37f1fb3..d988f046d1 100644
--- a/documentation/dev-manual/dev-manual-kernel-appendix.xml
+++ b/documentation/dev-manual/dev-manual-kernel-appendix.xml
@@ -656,6 +656,8 @@
656 </para> 656 </para>
657 </section> 657 </section>
658 658
659
660
659 <section id='changing-the-config-smp-configuration-using-menuconfig'> 661 <section id='changing-the-config-smp-configuration-using-menuconfig'>
660 <title>Changing the&nbsp;&nbsp;<filename>CONFIG_SMP</filename> Configuration Using&nbsp;&nbsp;<filename>menuconfig</filename></title> 662 <title>Changing the&nbsp;&nbsp;<filename>CONFIG_SMP</filename> Configuration Using&nbsp;&nbsp;<filename>menuconfig</filename></title>
661 663
@@ -679,11 +681,20 @@
679 kernel. 681 kernel.
680 The Yocto Project build environment recognizes this kernel as 682 The Yocto Project build environment recognizes this kernel as
681 <filename>linux-yocto</filename>. 683 <filename>linux-yocto</filename>.
682 Thus, the following command from the shell in which you previously sourced the 684 Thus, the following commands from the shell in which you previously sourced the
683 environment initialization script launches <filename>menuconfig</filename>: 685 environment initialization script cleans the shared state memory and
686 the <filename>WORKDIR</filename> direcotry and then builds and
687 launches <filename>menuconfig</filename>:
684 <literallayout class='monospaced'> 688 <literallayout class='monospaced'>
689 $ bitbake linux-yocto -c cleansstate
685 $ bitbake linux-yocto -c menuconfig 690 $ bitbake linux-yocto -c menuconfig
686 </literallayout> 691 </literallayout>
692 <note>Due to a bug in the release, it is necessary to clean the shared state
693 memory in order for configurations made using <filename>menuconfig</filename>
694 to take effect.
695 For information on the bug, see
696 <ulink url='&YOCTO_BUGZILLA_URL;/show_bug.cgi?id=2256'></ulink>.
697 </note>
687 </para> 698 </para>
688 699
689 <para> 700 <para>