From 44a14209f358abfadf7fcd9934d2a3d5cdcc63a3 Mon Sep 17 00:00:00 2001 From: "Maxin B. John" Date: Thu, 5 Nov 2015 17:50:10 +0200 Subject: rt-tests: upgrade to version 0.96 bump version to 0.96 Signed-off-by: Maxin B. John Signed-off-by: Ross Burton --- meta/recipes-rt/rt-tests/hwlatdetect_0.94.bb | 23 -------------------- meta/recipes-rt/rt-tests/hwlatdetect_0.96.bb | 23 ++++++++++++++++++++ meta/recipes-rt/rt-tests/rt-tests.inc | 6 +++--- meta/recipes-rt/rt-tests/rt-tests_0.94.bb | 32 ---------------------------- meta/recipes-rt/rt-tests/rt-tests_0.96.bb | 32 ++++++++++++++++++++++++++++ 5 files changed, 58 insertions(+), 58 deletions(-) delete mode 100644 meta/recipes-rt/rt-tests/hwlatdetect_0.94.bb create mode 100644 meta/recipes-rt/rt-tests/hwlatdetect_0.96.bb delete mode 100644 meta/recipes-rt/rt-tests/rt-tests_0.94.bb create mode 100644 meta/recipes-rt/rt-tests/rt-tests_0.96.bb (limited to 'meta/recipes-rt/rt-tests') diff --git a/meta/recipes-rt/rt-tests/hwlatdetect_0.94.bb b/meta/recipes-rt/rt-tests/hwlatdetect_0.94.bb deleted file mode 100644 index 8319eb987a..0000000000 --- a/meta/recipes-rt/rt-tests/hwlatdetect_0.94.bb +++ /dev/null @@ -1,23 +0,0 @@ -SUMMARY = "Hardware latency detector" -DESCRIPTION = "Python utility for controlling the kernel hardware latency detection module (hwlat_detector.ko)." -HOMEPAGE = "http://git.kernel.org/?p=linux/kernel/git/clrkwllms/rt-tests.git" -SECTION = "tests" -LICENSE = "GPLv2" -LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" - -require rt-tests.inc - -EXTRA_OEMAKE += "PYLIB=${libdir}/python${PYTHON_BASEVERSION}/dist-packages" - -do_compile() { - oe_runmake hwlatdetect -} - -do_install() { - oe_runmake install_hwlatdetect DESTDIR=${D} SBINDIR=${sbindir} \ - MANDIR=${mandir} INCLUDEDIR=${includedir} -} - -FILES_${PN} += "${libdir}/python${PYTHON_BASEVERSION}/dist-packages/hwlatdetect.py" -RDEPENDS_${PN} = "python python-subprocess python-textutils" -RRECOMMENDS_${PN} = "kernel-module-hwlat-detector" diff --git a/meta/recipes-rt/rt-tests/hwlatdetect_0.96.bb b/meta/recipes-rt/rt-tests/hwlatdetect_0.96.bb new file mode 100644 index 0000000000..962069e3dc --- /dev/null +++ b/meta/recipes-rt/rt-tests/hwlatdetect_0.96.bb @@ -0,0 +1,23 @@ +SUMMARY = "Hardware latency detector" +DESCRIPTION = "Python utility for controlling the kernel hardware latency detection module (hwlat_detector.ko)." +HOMEPAGE = "https://rt.wiki.kernel.org/index.php/Cyclictest" +SECTION = "tests" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" + +require rt-tests.inc + +EXTRA_OEMAKE += "PYLIB=${libdir}/python${PYTHON_BASEVERSION}/dist-packages" + +do_compile() { + oe_runmake hwlatdetect +} + +do_install() { + oe_runmake install_hwlatdetect DESTDIR=${D} SBINDIR=${sbindir} \ + MANDIR=${mandir} INCLUDEDIR=${includedir} +} + +FILES_${PN} += "${libdir}/python${PYTHON_BASEVERSION}/dist-packages/hwlatdetect.py" +RDEPENDS_${PN} = "python python-subprocess python-textutils" +RRECOMMENDS_${PN} = "kernel-module-hwlat-detector" diff --git a/meta/recipes-rt/rt-tests/rt-tests.inc b/meta/recipes-rt/rt-tests/rt-tests.inc index 4e099dffa2..76f9b3a341 100644 --- a/meta/recipes-rt/rt-tests/rt-tests.inc +++ b/meta/recipes-rt/rt-tests/rt-tests.inc @@ -1,6 +1,6 @@ -# Version v0.94 -PV = "0.94" -SRCREV = "a8fd81efa718ec449d90cba8f41123ed521bd12b" +# Version v0.96 +PV = "0.96" +SRCREV = "24f8c0175e04bab78e7555698e34d7002b01c87f" SRC_URI = "git://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git" diff --git a/meta/recipes-rt/rt-tests/rt-tests_0.94.bb b/meta/recipes-rt/rt-tests/rt-tests_0.94.bb deleted file mode 100644 index 7d703925a8..0000000000 --- a/meta/recipes-rt/rt-tests/rt-tests_0.94.bb +++ /dev/null @@ -1,32 +0,0 @@ -SUMMARY = "Real-Time preemption testcases" -HOMEPAGE = "https://rt.wiki.kernel.org/index.php/Cyclictest" -SECTION = "tests" -DEPENDS = "linux-libc-headers virtual/libc" -LICENSE = "GPLv2 & GPLv2+" -LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ - file://src/cyclictest/cyclictest.c;beginline=7;endline=9;md5=e768b8da44555fe63f65e5c497844cb5 \ - file://src/pi_tests/pi_stress.c;beginline=6;endline=19;md5=bd426a634a43ec612e9fbf125dfcc949" - -require rt-tests.inc -inherit ptest - -SRC_URI += "file://run-ptest \ - file://rt_bmark.py \ - " -# Do not install hwlatdetect -EXTRA_OEMAKE += "PYLIB='' CROSS_COMPILE=${TARGET_PREFIX}" - -CFLAGS_prepend = "${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS}" - -do_install() { - oe_runmake install DESTDIR=${D} SBINDIR=${sbindir} MANDIR=${mandir} \ - INCLUDEDIR=${includedir} -} - -do_install_ptest() { - cp ${WORKDIR}/rt_bmark.py ${D}${PTEST_PATH} -} - -RDEPENDS_${PN}-ptest += " stress python python-subprocess python-multiprocessing python-datetime python-re python-lang" - -FILES_${PN} += "${prefix}/src/backfire" diff --git a/meta/recipes-rt/rt-tests/rt-tests_0.96.bb b/meta/recipes-rt/rt-tests/rt-tests_0.96.bb new file mode 100644 index 0000000000..7d703925a8 --- /dev/null +++ b/meta/recipes-rt/rt-tests/rt-tests_0.96.bb @@ -0,0 +1,32 @@ +SUMMARY = "Real-Time preemption testcases" +HOMEPAGE = "https://rt.wiki.kernel.org/index.php/Cyclictest" +SECTION = "tests" +DEPENDS = "linux-libc-headers virtual/libc" +LICENSE = "GPLv2 & GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ + file://src/cyclictest/cyclictest.c;beginline=7;endline=9;md5=e768b8da44555fe63f65e5c497844cb5 \ + file://src/pi_tests/pi_stress.c;beginline=6;endline=19;md5=bd426a634a43ec612e9fbf125dfcc949" + +require rt-tests.inc +inherit ptest + +SRC_URI += "file://run-ptest \ + file://rt_bmark.py \ + " +# Do not install hwlatdetect +EXTRA_OEMAKE += "PYLIB='' CROSS_COMPILE=${TARGET_PREFIX}" + +CFLAGS_prepend = "${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS}" + +do_install() { + oe_runmake install DESTDIR=${D} SBINDIR=${sbindir} MANDIR=${mandir} \ + INCLUDEDIR=${includedir} +} + +do_install_ptest() { + cp ${WORKDIR}/rt_bmark.py ${D}${PTEST_PATH} +} + +RDEPENDS_${PN}-ptest += " stress python python-subprocess python-multiprocessing python-datetime python-re python-lang" + +FILES_${PN} += "${prefix}/src/backfire" -- cgit 1.2.3-korg