summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-04-25 11:47:51 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-01 21:00:28 +0100
commit89e29584751ad7055457885c349140e8f889de70 (patch)
tree166a936d34474a05c442f0f2681bb9e66ae83879 /documentation
parent943c6917e65a2be6716c14155ee0e1537c976682 (diff)
downloadpoky-89e29584751ad7055457885c349140e8f889de70.tar.gz
documentation/dev-manual/dev-manual-common-tasks.xml: link and output fixed
Fixed a reference to Yocto Project Files and provided a link. Put in an updated version of the meta/recipes-bsp/formfactor/ formfactor_0.0.bb file in the example. (From yocto-docs rev: 05001174d2337a91e839e991a3e9ecd6657a56f4) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml11
1 files changed, 6 insertions, 5 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 8dfaa7b0fb..1c8acca4ae 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -188,7 +188,8 @@
188 <listitem><para>Store custom layers in a Git repository that uses the 188 <listitem><para>Store custom layers in a Git repository that uses the
189 <filename>meta-&lt;layer_name&gt;</filename> format.</para></listitem> 189 <filename>meta-&lt;layer_name&gt;</filename> format.</para></listitem>
190 <listitem><para>Clone the repository alongside other <filename>meta</filename> 190 <listitem><para>Clone the repository alongside other <filename>meta</filename>
191 directories in the Yocto Project source files area.</para></listitem> 191 directories in
192 <link linkend='yocto-project-files'>Yocto Project Files</link>.</para></listitem>
192 </itemizedlist> 193 </itemizedlist>
193 Following these recommendations keeps your Yocto Project files area and 194 Following these recommendations keeps your Yocto Project files area and
194 its configuration entirely inside the Yocto Project's core base. 195 its configuration entirely inside the Yocto Project's core base.
@@ -269,14 +270,14 @@
269 append file both from the 270 append file both from the
270 <link linkend='yocto-project-files'>Yocto Project Files</link>. 271 <link linkend='yocto-project-files'>Yocto Project Files</link>.
271 Here is the main formfactor recipe, which is named <filename>formfactor_0.0.bb</filename> and 272 Here is the main formfactor recipe, which is named <filename>formfactor_0.0.bb</filename> and
272 located in the meta layer at <filename>meta/bsp-recipes/formfactor</filename>: 273 located in the meta layer at <filename>meta/recipes-bsp/formfactor</filename>:
273 <literallayout class='monospaced'> 274 <literallayout class='monospaced'>
274 DESCRIPTION = "Device formfactor information" 275 DESCRIPTION = "Device formfactor information"
275 SECTION = "base" 276 SECTION = "base"
276 LICENSE = "MIT" 277 LICENSE = "MIT"
277 LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ 278 LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
278 file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" 279 file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
279 PR = "r19" 280 PR = "r20"
280 281
281 SRC_URI = "file://config file://machconfig" 282 SRC_URI = "file://config file://machconfig"
282 S = "${WORKDIR}" 283 S = "${WORKDIR}"
@@ -290,7 +291,7 @@
290 install -m 0644 ${S}/config ${D}${sysconfdir}/formfactor/ 291 install -m 0644 ${S}/config ${D}${sysconfdir}/formfactor/
291 if [ -s "${S}/machconfig" ]; then 292 if [ -s "${S}/machconfig" ]; then
292 install -m 0644 ${S}/machconfig ${D}${sysconfdir}/formfactor/ 293 install -m 0644 ${S}/machconfig ${D}${sysconfdir}/formfactor/
293 fi 294 fi
294 } 295 }
295 </literallayout> 296 </literallayout>
296 Here is the append file, which is named <filename>formfactor_0.0.bbappend</filename> and is from the 297 Here is the append file, which is named <filename>formfactor_0.0.bbappend</filename> and is from the