From ad30f2cc4e1072ab5b2ec60de08f4d299118a255 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 10 Sep 2010 12:32:48 +0100 Subject: handbook: Various minor fixes Signed-off-by: Richard Purdie --- handbook/extendpoky.xml | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'handbook/extendpoky.xml') diff --git a/handbook/extendpoky.xml b/handbook/extendpoky.xml index 61620053a..662096844 100644 --- a/handbook/extendpoky.xml +++ b/handbook/extendpoky.xml @@ -74,8 +74,8 @@ do_install() { As a result of the build process "helloworld", "helloworld-dbg" and "hellworld-dev" - packages will be built by default. You can - control package process yourself. + packages will be built by default. It is possible to + customise the packaging process. @@ -243,8 +243,8 @@ FILES_sxpm = "${bindir}/sxpm" pkg_postinst_PACKAGENAME () { - #!/bin/sh -e - # Commands to carry out +#!/bin/sh -e +# Commands to carry out } @@ -265,12 +265,12 @@ pkg_postinst_PACKAGENAME () { pkg_postinst_PACKAGENAME () { - #!/bin/sh -e - if [ x"$D" = "x" ]; then - # Actions to carry out on the device go here - else - exit 1 - fi +#!/bin/sh -e +if [ x"$D" = "x" ]; then + # Actions to carry out on the device go here +else + exit 1 +fi } @@ -398,7 +398,7 @@ RRECOMMENDS_task-custom-tools = "\ variable. To create these, the best reference is meta/classes/poky-image.bbclass which illustrates how poky achieves this. In summary, the file looks at the contents of the IMAGE_FEATURES - variable and then map into a set of tasks or packages. Based on this then the + variable and then maps this into a set of tasks or packages. Based on this then the IMAGE_INSTALL variable is generated automatically. Extra features can be added by extending the class or creating a custom class for use with specialised image .bb files. @@ -586,12 +586,11 @@ DISPLAY_SUBPIXEL_ORDER=vrgb The Poky tree includes several additional layers which demonstrate - this functionality, such as meta-moblin, meta-emenlow, meta-extras. - Default layers enabled are meta-moblin and meta-emenlow, which may - suffer from future changes. The meta-extras repostory is not enabled - by default but enabling any layer is as easy as adding the layers path - to the BBLAYERS variable in your bblayers.conf. this is how meta-extras - are enabled in Poky builds: + this functionality, such as meta-emenlow and meta-extras. + The meta-emenlow layer is an example layer enabled by default. The meta-extras + repostory is not enabled by default but enabling any layer is as easy as adding + the layers path to the BBLAYERS variable in your bblayers.conf. this is how + meta-extras are enabled in Poky builds: LCONF_VERSION = "1" @@ -650,7 +649,8 @@ BBFILE_PRIORITY_emenlow = "6" - Emenlow bbclasses and configuration are added to the BBPATH + Additional bbclass and configuration files can be locationed by + bitbake through the addition to the BBPATH environment variable. In this case, the first file with the matching name found in BBPATH is the one that is used, just like the PATH variable for binaries. It is therefore recommended @@ -773,7 +773,7 @@ BBFILE_PRIORITY_emenlow = "6" They usually happen at preset times such as at night when the machine load isn't high from the incremental builds. poky autobuilder - is an example implementation with buildrot. + is an example implementation with buildbot. @@ -856,7 +856,7 @@ bitbake -c compile -f NAME_OF_PACKAGE "-f" or "--force" is used to force re-execution of the specified task. Other tasks may also be called this way. But note that all the modifications in WORKDIR - are gone once you executes "-c clean" for a pacakge. + are gone once you executes "-c clean" for a package.
-- cgit v1.2.3