summaryrefslogtreecommitdiffstats
path: root/documentation/poky-ref-manual/extendpoky.xml
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2010-11-09 13:51:09 -0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-11-15 22:25:24 +0000
commit3f9700a2869b5c9a8458bf67c4df1497513817aa (patch)
treee2afb6c30b392b3016a4b3708e7c7c7904ee8865 /documentation/poky-ref-manual/extendpoky.xml
parenta915d0105dfbddd9f7c2d80f7aaa0d8a909572b4 (diff)
downloadpoky-3f9700a2869b5c9a8458bf67c4df1497513817aa.tar.gz
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/poky-ref-manual/extendpoky.xml')
-rw-r--r--documentation/poky-ref-manual/extendpoky.xml40
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
554 The following example shows how to enable meta-extras in the Poky build: 554 The following example shows how to enable meta-extras in the Poky build:
555 </para> 555 </para>
556 <para> 556 <para>
557 <literallayout class='monospaced'>LCONF_VERSION = "1" 557 <literallayout class='monospaced'>
558 558 LCONF_VERSION = "1"
559BBFILES ?= "" 559
560BBLAYERS = " \ 560 BBFILES ?= ""
561 /path/to/poky/meta \ 561 BBLAYERS = " \
562 /path/to/poky/meta-emenlow \ 562 /path/to/poky/meta \
563 /path/to/poky/meta-extras \ 563 /path/to/poky/meta-emenlow \
564 " 564 /path/to/poky/meta-extras \
565 "
565 </literallayout> 566 </literallayout>
566 </para> 567 </para>
567 568
@@ -574,16 +575,17 @@ BBLAYERS = " \
574 </para> 575 </para>
575 <para> 576 <para>
576 The <filename>meta-emenlow/conf/layer.conf</filename> file demonstrates the required syntax: 577 The <filename>meta-emenlow/conf/layer.conf</filename> file demonstrates the required syntax:
577 <literallayout class='monospaced'># We have a conf and classes directory, add to BBPATH 578 <literallayout class='monospaced'>
578BBPATH := "${BBPATH}:${LAYERDIR}" 579 # We have a conf and classes directory, add to BBPATH
580 BBPATH := "${BBPATH}:${LAYERDIR}"
579 581
580# We have a recipes directory containing both .bb and .bbappend files, add to BBFILES 582 # We have a recipes directory containing both .bb and .bbappend files, add to BBFILES
581BBFILES := "${BBFILES} ${LAYERDIR}/recipes/*/*.bb \ 583 BBFILES := "${BBFILES} ${LAYERDIR}/recipes/*/*.bb \
582 ${LAYERDIR}/recipes/*/*.bbappend" 584 ${LAYERDIR}/recipes/*/*.bbappend"
583 585
584BBFILE_COLLECTIONS += "emenlow" 586 BBFILE_COLLECTIONS += "emenlow"
585BBFILE_PATTERN_emenlow := "^${LAYERDIR}/" 587 BBFILE_PATTERN_emenlow := "^${LAYERDIR}/"
586BBFILE_PRIORITY_emenlow = "6" 588 BBFILE_PRIORITY_emenlow = "6"
587 </literallayout> 589 </literallayout>
588 </para> 590 </para>
589 <para> 591 <para>
@@ -782,9 +784,9 @@ BBFILE_PRIORITY_emenlow = "6"
782 Following is an example: 784 Following is an example:
783 </para> 785 </para>
784 <literallayout class='monospaced'> 786 <literallayout class='monospaced'>
785src/gz all http://www.mysite.com/somedir/deploy/ipk/all 787 src/gz all http://www.mysite.com/somedir/deploy/ipk/all
786src/gz armv7a http://www.mysite.com/somedir/deploy/ipk/armv7a 788 src/gz armv7a http://www.mysite.com/somedir/deploy/ipk/armv7a
787src/gz beagleboard http://www.mysite.com/somedir/deploy/ipk/beagleboard 789 src/gz beagleboard http://www.mysite.com/somedir/deploy/ipk/beagleboard
788 </literallayout> 790 </literallayout>
789 </section> 791 </section>
790 </section> 792 </section>