summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/stress-ng/stress-ng_0.11.17.bb
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2020-10-06 14:10:24 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-10-15 13:45:49 +0100
commit54066582a04bd6955896f80ad6a7452b4a6cf117 (patch)
treed5b68861dc63eaa69326b8cafc094fdb0a2b0855 /meta/recipes-extended/stress-ng/stress-ng_0.11.17.bb
parentc89ad95ef53ec4fec48fe9df9396a5022731575a (diff)
downloadpoky-54066582a04bd6955896f80ad6a7452b4a6cf117.tar.gz
stress-ng: Upgrade 0.11.01 -> 0.11.17
Upgrade to the latest upstream version. This fixes at least one build error, in which build fails due to undefined FS_IOC_GETFLAGS. See commit d7b4301d ("stress-efivar: only exercise FS_IOC_*FLAGS if they are defined") in stress-ng for details. (From OE-Core rev: f99dc4e49d4ad4383c826dd8f8410c32f408e9bd) Signed-off-by: Marek Vasut <marex@denx.de> Cc: Alexander Kanavin <alex.kanavin@gmail.com> Cc: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/stress-ng/stress-ng_0.11.17.bb')
-rw-r--r--meta/recipes-extended/stress-ng/stress-ng_0.11.17.bb25
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-extended/stress-ng/stress-ng_0.11.17.bb b/meta/recipes-extended/stress-ng/stress-ng_0.11.17.bb
new file mode 100644
index 0000000000..9b987c7bde
--- /dev/null
+++ b/meta/recipes-extended/stress-ng/stress-ng_0.11.17.bb
@@ -0,0 +1,25 @@
1SUMMARY = "System load testing utility"
2DESCRIPTION = "Deliberately simple workload generator for POSIX systems. It \
3imposes a configurable amount of CPU, memory, I/O, and disk stress on the system."
4HOMEPAGE = "https://kernel.ubuntu.com/~cking/stress-ng/"
5LICENSE = "GPLv2"
6LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
7
8SRC_URI = "https://kernel.ubuntu.com/~cking/tarballs/${BPN}/${BP}.tar.xz \
9 file://0001-Do-not-preserve-ownership-when-installing-example-jo.patch \
10 "
11SRC_URI[md5sum] = "7b89157c838f2bb4bdeba8f46e3c56ae"
12SRC_URI[sha256sum] = "860291dd3a18b985b3483190a627bbede2b5c52113766c1921001b3fb4b83af0"
13
14DEPENDS = "coreutils-native"
15
16PROVIDES = "stress"
17RPROVIDES_${PN} = "stress"
18RREPLACES_${PN} = "stress"
19RCONFLICTS_${PN} = "stress"
20
21inherit bash-completion
22
23do_install() {
24 oe_runmake DESTDIR=${D} install
25}