aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-benchmark
AgeCommit message (Collapse)Author
2014-05-05dbench: Fix out of tree buildOtavio Salvador
This fixes the Makefile so the client.txt file is copied from the original source tree. This fixes the out of tree build error. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-05-04libhugetlbfs: update srcrev to 2.18 releaseFathi Boudra
* Update recipe: - update SRCREV to latest release, 2.18 - switch back to master branch - increase verbosity (pass V=1 to EXTRA_OEMAKE) to make debugging easier * Drop patches: - fix-lib64-can-not-be-shiped-in-64bit-target.patch replaced by LIBARGS definition. the build system allows to override libdir using LIB32 and LIB64 variables - 0001-install-perl-lib-to-directory-perl-instead-of-perl5.patch replaced by a one-liner to fixup perl module directory hardcoded to perl5 * Refresh skip-checking-LIB32-and-LIB64-if-they-point-to-the-s.patch - only disable the error to skip the check * Add patches: - 0001-aarch64-fix-cross-compilation.patch - submitted upstream allow to override CC and use it for aarch64 case like the other arch - 0001-aarch64-fix-page-size-not-properly-computed.patch - submitted upstream fix typo on MB variable (MB -> $MB) and add the missing linker variants (aarch64elfb, aarch64linux, aarch64linuxb) - 0001-replace-lib-lib64-hardcoded-values-by-LIBDIR32-LIBDI.patch submitted upstream. replace lib/lib64 hardcoded values by LIBDIR32 and LIBDIR64 variables * Remove patches that aren't applied in the recipe (they're all merged upstream and available in 2.18 release): - libhugetlbfs/files/aarch64-support.patch - aarch64-unit-test-fixes.patch - add-PROT-NONE-to-the-mprotest-test.patch Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-05-03bonnie++, lmbench, obex-data-server, samba, sg3-utils: Do not do out-of-tree ↵Khem Raj
builds These recipes are not ready yet Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-05-03iozone: update version to 414Jackie Huang
Changes: - use BPN to fix multilib builds - drop the fileop-arm.patch since the issue is already fixed in the new version. Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
2014-04-20bonnie++: update to version 1.03eJackie Huang
Changes: * use BPN in the file name in SRC_URI. * install binaries in bindir and sbindir instead of base_bindir and base_sbindir. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-23glmark2: Rework recipe to use the 'waf' classOtavio Salvador
This removes the duplicated code and uses the OE-Core waf class. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-03-18iperf: Upgrade to version 2.0.5Lauren Post
This version provides better ethernet performance Patch is required for man page portion of build Signed-off-by: Lauren Post <lauren.post@freescale.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-02-23recipes: convert remaining SUMMARY/DESCRIPTION cosmetic issuesMatthieu CRAPET
Changes: - rename SUMMARY with length > 80 to DESCRIPTION - rename DESCRIPTION with length < 80 to (non present tag) SUMMARY - drop final point character at the end of SUMMARY string - remove trailing whitespace of SUMMARY line Note: don't bump PR Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-02-01libhugetlbfs: ensure package strip logic stays the same after oe-core ↵Koen Kooi
package.bbclass changes See http://patches.openembedded.org/patch/65311/ Signed-off-by: Koen Kooi <koen.kooi@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-01-22lmbench: use base_libdir instead of hardcoded /libTing Liu
Fix the below QA warning when building 64bit target: | WARNING: QA Issue: lmbench: Files/directories were installed but not | shipped | /usr/lib | /usr/lib/libmbench.a Signed-off-by: Ting Liu <b28495@freescale.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-01-22libhugetbfs: add branch parameter and uprev to 6824d18Ting Liu
Signed-off-by: Ting Liu <b28495@freescale.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-12-05lmbench: fix the CONFIG path in lmbench-runChristopher Larson
The 'config' script which gets run returns '../scripts/CONFIG.<machine>', so the current value was '${datadir}/lmbench/../scripts/CONFIG.<machine>', which is obviously not ideal. Remove the $SHAREDIR prefix, as the relative path will work from the scripts dir where lmbench-run runs. With this, we can install a custom CONFIG.qemux86 into ${datadir}/lmbench/scripts/, for example. Signed-off-by: Christopher Larson <kergoth@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-10-21libhugetlbfs: kill /opt usageKoen Kooi
/opt should never be used for packages built by OE, so install the tests in a more standard location. Signed-off-by: Koen Kooi <koen.kooi@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-10-15libhugetlbfs: install perl lib to directory perl instead of perl5Chunrong Guo
*libhugetlbfs depends on perl, and perl installs a directory 'perl' and make a symlink 'perl5' to it. So just install perl libs in libhugetlbfs to directory 'perl' instead of 'perl5'. This can avoid the following error: | CalledProcessError: Command 'tar -cf - -C .../perl/5.14.3-r1/sysroot-destdir | -ps . | tar -xf - -C .../tmp/sysroots/t4240qds' | returned non-zero exit status 2 with output | tar: ./usr/lib/perl5: Cannot create symlink to `perl': File exists | tar: Exiting with failure status due to previous errors Signed-off-by: Chunrong Guo <B40290@freescale.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-10-15libhugetlbfs: not use hard coded path in run_tests.pyChunrong Guo
*Hard coded path makes the script impossible to run out of source tree. *After 'make install', we can use hugeadm utility under DESTDIR. Signed-off-by: Chunrong Guo <B40290@freescale.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-10-15libhugetlbfs: install static 4G-edge testcasesChunrong Guo
*TESTS_64 is empty, install will fail due to missing file operand. Signed-off-by: Chunrong Guo <B40290@freescale.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-10-05libhugetlbfs: add recipeChunrong Guo
Signed-off-by: Chunrong Guo <B40290@freescale.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-09-10lmbench: specify configuration for systemd-tmpfiles --updateJonathan Liu
Running systemd-tmpfiles --update without specifying a configuration file results in all tmpfiles.d configuration files being processed. /usr/lib/tmpfiles.d/systemd.conf creates /run/nologin on boot to prevent non-root users from logging in while the system is booting. If systemd-tmpfiles --update is run after the system has started, it will still create /run/nologin which would prevent non-root users from logging in with the message "System is booting up.". Signed-off-by: Jonathan Liu <net147@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-08-14glmark2: add dependency on jpegMartin Jansa
* fails without: | Checking for header jpeglib.h : not found | The configuration failed Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-08-08iperf: Fix licenseChunrong Guo
*the current version of Iperf has a false LICENSE set, so fix license with the generic BSD license Signed-off-by: Chunrong Guo <B40290@freescale.com> Acked-by: Paul Barker <paul@paulbarker.me.uk> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-07-08lmbench: remove /run/lmbench from packageOtavio Salvador
Create /run/lmbench on startup using populate-volatiles.sh and tmpfiles.d for systemd. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-06-27glmark2: Add recipe for glmark2Diego Rondini
Add a recipe for glmark2, which is an OpenGL 2.0 / OpenGL ES 2.0 benchmark. Signed-off-by: Diego Rondini <diego.ml@zoho.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-19fio: Add armv6 supportOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-04-15recipes: Unify indentationMartin Jansa
* This change is only aesthetic (unlike indentation in Python tasks). * Some recipes were using tabs. * Some were using 8 spaces. * Some were using mix or different number of spaces. * Make them consistently use 4 spaces everywhere. * Yocto styleguide advises to use tabs (but the only reason to keep tabs is the need to update a lot of recipes). Lately this advice was also merged into the styleguide on the OE wiki. * Using 4 spaces in both types of tasks is better because it's less error prone when someone is not sure if e.g. do_generate_toolchain_file() is Python or shell task and also allows to highlight every tab used in .bb, .inc, .bbappend, .bbclass as potentially bad (shouldn't be used for indenting of multiline variable assignments and cannot be used for Python tasks). * Don't indent closing quote on multiline variables we're quite inconsistent wheater it's first character on line under opening quote or under first non-whitespace character in previous line. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Koen Kooi <koen@dominion.thruhere.net>
2013-03-02lmbench: update config scriptChunrong Guo
*fix bug that can not find CONFIG file |error: run ./results|./results: line 15: .: CONFIG.p2041rdb: file not found * update CONFIG file path Signed-off-by: Chunrong Guo <B40290@freescale.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-03-02lmbench: use spaces for indentationMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2013-02-05tiobench: use RDEPENDS correctlyPaul Eggleton
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-12-11lmbench: fix unpackaged filesMartin Jansa
* fixes: lmbench-3.0-a9: lmbench: Files/directories were installed but not shipped /usr/man /usr/lib/lmbench Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-11-29netperf: removePaul Eggleton
Version 2.6.0 is now in meta-networking. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2012-08-07tiobench: fix aligned allocation method clash with newer glibcOtavio Salvador
glibc 2.16 added aligned allocation support to stdlib and those function clashes with the local implementation done in tiobench. We fix it using a '_' prefix on those. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-07-25netperf: correct paths in the example scriptsChristopher Larson
Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-07-18cpuburn-neon: fix packaging to use a date as version and valid sourcesOtavio Salvador
* 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>
2012-04-11cpuburn-neon: add cpuburn app for neon and neon-cortexa8Koen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-03-11netperf: add version 2.4.4Zhenhua Luo
Signed-off-by: Zhenhua Luo <b19537@freescale.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2012-03-09fio: Add initial recipe for version 2.0.5Tom Rini
Signed-off-by: Tom Rini <trini@ti.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-02-29nbench-byte-2.3.3: import recipe from oe-classicchase maupin
* Import the nbench-byte recipe from the oe-classic git repo at git://git.openembedded.org/openembedded commit id: * 6fe7cef27069415f2eba36bc640cf59013d4979b * Update LICENSE checksums * Tested on an AM335x EVM which is the same processor as the beaglebone. * Original Author: * Marcin Juszkiewicz <marcin@juszkiewicz.com.pl> * Modifications by: * Koen Kooi <koen@openembedded.org> * Martin Jansa <Martin.Jansa@gmail.com> * Chris Larson <chris_larson@mentor.com> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-10-31memtester: Corrected recipe following review comments and guidelinesJoel A Fernandes
This is an import of memtester from OE classic, commit ID: 5671855bfba71575e4919c4b5fc9c5dcb8052612 Fixes to recipe: * Added patch header to Makefile.patch * Corrected order of variables and added HOMEPAGE to recipe * Removed the line, S = "${WORKDIR}/memtester-${PV}" as its the default * Removed new-line at end of recipe Signed-off-by: Joel A Fernandes <joelagnel@ti.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-10-24memtester: Import from OE classicJoel A Fernandes
Added LIC_FILES_CHKSUM Signed-off-by: Joel A Fernandes <joelagnel@ti.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-09-01lmbench: Add version 3.0-a9 (initial recipe)Noor Ahsan
* Imported from oe.dev commit id bac6441118e0b78d55c98afdc108f03b6c655909. Signed-off-by: Noor Ahsan <noor_ahsan@mentor.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-09-01bonnie++: Add version 1.03c (initial recipe)Noor Ahsan
* Imported from oe.dev commit id 44985d56bc556786812a0a02d6219afd31a7381d. * Merge .bb and .inc file. Signed-off-by: Noor Ahsan <noor_ahsan@mentor.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-09-01iozone3: Add version 263 (initial recipe)Noor Ahsan
* Import from oe.dev commit id b55dcd636a162541a4cdcace8c106869fbb9465b. * Bring LIC_FILES_CHKSUM from iozone.c file. Signed-off-by: Noor Ahsan <noor_ahsan@mentor.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-08-31tiobench: Add version 0.3.3 (initial recipe)Noor Ahsan
* Imported from oe.dev commit id 821f47e170dddabaef3925fd62c5423210dcb363. Signed-off-by: Noor Ahsan <noor_ahsan@mentor.com>
2011-08-29iperf: Add version 2.0.4 (initial recipe)Noor Ahsan
* Imported from oe.dev commit id 0ff10ecb88de73074ae4857046643cef15dc4e97 and c10c33f86903c93611023197a7f812459c2dfe2d. * Combined .inc and bb file from oe.dev and made a single bb file. * Removed EXTRA_OECONF_append_epia = " --disable-threads" while importing as this should go in epia layer. Signed-off-by: Noor Ahsan <noor_ahsan@mentor.com>
2011-08-29dbench: Add version 4.0 (initial recipe)Noor Ahsan
* Imported from oe.dev commit id d6f49fe115206047b41b0195724ba872897ef531 Signed-off-by: Noor Ahsan <noor_ahsan@mentor.com>