diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2010-11-09 13:51:09 -0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-11-15 22:25:24 +0000 |
commit | 3f9700a2869b5c9a8458bf67c4df1497513817aa (patch) | |
tree | e2afb6c30b392b3016a4b3708e7c7c7904ee8865 /documentation | |
parent | a915d0105dfbddd9f7c2d80f7aaa0d8a909572b4 (diff) | |
download | openembedded-core-3f9700a2869b5c9a8458bf67c4df1497513817aa.tar.gz openembedded-core-3f9700a2869b5c9a8458bf67c4df1497513817aa.tar.bz2 openembedded-core-3f9700a2869b5c9a8458bf67c4df1497513817aa.zip |
Poky Reference Manual: Added consistency to literallayout text.
I added some indentation for better presentation of the literal text.
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/poky-ref-manual/extendpoky.xml | 40 |
1 files changed, 21 insertions, 19 deletions
diff --git a/documentation/poky-ref-manual/extendpoky.xml b/documentation/poky-ref-manual/extendpoky.xml index 73fe0d53fe..7167ae3c35 100644 --- a/documentation/poky-ref-manual/extendpoky.xml +++ b/documentation/poky-ref-manual/extendpoky.xml @@ -554,14 +554,15 @@ DISPLAY_SUBPIXEL_ORDER=vrgb The following example shows how to enable meta-extras in the Poky build: </para> <para> - <literallayout class='monospaced'>LCONF_VERSION = "1" - -BBFILES ?= "" -BBLAYERS = " \ - /path/to/poky/meta \ - /path/to/poky/meta-emenlow \ - /path/to/poky/meta-extras \ - " + <literallayout class='monospaced'> + LCONF_VERSION = "1" + + BBFILES ?= "" + BBLAYERS = " \ + /path/to/poky/meta \ + /path/to/poky/meta-emenlow \ + /path/to/poky/meta-extras \ + " </literallayout> </para> @@ -574,16 +575,17 @@ BBLAYERS = " \ </para> <para> The <filename>meta-emenlow/conf/layer.conf</filename> file demonstrates the required syntax: - <literallayout class='monospaced'># We have a conf and classes directory, add to BBPATH -BBPATH := "${BBPATH}:${LAYERDIR}" + <literallayout class='monospaced'> + # We have a conf and classes directory, add to BBPATH + BBPATH := "${BBPATH}:${LAYERDIR}" -# We have a recipes directory containing both .bb and .bbappend files, add to BBFILES -BBFILES := "${BBFILES} ${LAYERDIR}/recipes/*/*.bb \ - ${LAYERDIR}/recipes/*/*.bbappend" + # We have a recipes directory containing both .bb and .bbappend files, add to BBFILES + BBFILES := "${BBFILES} ${LAYERDIR}/recipes/*/*.bb \ + ${LAYERDIR}/recipes/*/*.bbappend" -BBFILE_COLLECTIONS += "emenlow" -BBFILE_PATTERN_emenlow := "^${LAYERDIR}/" -BBFILE_PRIORITY_emenlow = "6" + BBFILE_COLLECTIONS += "emenlow" + BBFILE_PATTERN_emenlow := "^${LAYERDIR}/" + BBFILE_PRIORITY_emenlow = "6" </literallayout> </para> <para> @@ -782,9 +784,9 @@ BBFILE_PRIORITY_emenlow = "6" Following is an example: </para> <literallayout class='monospaced'> -src/gz all http://www.mysite.com/somedir/deploy/ipk/all -src/gz armv7a http://www.mysite.com/somedir/deploy/ipk/armv7a -src/gz beagleboard http://www.mysite.com/somedir/deploy/ipk/beagleboard + src/gz all http://www.mysite.com/somedir/deploy/ipk/all + src/gz armv7a http://www.mysite.com/somedir/deploy/ipk/armv7a + src/gz beagleboard http://www.mysite.com/somedir/deploy/ipk/beagleboard </literallayout> </section> </section> |