summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2011-05-19 07:56:16 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-12-20 22:35:16 +0000
commit373d73c7e7993323919c535b69b3d9c54dff0c0b (patch)
tree166fb0f91215d583e2a8fca3348e32ab231f4c93
parentb154d10232e2e79169f70bd069ead59064b130af (diff)
downloadpoky-373d73c7e7993323919c535b69b3d9c54dff0c0b.tar.gz
BUGID#_1083 - documentation/poky-ref-manual/usingpoky.xml: -k option added
In the section 2.1.1 BitBake I added a paragraph at the end of the discussion about BitBake explaining the benefits of the '-k' and '--continue' options. (From yocto-docs rev: 40e427a74ae2c9252f10843afaec95ad18c30fe3) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--documentation/poky-ref-manual/usingpoky.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/documentation/poky-ref-manual/usingpoky.xml b/documentation/poky-ref-manual/usingpoky.xml
index fc4fbdc6ce..af2cae3585 100644
--- a/documentation/poky-ref-manual/usingpoky.xml
+++ b/documentation/poky-ref-manual/usingpoky.xml
@@ -73,6 +73,14 @@
73 So for example, before building <filename>matchbox-desktop</filename> BitBake 73 So for example, before building <filename>matchbox-desktop</filename> BitBake
74 would build a cross compiler and glibc if they had not already been built. 74 would build a cross compiler and glibc if they had not already been built.
75 </para> 75 </para>
76 <para>
77 A useful BitBake option to consider is the <filename>-k</filename> or
78 <filename>&dash;&dash;continue</filename> option.
79 This option instructs BitBake to try and continue processing the job as much
80 as possible even after encountering an error. When an error occurs the target that
81 failed and those that depend on it cannot be remade. However, when you use this
82 option other dependencies can still be processed.
83 </para>
76 84
77 </section> 85 </section>
78 86