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 @@ Store custom layers in a Git repository that uses the meta-<layer_name> format. Clone the repository alongside other meta - directories in the Yocto Project source files area. + directories in + Yocto Project Files. Following these recommendations keeps your Yocto Project files area and its configuration entirely inside the Yocto Project's core base. @@ -269,14 +270,14 @@ append file both from the Yocto Project Files. Here is the main formfactor recipe, which is named formfactor_0.0.bb and - located in the meta layer at meta/bsp-recipes/formfactor: + located in the meta layer at meta/recipes-bsp/formfactor: DESCRIPTION = "Device formfactor information" SECTION = "base" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ - file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" - PR = "r19" + file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" + PR = "r20" SRC_URI = "file://config file://machconfig" S = "${WORKDIR}" @@ -290,7 +291,7 @@ install -m 0644 ${S}/config ${D}${sysconfdir}/formfactor/ if [ -s "${S}/machconfig" ]; then install -m 0644 ${S}/machconfig ${D}${sysconfdir}/formfactor/ - fi + fi } Here is the append file, which is named formfactor_0.0.bbappend and is from the