From ae06e04cd225d2c2147ca355e2dd39b4f6cf6775 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Mon, 29 Jan 2018 15:18:03 -0800 Subject: documentation: Created new "Getting Started" manual. Creation involved removing the overview-manual and replacing it with the getting-started manual. All links to the string "&YOCTO_DOCS_OVERVIEW_URL" had to be replaced with "&YOCTO_DOCS_GS_URL" across the entire YP manual set. I renamed files used to create the manual with prefixes suited for the new manual name, which is "Getting Started With Yocto Project". The style sheet for the new manual needed updating to display the new .PNG image for the title page. The mega-manual file had to be updated to include the files. The mega-manual.sed file had to be updated to include the new manual and not use the overview manual. (From yocto-docs rev: 6c7abf9192390121000f577d6c98f259d290d15d) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- .../usingpoky-components-bitbake.html | 82 ++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 documentation/getting-started/eclipse/html/getting-started/usingpoky-components-bitbake.html (limited to 'documentation/getting-started/eclipse/html/getting-started/usingpoky-components-bitbake.html') diff --git a/documentation/getting-started/eclipse/html/getting-started/usingpoky-components-bitbake.html b/documentation/getting-started/eclipse/html/getting-started/usingpoky-components-bitbake.html new file mode 100644 index 0000000000..39fa32b154 --- /dev/null +++ b/documentation/getting-started/eclipse/html/getting-started/usingpoky-components-bitbake.html @@ -0,0 +1,82 @@ + + + +3.1.1. BitBake + + + + + + + +
+

+3.1.1. BitBake

+

+ BitBake is the tool at the heart of the OpenEmbedded build + system and is responsible for parsing the + Metadata, + generating a list of tasks from it, and then executing those + tasks. +

+

+ This section briefly introduces BitBake. + If you want more information on BitBake, see the + BitBake User Manual. +

+

+ To see a list of the options BitBake supports, use either of + the following commands: +

+
+     $ bitbake -h
+     $ bitbake --help
+                
+

+

+

+ The most common usage for BitBake is + bitbake packagename, + where packagename is the name of the + package you want to build (referred to as the "target" in this + manual). + The target often equates to the first part of a recipe's + filename (e.g. "foo" for a recipe named + foo_1.3.0-r0.bb). + So, to process the + matchbox-desktop_1.2.3.bb recipe file, you + might type the following: +

+
+     $ bitbake matchbox-desktop
+                
+

+ Several different versions of + matchbox-desktop might exist. + BitBake chooses the one selected by the distribution + configuration. + You can get more details about how BitBake chooses between + different target versions and providers in the + "Preferences" + section of the BitBake User Manual. +

+

+ BitBake also tries to execute any dependent tasks first. + So for example, before building + matchbox-desktop, BitBake would build a + cross compiler and glibc if they had not + already been built. +

+

+ A useful BitBake option to consider is the + -k or --continue + option. + This option instructs BitBake to try and continue processing + the job as long as possible even after encountering an error. + When an error occurs, the target that failed and those that + depend on it cannot be remade. + However, when you use this option other dependencies can + still be processed. +

+
+ -- cgit v1.2.3-54-g00ecf