diff options
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/dev-manual/dev-manual-common-tasks.xml | 11 |
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-<layer_name></filename> format.</para></listitem> | 189 | <filename>meta-<layer_name></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 |