diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2011-10-05 05:52:39 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-06 18:41:47 +0100 |
commit | a3e4b6ac24083b0d969af9f63386cc9d46dc5942 (patch) | |
tree | 77b2d74e537f8dada0e94ce1335986c7dec3fe29 | |
parent | f54a78c89158435d2f06df96da9a7d432ce8c831 (diff) | |
download | poky-a3e4b6ac24083b0d969af9f63386cc9d46dc5942.tar.gz |
documentation/dev-manual/dev-manual-kernel-appendix.xml: edits to the example
Some minor edits for the kernel example.
(From yocto-docs rev: 01e9f01662efad746fbfc34820b6efeb34affecd)
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, 7 insertions, 4 deletions
diff --git a/documentation/dev-manual/dev-manual-kernel-appendix.xml b/documentation/dev-manual/dev-manual-kernel-appendix.xml index b6f8e39fe6..03d1758bfc 100644 --- a/documentation/dev-manual/dev-manual-kernel-appendix.xml +++ b/documentation/dev-manual/dev-manual-kernel-appendix.xml | |||
@@ -300,8 +300,7 @@ | |||
300 | <literallayout class='monospaced'> | 300 | <literallayout class='monospaced'> |
301 | void __cpuinit calibrate_delay(void) | 301 | void __cpuinit calibrate_delay(void) |
302 | { | 302 | { |
303 | unsigned long ticks, loopbit; | 303 | unsigned long lpj; |
304 | int lps_precision = LPS_PREC; | ||
305 | static bool printed; | 304 | static bool printed; |
306 | 305 | ||
307 | if (preset_lpj) { | 306 | if (preset_lpj) { |
@@ -317,8 +316,7 @@ | |||
317 | <literallayout class='monospaced'> | 316 | <literallayout class='monospaced'> |
318 | void __cpuinit calibrate_delay(void) | 317 | void __cpuinit calibrate_delay(void) |
319 | { | 318 | { |
320 | unsigned long ticks, loopbit; | 319 | unsigned long lpj; |
321 | int lps_precision = LPS_PREC; | ||
322 | static bool printed; | 320 | static bool printed; |
323 | printk("*************************************\n"); | 321 | printk("*************************************\n"); |
324 | printk("* *\n"); | 322 | printk("* *\n"); |
@@ -459,6 +457,7 @@ | |||
459 | <listitem><para>Be sure old images are cleaned out by running the | 457 | <listitem><para>Be sure old images are cleaned out by running the |
460 | <filename>cleanall</filename> BitBake task as follows: | 458 | <filename>cleanall</filename> BitBake task as follows: |
461 | <literallayout class='monospaced'> | 459 | <literallayout class='monospaced'> |
460 | $ cd ~/poky | ||
462 | $ bitbake -c cleanall linux-yocto | 461 | $ bitbake -c cleanall linux-yocto |
463 | </literallayout></para> | 462 | </literallayout></para> |
464 | <para><note>Never remove any files by hand from the <filename>tmp/deploy</filename> | 463 | <para><note>Never remove any files by hand from the <filename>tmp/deploy</filename> |
@@ -556,6 +555,8 @@ | |||
556 | processor : 0 | 555 | processor : 0 |
557 | # | 556 | # |
558 | </literallayout> | 557 | </literallayout> |
558 | Logout of the emulator using the <filename>exit</filename> command and | ||
559 | then close it down. | ||
559 | </para> | 560 | </para> |
560 | </section> | 561 | </section> |
561 | 562 | ||
@@ -595,6 +596,8 @@ | |||
595 | You can find it at <filename>Processor Type and Features</filename>. | 596 | You can find it at <filename>Processor Type and Features</filename>. |
596 | The configuration selection is | 597 | The configuration selection is |
597 | <filename>Symmetric Multi-processing Support</filename>. | 598 | <filename>Symmetric Multi-processing Support</filename>. |
599 | After using the arrow keys to highlight this selection, press "y" to select it. | ||
600 | Then, exit out and save your selections. | ||
598 | </para> | 601 | </para> |
599 | 602 | ||
600 | <para> | 603 | <para> |