summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2012-06-11 15:34:58 +0000
committerEric Bénard <eric@eukrea.com>2013-01-18 18:00:21 +0100
commitb25b616baf5faa4febc8ad704bf3e02506538ed6 (patch)
tree4b697154cebf2f7d3d3188484dd044f7f7979ad0
parentc17d774553b8e95f142bf6388aa70f48ce8cf1ce (diff)
downloadmeta-openembedded-denzil-next.tar.gz
cpuburn-neon: fix packaging to use a date as version and valid sourcesdenzil-next
* The package were not versioning the sources as the files had no version on its name. We workaround it mangling the DL_DIR; * We now dynamically check if the machine has or not neon feature and set COMPATIBLE_MACHINE. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Eric Bénard <eric@eukrea.com>
-rw-r--r--meta-oe/recipes-benchmark/cpuburn/cpuburn-neon_20120610.bb (renamed from meta-oe/recipes-benchmark/cpuburn/cpuburn-neon.bb)12
1 files changed, 5 insertions, 7 deletions
diff --git a/meta-oe/recipes-benchmark/cpuburn/cpuburn-neon.bb b/meta-oe/recipes-benchmark/cpuburn/cpuburn-neon_20120610.bb
index bb9ca1c85..5bc3129df 100644
--- a/meta-oe/recipes-benchmark/cpuburn/cpuburn-neon.bb
+++ b/meta-oe/recipes-benchmark/cpuburn/cpuburn-neon_20120610.bb
@@ -2,19 +2,17 @@ DESCRIPTION = "CPU burn app that loads the NEON coprocessor fully"
2LICENSE = "MIT" 2LICENSE = "MIT"
3LIC_FILES_CHKSUM = "file://burn.S;md5=823abc72c2cd448e87df9bc5355a4456" 3LIC_FILES_CHKSUM = "file://burn.S;md5=823abc72c2cd448e87df9bc5355a4456"
4 4
5PR = "r1" 5DL_DIR_append = "/${PN}-${PV}"
6 6
7# only for ARM systems infact it should check for MACHINE_FEATURE 7# Ensure to make this available for machine which has neon
8# neon or something. For now we spare non arm arches from picking this up 8COMPATIBLE_MACHINE = "(${@bb.utils.contains("TUNE_FEATURES", "neon", "${MACHINE}", "Invalid!", d)})"
9
10COMPATIBLE_HOST = "arm.*"
11 9
12SRC_URI = "http://hardwarebug.org/files/burn.S;name=mru \ 10SRC_URI = "http://hardwarebug.org/files/burn.S;name=mru \
13 http://github.com/downloads/ssvb/ssvb.github.com/ssvb-cpuburn-a8.S;name=ssvb" 11 http://github.com/downloads/ssvb/ssvb.github.com/ssvb-cpuburn-a8.S;name=ssvb"
14SRC_URI[mru.md5sum] = "823abc72c2cd448e87df9bc5355a4456" 12SRC_URI[mru.md5sum] = "823abc72c2cd448e87df9bc5355a4456"
15SRC_URI[mru.sha256sum] = "01d9fc04f83740c513c25401dcc89c11b2a5a6013e70bfca42b7b02129f88cd2" 13SRC_URI[mru.sha256sum] = "01d9fc04f83740c513c25401dcc89c11b2a5a6013e70bfca42b7b02129f88cd2"
16SRC_URI[ssvb.md5sum] = "f1af41dcd56e4f0f7e92b67109dc01ed" 14SRC_URI[ssvb.md5sum] = "0acc570d943c41c7f8602b9ff6fa111d"
17SRC_URI[ssvb.sha256sum] = "95e2267a684be0d848dd6f935e769fa3ed810274ebacddc3fe8ddac4b34838c2" 15SRC_URI[ssvb.sha256sum] = "bfddd3226a499ffdf71bb58c05ccdc6dac5bb2c2c3bdb10ac610ee0b60aac087"
18 16
19S = "${WORKDIR}" 17S = "${WORKDIR}"
20 18