added my Recipes
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
From 64389a67b93a53b9fb7e9e20e905a5ee4613606b Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Wed, 15 Jan 2020 17:10:42 -0800
|
||||
Subject: [PATCH] let system headers provide pread64()
|
||||
|
||||
The signature does not match with system headers anyway
|
||||
|
||||
Fixes
|
||||
|
||||
iozone.c:1270:9: error: redeclaration of 'pread64' must have the 'overloadable' attribute ssize_t pread64(); ^ /mnt/b/yoe/build/tmp/work/core2-64-yoe-linux/iozone3/488-r0/recipe-sysroot/usr/include/bits/unistd.h:83:1: note: previous overload of function is here pread64 (int __fd, void *const __clang_pass_object_size0 __buf, ^
|
||||
1 error generated.
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
iozone.c | 1 -
|
||||
1 file changed, 1 deletion(-)
|
||||
|
||||
diff --git a/iozone.c b/iozone.c
|
||||
index 090dd5f..fdea400 100644
|
||||
--- a/iozone.c
|
||||
+++ b/iozone.c
|
||||
@@ -1267,7 +1267,6 @@ int pit_gettimeofday();
|
||||
#ifdef HAVE_ANSIC_C
|
||||
#if defined (HAVE_PREAD) && defined(_LARGEFILE64_SOURCE)
|
||||
ssize_t pwrite64();
|
||||
-ssize_t pread64();
|
||||
#endif
|
||||
#if !defined(linux)
|
||||
char *getenv();
|
||||
--
|
||||
2.25.0
|
||||
|
||||
@@ -0,0 +1,62 @@
|
||||
LICENSE:
|
||||
|
||||
Copyright 1991, 1992, 1994, 1998, 1999, 2002 William D. Norcott
|
||||
|
||||
License to freely use and distribute this software is hereby granted
|
||||
by the author, subject to the condition that this copyright notice
|
||||
remains intact. The author retains the exclusive right to publish
|
||||
derivative works based on this work, including, but not limited to
|
||||
revised versions of this work.
|
||||
|
||||
|
||||
|
||||
Below is author reply to question about distributing iozone3 in
|
||||
OpenEmbedded:
|
||||
|
||||
========================================================================
|
||||
|
||||
Marcin,
|
||||
|
||||
Re-distribution is permitted as long as the copyright is
|
||||
maintained and the source code is not changed. I do not
|
||||
see a problem with your mods to enable fileop for Linux-arm,
|
||||
as these mods have been returned to the Iozone folks,
|
||||
and they have been accepted for inclusion in the next
|
||||
release :-)
|
||||
|
||||
Thank you for your contribution,
|
||||
Don Capps
|
||||
|
||||
----- Original Message -----
|
||||
From: "Marcin Juszkiewicz" <firma@hrw.one.pl>
|
||||
To: "Don Capps" <don.capps2@verizon.net>; "William D. Norcott"
|
||||
<wnorcott@us.oracle.com>
|
||||
Sent: Sunday, October 29, 2006 4:55 PM
|
||||
Subject: iozone3 263 patch for arm and License question
|
||||
|
||||
|
||||
> Morning
|
||||
>
|
||||
> I want to include iozone3 in OpenEmbedded [1] metadata to give it for
|
||||
> other developers. Currently OE is used to build few distributions for
|
||||
> misc platforms: ARM, SH3, SH4, x86, PowerPC and different types of
|
||||
> machines (PDA, settopbox, devboards, desktops, thin clients, routers).
|
||||
>
|
||||
> According to your distribution of derivations is forbidden. Packaging
|
||||
> iozone3 in OpenEmbedded will not involve any source code changes. But
|
||||
> when I was building it for ARM I discovered that fileop binary was not
|
||||
> built - so I created patch for it (attached). Not yet tested it on target
|
||||
> device.
|
||||
>
|
||||
> Thus, I seek your written permission via e-mail to distribute a package of
|
||||
> the unmodified source code and also a package of the pre-compiled binary.
|
||||
> Your copyright statement will be included in the package.
|
||||
>
|
||||
>
|
||||
> 1. http://www.openembedded.org/
|
||||
>
|
||||
> Regards
|
||||
> --
|
||||
> JID: hrw-jabber.org
|
||||
> OpenEmbedded developer/consultant
|
||||
|
||||
@@ -0,0 +1,104 @@
|
||||
remove libasync.o and libbif.o from deps
|
||||
|
||||
there are no implicit rules to build them and they get wrong CFLAGS
|
||||
when compiled with implicit rule.
|
||||
|
||||
They are built as part of iozone_linux.o target anyway
|
||||
|
||||
Only fixed linux targets for now
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
Upstream-Status: Pending
|
||||
|
||||
---
|
||||
current/makefile | 18 +++++++++---------
|
||||
1 file changed, 9 insertions(+), 9 deletions(-)
|
||||
|
||||
diff --git current/makefile current/makefile
|
||||
index 3a54701..7071427 100644
|
||||
--- current/makefile
|
||||
+++ current/makefile
|
||||
@@ -171,7 +171,7 @@ hpux_no_ansi: iozone_hpux_no.o libbif.o
|
||||
#
|
||||
# GNU 'C' compiler Linux build with threads, largefiles, async I/O
|
||||
#
|
||||
-linux: iozone_linux.o libasync.o libbif.o fileop_linux.o pit_server.o
|
||||
+linux: iozone_linux.o fileop_linux.o pit_server.o
|
||||
$(CC) -O3 $(CFLAGS) iozone_linux.o libasync.o libbif.o -lpthread \
|
||||
-lrt -o iozone
|
||||
$(CC) -O3 $(CFLAGS) -Dlinux fileop_linux.o -o fileop
|
||||
@@ -180,7 +180,7 @@ linux: iozone_linux.o libasync.o libbif.o fileop_linux.o pit_server.o
|
||||
#
|
||||
# GNU 'C' compiler Linux build for powerpc chip with threads, largefiles, async I/O
|
||||
#
|
||||
-linux-powerpc: iozone_linux-powerpc.o libbif.o libasync.o fileop_linux-ppc.o pit_server.o
|
||||
+linux-powerpc: iozone_linux-powerpc.o fileop_linux-ppc.o pit_server.o
|
||||
$(CC) -O3 $(LDFLAGS) iozone_linux-powerpc.o libasync.o \
|
||||
libbif.o -lpthread -lrt -o iozone
|
||||
$(CC) -O3 -Dlinux fileop_linux-ppc.o -o fileop
|
||||
@@ -188,7 +188,7 @@ linux-powerpc: iozone_linux-powerpc.o libbif.o libasync.o fileop_linux-ppc.o pi
|
||||
#
|
||||
# GNU 'C' compiler Linux build for sparc chip with threads, largefiles, async I/O
|
||||
#
|
||||
-linux-sparc: iozone_linux-sparc.o libbif.o libasync.o fileop_linux.o pit_server.o
|
||||
+linux-sparc: iozone_linux-sparc.o fileop_linux.o pit_server.o
|
||||
$(CC) -O3 $(LDFLAGS) iozone_linux-sparc.o libasync.o libbif.o \
|
||||
-lpthread -lrt -o iozone
|
||||
$(CC) -O3 -Dlinux fileop_linux.o -o fileop
|
||||
@@ -197,7 +197,7 @@ linux-sparc: iozone_linux-sparc.o libbif.o libasync.o fileop_linux.o pit_server
|
||||
#
|
||||
# GNU 'C' compiler Linux build with threads, largefiles, async I/O
|
||||
#
|
||||
-linux-ia64: iozone_linux-ia64.o libbif.o libasync.o fileop_linux-ia64.o pit_server.o
|
||||
+linux-ia64: iozone_linux-ia64.o fileop_linux-ia64.o pit_server.o
|
||||
$(CC) -O3 $(LDFLAGS) iozone_linux-ia64.o libbif.o libasync.o \
|
||||
-lrt -lpthread -o iozone
|
||||
$(CC) -O3 -Dlinux fileop_linux-ia64.o -o fileop
|
||||
@@ -206,7 +206,7 @@ linux-ia64: iozone_linux-ia64.o libbif.o libasync.o fileop_linux-ia64.o pit_ser
|
||||
#
|
||||
# GNU 'C' compiler Linux build for powerpc chip with threads, largefiles, async I/O
|
||||
#
|
||||
-linux-powerpc64: iozone_linux-powerpc64.o libbif.o libasync.o fileop_linux-ppc64.o pit_server-linux-powerpc64.o
|
||||
+linux-powerpc64: iozone_linux-powerpc64.o fileop_linux-ppc64.o pit_server-linux-powerpc64.o
|
||||
$(CC) -O3 -Dunix -DHAVE_ANSIC_C -DSHARED_MEM -DASYNC_IO \
|
||||
-D_LARGEFILE64_SOURCE -Dlinux \
|
||||
iozone_linux-powerpc64.o libasync.o libbif.o -lpthread \
|
||||
@@ -217,7 +217,7 @@ linux-powerpc64: iozone_linux-powerpc64.o libbif.o libasync.o fileop_linux-ppc6
|
||||
#
|
||||
# GNU 'C' compiler Linux build with threads, largefiles, async I/O
|
||||
#
|
||||
-linux-arm: iozone_linux-arm.o libbif.o libasync.o fileop_linux-arm.o pit_server.o
|
||||
+linux-arm: iozone_linux-arm.o fileop_linux-arm.o pit_server.o
|
||||
$(CC) -O3 $(LDFLAGS) iozone_linux-arm.o libbif.o libasync.o \
|
||||
-lrt -lpthread -o iozone
|
||||
$(CC) -O3 -Dlinux fileop_linux-arm.o -o fileop
|
||||
@@ -249,7 +249,7 @@ endif
|
||||
#
|
||||
# GNU 'C' compiler Linux build with threads, largefiles, async I/O
|
||||
#
|
||||
-linux-AMD64: iozone_linux-AMD64.o libbif.o libasync.o fileop_linux-AMD64.o pit_server.o
|
||||
+linux-AMD64: iozone_linux-AMD64.o fileop_linux-AMD64.o pit_server.o
|
||||
$(CC) -O3 $(LDFLAGS) iozone_linux-AMD64.o libbif.o libasync.o \
|
||||
-lrt -lpthread -o iozone
|
||||
$(CC) -O3 -Dlinux fileop_linux-AMD64.o -o fileop
|
||||
@@ -258,7 +258,7 @@ linux-AMD64: iozone_linux-AMD64.o libbif.o libasync.o fileop_linux-AMD64.o pit_
|
||||
#
|
||||
# GNU 'C' compiler Linux build with S/390, threads, largfiles, async I/O
|
||||
#
|
||||
-linux-S390: iozone_linux-s390.o libbif.o libasync.o fileop_linux-s390.o pit_server.o
|
||||
+linux-S390: iozone_linux-s390.o fileop_linux-s390.o pit_server.o
|
||||
$(CC) -O2 $(LDFLAGS) -lpthread -lrt iozone_linux-s390.o \
|
||||
libbif.o libasync.o -o iozone
|
||||
$(CC) -O3 -Dlinux fileop_linux-s390.o -o fileop
|
||||
@@ -267,7 +267,7 @@ linux-S390: iozone_linux-s390.o libbif.o libasync.o fileop_linux-s390.o pit_serv
|
||||
#
|
||||
# GNU 'C' compiler Linux build with S/390, threads, largfiles, async I/O
|
||||
#
|
||||
-linux-S390X: iozone_linux-s390x.o libbif.o libasync.o fileop_linux-s390x.o pit_server.o
|
||||
+linux-S390X: iozone_linux-s390x.o fileop_linux-s390x.o pit_server.o
|
||||
$(CC) -O2 $(LDFLAGS) -lpthread -lrt iozone_linux-s390x.o \
|
||||
libbif.o libasync.o -o iozone
|
||||
$(CC) -O3 -Dlinux fileop_linux-s390x.o -o fileop
|
||||
--
|
||||
2.25.1
|
||||
|
||||
@@ -0,0 +1,121 @@
|
||||
SUMMARY = "Filesystem and Disk Benchmarking Tool"
|
||||
HOMEPAGE = "http://www.iozone.org/"
|
||||
AUTHOR = "Don Capps <don.capps2@verizon.net>, William D. Norcott <wnorcott@us.oracle.com>"
|
||||
SECTION = "console/tests"
|
||||
LICENSE = "iozone3"
|
||||
LIC_FILES_CHKSUM = "file://iozone.c;beginline=37;endline=48;md5=7331260091868dcad0f9edea735b5f4b \
|
||||
file://iozone.c;beginline=276;endline=282;md5=77f9ee51e45b57a7e7519c4fa0b4f00b \
|
||||
"
|
||||
SRC_URI = "http://www.iozone.org/src/current/${BPN}_${PV}.tar \
|
||||
file://parallelism.patch \
|
||||
file://0001-let-system-headers-provide-pread64.patch \
|
||||
file://copyright.txt \
|
||||
"
|
||||
SRC_URI[md5sum] = "228f54482c01d1c04c571a9414cd20e5"
|
||||
SRC_URI[sha256sum] = "322981e168f32bd39f54772b82b2906d598d958c37e954e75742e71baf58bb9b"
|
||||
|
||||
UPSTREAM_CHECK_REGEX = "iozone3_(?P<pver>\d+).tar"
|
||||
|
||||
S = "${WORKDIR}/${BPN}_${PV}/src/current"
|
||||
|
||||
#
|
||||
# All other arches can use the default OEMAKE except those
|
||||
# explicitly listed below. Another, the iozone3 Makefile
|
||||
# needs to be told about the cross-compiler explicitly here.
|
||||
#
|
||||
EXTRA_OEMAKE:powerpc = "linux-powerpc CC='${CC}' GCC='${CC}'"
|
||||
EXTRA_OEMAKE:powerpc64 = "linux-powerpc64 CC='${CC}' GCC='${CC}'"
|
||||
EXTRA_OEMAKE:powerpc64le = "linux-powerpc64 CC='${CC}' GCC='${CC}'"
|
||||
EXTRA_OEMAKE:x86-64 = "linux-AMD64 CC='${CC}' GCC='${CC}'"
|
||||
EXTRA_OEMAKE:arm = "linux-arm CC='${CC}' GCC='${CC}'"
|
||||
EXTRA_OEMAKE = "linux CC='${CC}' GCC='${CC}'"
|
||||
|
||||
TARGET_CC_ARCH += "${LDFLAGS}"
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${bindir} \
|
||||
${D}${mandir}/man1 \
|
||||
${D}${datadir}/doc/${BPN}/examples
|
||||
|
||||
install -m 0755 ${S}/iozone ${D}${bindir}
|
||||
install -m 0755 ${S}/fileop ${D}${bindir}
|
||||
install -m 0644 ${WORKDIR}/${BPN}_${PV}/docs/iozone.1 ${D}${mandir}/man1/
|
||||
install -m 0644 ${WORKDIR}/copyright.txt ${D}${datadir}/doc/${BPN}/
|
||||
|
||||
install -m 0644 ${S}/*.dem ${D}${datadir}/doc/${BPN}/examples
|
||||
install -m 0644 ${S}/client_list ${D}${datadir}/doc/${BPN}/examples
|
||||
install -m 0644 ${S}/Gnuplot.txt ${D}${datadir}/doc/${BPN}/examples
|
||||
|
||||
install -m 0755 ${S}/Generate_Graphs ${D}${datadir}/doc/${BPN}/examples
|
||||
install -m 0755 ${S}/gengnuplot.sh ${D}${datadir}/doc/${BPN}/examples
|
||||
install -m 0755 ${S}/report.pl ${D}${datadir}/doc/${BPN}/examples
|
||||
|
||||
install -m 0644 ${WORKDIR}/${BPN}_${PV}/docs/Iozone_ps.gz ${D}${datadir}/doc/${BPN}/
|
||||
install -m 0644 ${WORKDIR}/${BPN}_${PV}/docs/IOzone_msword_98.pdf ${D}${datadir}/doc/${BPN}/
|
||||
install -m 0644 ${WORKDIR}/${BPN}_${PV}/docs/Run_rules.doc ${D}${datadir}/doc/${BPN}/
|
||||
}
|
||||
|
||||
FILES:${PN} += "${datadir}/doc/${PN}/copyright.txt"
|
||||
|
||||
# LICENSE:
|
||||
#
|
||||
# Copyright 1991, 1992, 1994, 1998, 1999, 2002 William D. Norcott
|
||||
#
|
||||
# License to freely use and distribute this software is hereby granted
|
||||
# by the author, subject to the condition that this copyright notice
|
||||
# remains intact. The author retains the exclusive right to publish
|
||||
# derivative works based on this work, including, but not limited to
|
||||
# revised versions of this work.
|
||||
#
|
||||
|
||||
#
|
||||
# Below is author reply to question about distributing iozone3 in
|
||||
# OpenEmbedded:
|
||||
#
|
||||
# ========================================================================
|
||||
#
|
||||
# Marcin,
|
||||
#
|
||||
# Re-distribution is permitted as long as the copyright is
|
||||
# maintained and the source code is not changed. I do not
|
||||
# see a problem with your mods to enable fileop for Linux-arm,
|
||||
# as these mods have been returned to the Iozone folks,
|
||||
# and they have been accepted for inclusion in the next
|
||||
# release :-)
|
||||
#
|
||||
# Thank you for your contribution,
|
||||
# Don Capps
|
||||
#
|
||||
# ----- Original Message -----
|
||||
# From: "Marcin Juszkiewicz" <firma@hrw.one.pl>
|
||||
# To: "Don Capps" <don.capps2@verizon.net>; "William D. Norcott"
|
||||
# <wnorcott@us.oracle.com>
|
||||
# Sent: Sunday, October 29, 2006 4:55 PM
|
||||
# Subject: iozone3 263 patch for arm and License question
|
||||
#
|
||||
#
|
||||
# > Morning
|
||||
# >
|
||||
# > I want to include iozone3 in OpenEmbedded [1] metadata to give it for
|
||||
# > other developers. Currently OE is used to build few distributions for
|
||||
# > misc platforms: ARM, SH3, SH4, x86, PowerPC and different types of
|
||||
# > machines (PDA, settopbox, devboards, desktops, thin clients, routers).
|
||||
# >
|
||||
# > According to your distribution of derivations is forbidden. Packaging
|
||||
# > iozone3 in OpenEmbedded will not involve any source code changes. But
|
||||
# > when I was building it for ARM I discovered that fileop binary was not
|
||||
# > built - so I created patch for it (attached). Not yet tested it on target
|
||||
# > device.
|
||||
# >
|
||||
# > Thus, I seek your written permission via e-mail to distribute a package of
|
||||
# > the unmodified source code and also a package of the pre-compiled binary.
|
||||
# > Your copyright statement will be included in the package.
|
||||
# >
|
||||
# >
|
||||
# > 1. http://www.openembedded.org/
|
||||
# >
|
||||
# > Regards
|
||||
# > --
|
||||
# > JID: hrw-jabber.org
|
||||
# > OpenEmbedded developer/consultant
|
||||
|
||||
Reference in New Issue
Block a user