blob: 534d376279537fe9fd67fee7eef3af1b9e9316c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright (C) 2012-2016 Freescale Semiconductor
# Released under the MIT license (see COPYING.MIT for the terms)
DESCRIPTION = "Package group used by FSL Community to provide a set of benchmark applications."
SUMMARY = "FSL Communtiy package group - tools/benchmark"
PACKAGE_ARCH = "${MACHINE_ARCH}"
inherit packagegroup
RDEPENDS:${PN} = " \
lmbench \
bonnie++ \
dbench \
fio \
iozone3 \
iperf3 \
nbench-byte \
tiobench \
${@bb.utils.contains('TUNE_FEATURES', 'neon', 'cpuburn-neon', \
bb.utils.contains('TUNE_FEATURES', 'cortexa53 crypto', 'cpuburn-neon', \
'', d), d)} \
"
|