summaryrefslogtreecommitdiffstats
path: root/scripts/lib/bsp
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2015-08-05 09:38:38 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-25 10:47:20 +0100
commit15c8835445db4d205e8a33f92082b6e6f8eddd02 (patch)
tree7861298745c127a83ea349b2d6ad6b0440490b20 /scripts/lib/bsp
parent790b2293d28850890156331e05c4ba7a0daefaf6 (diff)
downloadpoky-15c8835445db4d205e8a33f92082b6e6f8eddd02.tar.gz
yocto-bsp / yocto-layer: fix template recipes
* Drop PR = "r0" * Use SUMMARY instead of DESCRIPTION (From meta-yocto rev: 433044641e2500f40fbd72d91bbc38d5cb288c1e) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/bsp')
-rw-r--r--scripts/lib/bsp/substrate/target/arch/common/recipes-kernel/linux/linux-yocto-custom.bb1
-rw-r--r--scripts/lib/bsp/substrate/target/arch/layer/recipes-example/example/example-recipe-0.1.bb3
2 files changed, 1 insertions, 3 deletions
diff --git a/scripts/lib/bsp/substrate/target/arch/common/recipes-kernel/linux/linux-yocto-custom.bb b/scripts/lib/bsp/substrate/target/arch/common/recipes-kernel/linux/linux-yocto-custom.bb
index 80a52e7cae..fda955b5e2 100644
--- a/scripts/lib/bsp/substrate/target/arch/common/recipes-kernel/linux/linux-yocto-custom.bb
+++ b/scripts/lib/bsp/substrate/target/arch/common/recipes-kernel/linux/linux-yocto-custom.bb
@@ -52,7 +52,6 @@ LINUX_VERSION_EXTENSION ?= "{{=custom_kernel_linux_version_extension}}"
52 52
53SRCREV="{{=custom_kernel_srcrev}}" 53SRCREV="{{=custom_kernel_srcrev}}"
54 54
55PR = "r0"
56PV = "${LINUX_VERSION}+git${SRCPV}" 55PV = "${LINUX_VERSION}+git${SRCPV}"
57 56
58COMPATIBLE_MACHINE_{{=machine}} = "{{=machine}}" 57COMPATIBLE_MACHINE_{{=machine}} = "{{=machine}}"
diff --git a/scripts/lib/bsp/substrate/target/arch/layer/recipes-example/example/example-recipe-0.1.bb b/scripts/lib/bsp/substrate/target/arch/layer/recipes-example/example/example-recipe-0.1.bb
index ba1ccb16c6..5fbf59443d 100644
--- a/scripts/lib/bsp/substrate/target/arch/layer/recipes-example/example/example-recipe-0.1.bb
+++ b/scripts/lib/bsp/substrate/target/arch/layer/recipes-example/example/example-recipe-0.1.bb
@@ -4,11 +4,10 @@
4# Yocto Project Development Manual. 4# Yocto Project Development Manual.
5# 5#
6 6
7DESCRIPTION = "Simple helloworld application" 7SUMMARY = "Simple helloworld application"
8SECTION = "examples" 8SECTION = "examples"
9LICENSE = "MIT" 9LICENSE = "MIT"
10LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" 10LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
11PR = "r0"
12 11
13SRC_URI = "file://helloworld.c" 12SRC_URI = "file://helloworld.c"
14 13