From 89e29584751ad7055457885c349140e8f889de70 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Wed, 25 Apr 2012 11:47:51 -0600 Subject: 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 Signed-off-by: Richard Purdie --- documentation/dev-manual/dev-manual-common-tasks.xml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'documentation') 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 -- cgit v1.2.3-54-g00ecf