diff options
author | Raymond Danks <raymond@edanks.com> | 2006-04-18 01:20:31 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-04-18 01:20:31 +0000 |
commit | 99ed51fe92697c73e8adcf5e3e9b901c5b097688 (patch) | |
tree | a10a8de3d0272299f2ca1d7ff4b4b4ae8f4477bc /packages/bonnie | |
parent | 64b3d7c9f659e3966c0f58d5912405d749ace76d (diff) |
bonnie: initial add
Diffstat (limited to 'packages/bonnie')
-rw-r--r-- | packages/bonnie/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/bonnie/bonnie++_1.03a.bb | 26 |
2 files changed, 26 insertions, 0 deletions
diff --git a/packages/bonnie/.mtn2git_empty b/packages/bonnie/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/bonnie/.mtn2git_empty diff --git a/packages/bonnie/bonnie++_1.03a.bb b/packages/bonnie/bonnie++_1.03a.bb new file mode 100644 index 0000000000..92c0342bd6 --- /dev/null +++ b/packages/bonnie/bonnie++_1.03a.bb @@ -0,0 +1,26 @@ +# bonnie OE build file +# Copyright (C) 2004-2006, Advanced Micro Devices, Inc. All Rights Reserved +# Released under the MIT license (see packages/COPYING) + +DESCRIPTION="Tests large file IO and creation/deletion of small files." +LICENSE="GPL" +MAINTAINER = "Raymond Danks <raymondd@ia.amd.com>" + + +SRC_URI="${SOURCEFORGE_MIRROR}/bonnie/${PN}-${PV}.tgz" + +inherit autotools + +EXES="bonnie++ zcav" +SCRIPTS="bon_csv2html bon_csv2txt" + +FILES_${PN} = "/bin /sbin" +S="${WORKDIR}/${PN}-${PV}" + +do_install () { + install -d ${D}/bin + install -d ${D}/sbin + + install -m 0755 ${EXES} ${D}/sbin + install -m 0755 ${SCRIPTS} ${D}/bin +} |