* [meta-oe][PATCH] iozone: update version to 414
@ 2014-04-11 9:56 jackie.huang
2014-04-20 9:41 ` Martin Jansa
0 siblings, 1 reply; 5+ messages in thread
From: jackie.huang @ 2014-04-11 9:56 UTC (permalink / raw)
To: openembedded-devel
From: Jackie Huang <jackie.huang@windriver.com>
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>
---
.../iozone3/iozone3/fileop-arm.patch | 32 ------------
.../iozone3/{iozone3_263.bb => iozone3_414.bb} | 51 +++++++++++---------
2 files changed, 27 insertions(+), 56 deletions(-)
delete mode 100644 meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch
rename meta-oe/recipes-benchmark/iozone3/{iozone3_263.bb => iozone3_414.bb} (63%)
diff --git a/meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch b/meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch
deleted file mode 100644
index c71bfee..0000000
--- a/meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-Modify makefile to compile fileop.c file for ARM architecture.
-
-Upstream-Status: Inappropriate [not author]
-Index: current/makefile
-===================================================================
---- current.orig/makefile 2006-10-14 21:42:36.000000000 +0200
-+++ current/makefile 2006-10-14 21:40:02.000000000 +0200
-@@ -190,9 +190,10 @@
- #
- # GNU 'C' compiler Linux build with threads, largefiles, async I/O
- #
--linux-arm: iozone_linux-arm.o libbif.o libasync.o
-+linux-arm: iozone_linux-arm.o libbif.o libasync.o fileop_linux-arm.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
-
- #
- # GNU 'C' compiler Linux build with threads, largefiles, async I/O
-@@ -725,6 +726,12 @@
- @echo ""
- $(CC) -Wall -c -O3 $(CFLAGS) fileop.c -o fileop_linux-AMD64.o
-
-+fileop_linux-arm.o: fileop.c
-+ @echo ""
-+ @echo "Building fileop for Linux-arm"
-+ @echo ""
-+ $(CC) -Wall -c -O3 $(CFLAGS) fileop.c -o fileop_linux-arm.o
-+
- fileop_windows.o: fileop.c
- @echo ""
- @echo "Building fileop for Windows"
diff --git a/meta-oe/recipes-benchmark/iozone3/iozone3_263.bb b/meta-oe/recipes-benchmark/iozone3/iozone3_414.bb
similarity index 63%
rename from meta-oe/recipes-benchmark/iozone3/iozone3_263.bb
rename to meta-oe/recipes-benchmark/iozone3/iozone3_414.bb
index 9de0ac7..572d766 100644
--- a/meta-oe/recipes-benchmark/iozone3/iozone3_263.bb
+++ b/meta-oe/recipes-benchmark/iozone3/iozone3_414.bb
@@ -3,46 +3,49 @@ 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=237;endline=241;md5=ab42a6185fd0443978871f11a007ac0b"
+LIC_FILES_CHKSUM = "file://iozone.c;beginline=266;endline=270;md5=ab42a6185fd0443978871f11a007ac0b"
-
-SRC_URI = "http://www.iozone.org/src/current/iozone3_263.tar \
+SRC_URI = "http://fossies.org/unix/privat/${BPN}_${PV}.tar.gz \
file://copyright.txt \
- file://fileop-arm.patch \
"
-SRC_URI[md5sum] = "44fd88df361ec4508e10c8d6615245fa"
-SRC_URI[sha256sum] = "920fde1a3843539570e2df4aa611e74df102e52d363c5973d5a9d15bdf976461"
+SRC_URI[md5sum] = "85a3e292f84580a36e6c99762a459dd6"
+SRC_URI[sha256sum] = "f6c2fde4bfaef1ff8aaf99a315737a846886aa54751a6d9309e14fbec0cbe7a9"
-S = "${WORKDIR}/${PN}_${PV}/src/current/"
+S = "${WORKDIR}/${BPN}_${PV}/src/current/"
-EXTRA_OEMAKE_powerpc = "linux-powerpc CC='${CC}'"
-EXTRA_OEMAKE_powerpc64 = "linux-powerpc64 CC='${CC}'"
-EXTRA_OEMAKE_arm = "linux-arm CC='${CC}'"
-EXTRA_OEMAKE = "linux CC='${CC}'"
+#
+# 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_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/${PN}/examples
+ ${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}/${PN}_${PV}/docs/iozone.1 ${D}${mandir}/man1/
- install -m 0644 ${WORKDIR}/copyright.txt ${D}${datadir}/doc/${PN}/
+ 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/${PN}/examples
- install -m 0644 ${S}/client_list ${D}${datadir}/doc/${PN}/examples
- install -m 0644 ${S}/Gnuplot.txt ${D}${datadir}/doc/${PN}/examples
+ 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/${PN}/examples
- install -m 0755 ${S}/gengnuplot.sh ${D}${datadir}/doc/${PN}/examples
- install -m 0755 ${S}/report.pl ${D}${datadir}/doc/${PN}/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}/${PN}_${PV}/docs/Iozone_ps.gz ${D}${datadir}/doc/${PN}/
- install -m 0644 ${WORKDIR}/${PN}_${PV}/docs/IOzone_msword_98.pdf ${D}${datadir}/doc/${PN}/
- install -m 0644 ${WORKDIR}/${PN}_${PV}/docs/Run_rules.doc ${D}${datadir}/doc/${PN}/
+ 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"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [meta-oe][PATCH] iozone: update version to 414 2014-04-11 9:56 [meta-oe][PATCH] iozone: update version to 414 jackie.huang @ 2014-04-20 9:41 ` Martin Jansa 2014-04-21 5:38 ` Huang, Jie (Jackie) 0 siblings, 1 reply; 5+ messages in thread From: Martin Jansa @ 2014-04-20 9:41 UTC (permalink / raw) To: openembedded-devel [-- Attachment #1: Type: text/plain, Size: 7213 bytes --] On Fri, Apr 11, 2014 at 05:56:52PM +0800, jackie.huang@windriver.com wrote: > From: Jackie Huang <jackie.huang@windriver.com> > > 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> > --- > .../iozone3/iozone3/fileop-arm.patch | 32 ------------ > .../iozone3/{iozone3_263.bb => iozone3_414.bb} | 51 +++++++++++--------- > 2 files changed, 27 insertions(+), 56 deletions(-) > delete mode 100644 meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch > rename meta-oe/recipes-benchmark/iozone3/{iozone3_263.bb => iozone3_414.bb} (63%) > > diff --git a/meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch b/meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch > deleted file mode 100644 > index c71bfee..0000000 > --- a/meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch > +++ /dev/null > @@ -1,32 +0,0 @@ > -Modify makefile to compile fileop.c file for ARM architecture. > - > -Upstream-Status: Inappropriate [not author] > -Index: current/makefile > -=================================================================== > ---- current.orig/makefile 2006-10-14 21:42:36.000000000 +0200 > -+++ current/makefile 2006-10-14 21:40:02.000000000 +0200 > -@@ -190,9 +190,10 @@ > - # > - # GNU 'C' compiler Linux build with threads, largefiles, async I/O > - # > --linux-arm: iozone_linux-arm.o libbif.o libasync.o > -+linux-arm: iozone_linux-arm.o libbif.o libasync.o fileop_linux-arm.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 > - > - # > - # GNU 'C' compiler Linux build with threads, largefiles, async I/O > -@@ -725,6 +726,12 @@ > - @echo "" > - $(CC) -Wall -c -O3 $(CFLAGS) fileop.c -o fileop_linux-AMD64.o > - > -+fileop_linux-arm.o: fileop.c > -+ @echo "" > -+ @echo "Building fileop for Linux-arm" > -+ @echo "" > -+ $(CC) -Wall -c -O3 $(CFLAGS) fileop.c -o fileop_linux-arm.o > -+ > - fileop_windows.o: fileop.c > - @echo "" > - @echo "Building fileop for Windows" > diff --git a/meta-oe/recipes-benchmark/iozone3/iozone3_263.bb b/meta-oe/recipes-benchmark/iozone3/iozone3_414.bb > similarity index 63% > rename from meta-oe/recipes-benchmark/iozone3/iozone3_263.bb > rename to meta-oe/recipes-benchmark/iozone3/iozone3_414.bb > index 9de0ac7..572d766 100644 > --- a/meta-oe/recipes-benchmark/iozone3/iozone3_263.bb > +++ b/meta-oe/recipes-benchmark/iozone3/iozone3_414.bb > @@ -3,46 +3,49 @@ 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=237;endline=241;md5=ab42a6185fd0443978871f11a007ac0b" > +LIC_FILES_CHKSUM = "file://iozone.c;beginline=266;endline=270;md5=ab42a6185fd0443978871f11a007ac0b" > > - > -SRC_URI = "http://www.iozone.org/src/current/iozone3_263.tar \ > +SRC_URI = "http://fossies.org/unix/privat/${BPN}_${PV}.tar.gz \ $ wget http://fossies.org/unix/privat/iozone3_414.tar.gz --2014-04-20 09:40:22-- http://fossies.org/unix/privat/iozone3_414.tar.gz Resolving fossies.org (fossies.org)... 78.46.58.28 Connecting to fossies.org (fossies.org)|78.46.58.28|:80... connected. HTTP request sent, awaiting response... 404 Not Found 2014-04-20 09:40:23 ERROR 404: Not Found. > file://copyright.txt \ > - file://fileop-arm.patch \ > " > -SRC_URI[md5sum] = "44fd88df361ec4508e10c8d6615245fa" > -SRC_URI[sha256sum] = "920fde1a3843539570e2df4aa611e74df102e52d363c5973d5a9d15bdf976461" > +SRC_URI[md5sum] = "85a3e292f84580a36e6c99762a459dd6" > +SRC_URI[sha256sum] = "f6c2fde4bfaef1ff8aaf99a315737a846886aa54751a6d9309e14fbec0cbe7a9" > > -S = "${WORKDIR}/${PN}_${PV}/src/current/" > +S = "${WORKDIR}/${BPN}_${PV}/src/current/" > > -EXTRA_OEMAKE_powerpc = "linux-powerpc CC='${CC}'" > -EXTRA_OEMAKE_powerpc64 = "linux-powerpc64 CC='${CC}'" > -EXTRA_OEMAKE_arm = "linux-arm CC='${CC}'" > -EXTRA_OEMAKE = "linux CC='${CC}'" > +# > +# 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_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/${PN}/examples > + ${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}/${PN}_${PV}/docs/iozone.1 ${D}${mandir}/man1/ > - install -m 0644 ${WORKDIR}/copyright.txt ${D}${datadir}/doc/${PN}/ > + 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/${PN}/examples > - install -m 0644 ${S}/client_list ${D}${datadir}/doc/${PN}/examples > - install -m 0644 ${S}/Gnuplot.txt ${D}${datadir}/doc/${PN}/examples > + 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/${PN}/examples > - install -m 0755 ${S}/gengnuplot.sh ${D}${datadir}/doc/${PN}/examples > - install -m 0755 ${S}/report.pl ${D}${datadir}/doc/${PN}/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}/${PN}_${PV}/docs/Iozone_ps.gz ${D}${datadir}/doc/${PN}/ > - install -m 0644 ${WORKDIR}/${PN}_${PV}/docs/IOzone_msword_98.pdf ${D}${datadir}/doc/${PN}/ > - install -m 0644 ${WORKDIR}/${PN}_${PV}/docs/Run_rules.doc ${D}${datadir}/doc/${PN}/ > + 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" > -- > 1.7.9.5 > > -- > _______________________________________________ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-devel -- Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 205 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-oe][PATCH] iozone: update version to 414 2014-04-20 9:41 ` Martin Jansa @ 2014-04-21 5:38 ` Huang, Jie (Jackie) 2014-04-21 11:46 ` Martin Jansa 0 siblings, 1 reply; 5+ messages in thread From: Huang, Jie (Jackie) @ 2014-04-21 5:38 UTC (permalink / raw) To: openembedded-devel@lists.openembedded.org > -----Original Message----- > From: openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel- > bounces@lists.openembedded.org] On Behalf Of Martin Jansa > Sent: Sunday, April 20, 2014 5:41 PM > To: openembedded-devel@lists.openembedded.org > Subject: Re: [oe] [meta-oe][PATCH] iozone: update version to 414 > > On Fri, Apr 11, 2014 at 05:56:52PM +0800, jackie.huang@windriver.com wrote: > > From: Jackie Huang <jackie.huang@windriver.com> > > > > 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> > > --- > > .../iozone3/iozone3/fileop-arm.patch | 32 ------------ > > .../iozone3/{iozone3_263.bb => iozone3_414.bb} | 51 +++++++++++--------- > > 2 files changed, 27 insertions(+), 56 deletions(-) delete mode > > 100644 meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch > > rename meta-oe/recipes-benchmark/iozone3/{iozone3_263.bb => > > iozone3_414.bb} (63%) > > > > diff --git > > a/meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch > > b/meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch > > deleted file mode 100644 > > index c71bfee..0000000 > > --- a/meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch > > +++ /dev/null > > @@ -1,32 +0,0 @@ > > -Modify makefile to compile fileop.c file for ARM architecture. > > - > > -Upstream-Status: Inappropriate [not author] > > -Index: current/makefile > > -=================================================================== > > ---- current.orig/makefile 2006-10-14 21:42:36.000000000 +0200 > > -+++ current/makefile 2006-10-14 21:40:02.000000000 +0200 > > -@@ -190,9 +190,10 @@ > > - # > > - # GNU 'C' compiler Linux build with threads, largefiles, async I/O > > - # > > --linux-arm: iozone_linux-arm.o libbif.o libasync.o > > -+linux-arm: iozone_linux-arm.o libbif.o libasync.o fileop_linux-arm.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 > > - > > - # > > - # GNU 'C' compiler Linux build with threads, largefiles, async I/O > > -@@ -725,6 +726,12 @@ > > - @echo "" > > - $(CC) -Wall -c -O3 $(CFLAGS) fileop.c -o fileop_linux-AMD64.o > > - > > -+fileop_linux-arm.o: fileop.c > > -+ @echo "" > > -+ @echo "Building fileop for Linux-arm" > > -+ @echo "" > > -+ $(CC) -Wall -c -O3 $(CFLAGS) fileop.c -o fileop_linux-arm.o > > -+ > > - fileop_windows.o: fileop.c > > - @echo "" > > - @echo "Building fileop for Windows" > > diff --git a/meta-oe/recipes-benchmark/iozone3/iozone3_263.bb > > b/meta-oe/recipes-benchmark/iozone3/iozone3_414.bb > > similarity index 63% > > rename from meta-oe/recipes-benchmark/iozone3/iozone3_263.bb > > rename to meta-oe/recipes-benchmark/iozone3/iozone3_414.bb > > index 9de0ac7..572d766 100644 > > --- a/meta-oe/recipes-benchmark/iozone3/iozone3_263.bb > > +++ b/meta-oe/recipes-benchmark/iozone3/iozone3_414.bb > > @@ -3,46 +3,49 @@ 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=237;endline=241;md5=ab42a6185fd0443978871f11a007ac0b" > > +LIC_FILES_CHKSUM = > "file://iozone.c;beginline=266;endline=270;md5=ab42a6185fd0443978871f11a007ac0b" > > > > - > > -SRC_URI = "http://www.iozone.org/src/current/iozone3_263.tar \ > > +SRC_URI = "http://fossies.org/unix/privat/${BPN}_${PV}.tar.gz \ > > $ wget http://fossies.org/unix/privat/iozone3_414.tar.gz > --2014-04-20 09:40:22-- > http://fossies.org/unix/privat/iozone3_414.tar.gz > Resolving fossies.org (fossies.org)... 78.46.58.28 Connecting to fossies.org > (fossies.org)|78.46.58.28|:80... connected. > HTTP request sent, awaiting response... 404 Not Found > 2014-04-20 09:40:23 ERROR 404: Not Found. Sorry I didn't test the fetch since we had a local copy, fix it to: http://www.iozone.org/src/current/${BPN}_${PV}.tar and I will send v2 for this. Thanks, Jackie > > > > file://copyright.txt \ > > - file://fileop-arm.patch \ > > " > > -SRC_URI[md5sum] = "44fd88df361ec4508e10c8d6615245fa" > > -SRC_URI[sha256sum] = > "920fde1a3843539570e2df4aa611e74df102e52d363c5973d5a9d15bdf976461" > > +SRC_URI[md5sum] = "85a3e292f84580a36e6c99762a459dd6" > > +SRC_URI[sha256sum] = "f6c2fde4bfaef1ff8aaf99a315737a846886aa54751a6d9309e14fbec0cbe7a9" > > > > -S = "${WORKDIR}/${PN}_${PV}/src/current/" > > +S = "${WORKDIR}/${BPN}_${PV}/src/current/" > > > > -EXTRA_OEMAKE_powerpc = "linux-powerpc CC='${CC}'" > > -EXTRA_OEMAKE_powerpc64 = "linux-powerpc64 CC='${CC}'" > > -EXTRA_OEMAKE_arm = "linux-arm CC='${CC}'" > > -EXTRA_OEMAKE = "linux CC='${CC}'" > > +# > > +# 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_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/${PN}/examples > > + ${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}/${PN}_${PV}/docs/iozone.1 ${D}${mandir}/man1/ > > - install -m 0644 ${WORKDIR}/copyright.txt ${D}${datadir}/doc/${PN}/ > > + 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/${PN}/examples > > - install -m 0644 ${S}/client_list ${D}${datadir}/doc/${PN}/examples > > - install -m 0644 ${S}/Gnuplot.txt ${D}${datadir}/doc/${PN}/examples > > + 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/${PN}/examples > > - install -m 0755 ${S}/gengnuplot.sh ${D}${datadir}/doc/${PN}/examples > > - install -m 0755 ${S}/report.pl ${D}${datadir}/doc/${PN}/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}/${PN}_${PV}/docs/Iozone_ps.gz ${D}${datadir}/doc/${PN}/ > > - install -m 0644 ${WORKDIR}/${PN}_${PV}/docs/IOzone_msword_98.pdf > ${D}${datadir}/doc/${PN}/ > > - install -m 0644 ${WORKDIR}/${PN}_${PV}/docs/Run_rules.doc ${D}${datadir}/doc/${PN}/ > > + 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" > > -- > > 1.7.9.5 > > > > -- > > _______________________________________________ > > Openembedded-devel mailing list > > Openembedded-devel@lists.openembedded.org > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel > > -- > Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-oe][PATCH] iozone: update version to 414 2014-04-21 5:38 ` Huang, Jie (Jackie) @ 2014-04-21 11:46 ` Martin Jansa 2014-04-22 2:54 ` Huang, Jie (Jackie) 0 siblings, 1 reply; 5+ messages in thread From: Martin Jansa @ 2014-04-21 11:46 UTC (permalink / raw) To: openembedded-devel [-- Attachment #1: Type: text/plain, Size: 8933 bytes --] On Mon, Apr 21, 2014 at 05:38:08AM +0000, Huang, Jie (Jackie) wrote: > > > > -----Original Message----- > > From: openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel- > > bounces@lists.openembedded.org] On Behalf Of Martin Jansa > > Sent: Sunday, April 20, 2014 5:41 PM > > To: openembedded-devel@lists.openembedded.org > > Subject: Re: [oe] [meta-oe][PATCH] iozone: update version to 414 > > > > On Fri, Apr 11, 2014 at 05:56:52PM +0800, jackie.huang@windriver.com wrote: > > > From: Jackie Huang <jackie.huang@windriver.com> > > > > > > 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> > > > --- > > > .../iozone3/iozone3/fileop-arm.patch | 32 ------------ > > > .../iozone3/{iozone3_263.bb => iozone3_414.bb} | 51 +++++++++++--------- > > > 2 files changed, 27 insertions(+), 56 deletions(-) delete mode > > > 100644 meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch > > > rename meta-oe/recipes-benchmark/iozone3/{iozone3_263.bb => > > > iozone3_414.bb} (63%) > > > > > > diff --git > > > a/meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch > > > b/meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch > > > deleted file mode 100644 > > > index c71bfee..0000000 > > > --- a/meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch > > > +++ /dev/null > > > @@ -1,32 +0,0 @@ > > > -Modify makefile to compile fileop.c file for ARM architecture. > > > - > > > -Upstream-Status: Inappropriate [not author] > > > -Index: current/makefile > > > -=================================================================== > > > ---- current.orig/makefile 2006-10-14 21:42:36.000000000 +0200 > > > -+++ current/makefile 2006-10-14 21:40:02.000000000 +0200 > > > -@@ -190,9 +190,10 @@ > > > - # > > > - # GNU 'C' compiler Linux build with threads, largefiles, async I/O > > > - # > > > --linux-arm: iozone_linux-arm.o libbif.o libasync.o > > > -+linux-arm: iozone_linux-arm.o libbif.o libasync.o fileop_linux-arm.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 > > > - > > > - # > > > - # GNU 'C' compiler Linux build with threads, largefiles, async I/O > > > -@@ -725,6 +726,12 @@ > > > - @echo "" > > > - $(CC) -Wall -c -O3 $(CFLAGS) fileop.c -o fileop_linux-AMD64.o > > > - > > > -+fileop_linux-arm.o: fileop.c > > > -+ @echo "" > > > -+ @echo "Building fileop for Linux-arm" > > > -+ @echo "" > > > -+ $(CC) -Wall -c -O3 $(CFLAGS) fileop.c -o fileop_linux-arm.o > > > -+ > > > - fileop_windows.o: fileop.c > > > - @echo "" > > > - @echo "Building fileop for Windows" > > > diff --git a/meta-oe/recipes-benchmark/iozone3/iozone3_263.bb > > > b/meta-oe/recipes-benchmark/iozone3/iozone3_414.bb > > > similarity index 63% > > > rename from meta-oe/recipes-benchmark/iozone3/iozone3_263.bb > > > rename to meta-oe/recipes-benchmark/iozone3/iozone3_414.bb > > > index 9de0ac7..572d766 100644 > > > --- a/meta-oe/recipes-benchmark/iozone3/iozone3_263.bb > > > +++ b/meta-oe/recipes-benchmark/iozone3/iozone3_414.bb > > > @@ -3,46 +3,49 @@ 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=237;endline=241;md5=ab42a6185fd0443978871f11a007ac0b" > > > +LIC_FILES_CHKSUM = > > "file://iozone.c;beginline=266;endline=270;md5=ab42a6185fd0443978871f11a007ac0b" > > > > > > - > > > -SRC_URI = "http://www.iozone.org/src/current/iozone3_263.tar \ > > > +SRC_URI = "http://fossies.org/unix/privat/${BPN}_${PV}.tar.gz \ > > > > $ wget http://fossies.org/unix/privat/iozone3_414.tar.gz > > --2014-04-20 09:40:22-- > > http://fossies.org/unix/privat/iozone3_414.tar.gz > > Resolving fossies.org (fossies.org)... 78.46.58.28 Connecting to fossies.org > > (fossies.org)|78.46.58.28|:80... connected. > > HTTP request sent, awaiting response... 404 Not Found > > 2014-04-20 09:40:23 ERROR 404: Not Found. > > Sorry I didn't test the fetch since we had a local copy, fix it to: > http://www.iozone.org/src/current/${BPN}_${PV}.tar Strange that new version also has different checksums than what you were using before, but I've updated the patch in master-next, thanks for v2. > > and I will send v2 for this. > > Thanks, > Jackie > > > > > > > > file://copyright.txt \ > > > - file://fileop-arm.patch \ > > > " > > > -SRC_URI[md5sum] = "44fd88df361ec4508e10c8d6615245fa" > > > -SRC_URI[sha256sum] = > > "920fde1a3843539570e2df4aa611e74df102e52d363c5973d5a9d15bdf976461" > > > +SRC_URI[md5sum] = "85a3e292f84580a36e6c99762a459dd6" > > > +SRC_URI[sha256sum] = "f6c2fde4bfaef1ff8aaf99a315737a846886aa54751a6d9309e14fbec0cbe7a9" > > > > > > -S = "${WORKDIR}/${PN}_${PV}/src/current/" > > > +S = "${WORKDIR}/${BPN}_${PV}/src/current/" > > > > > > -EXTRA_OEMAKE_powerpc = "linux-powerpc CC='${CC}'" > > > -EXTRA_OEMAKE_powerpc64 = "linux-powerpc64 CC='${CC}'" > > > -EXTRA_OEMAKE_arm = "linux-arm CC='${CC}'" > > > -EXTRA_OEMAKE = "linux CC='${CC}'" > > > +# > > > +# 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_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/${PN}/examples > > > + ${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}/${PN}_${PV}/docs/iozone.1 ${D}${mandir}/man1/ > > > - install -m 0644 ${WORKDIR}/copyright.txt ${D}${datadir}/doc/${PN}/ > > > + 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/${PN}/examples > > > - install -m 0644 ${S}/client_list ${D}${datadir}/doc/${PN}/examples > > > - install -m 0644 ${S}/Gnuplot.txt ${D}${datadir}/doc/${PN}/examples > > > + 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/${PN}/examples > > > - install -m 0755 ${S}/gengnuplot.sh ${D}${datadir}/doc/${PN}/examples > > > - install -m 0755 ${S}/report.pl ${D}${datadir}/doc/${PN}/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}/${PN}_${PV}/docs/Iozone_ps.gz ${D}${datadir}/doc/${PN}/ > > > - install -m 0644 ${WORKDIR}/${PN}_${PV}/docs/IOzone_msword_98.pdf > > ${D}${datadir}/doc/${PN}/ > > > - install -m 0644 ${WORKDIR}/${PN}_${PV}/docs/Run_rules.doc ${D}${datadir}/doc/${PN}/ > > > + 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" > > > -- > > > 1.7.9.5 > > > > > > -- > > > _______________________________________________ > > > Openembedded-devel mailing list > > > Openembedded-devel@lists.openembedded.org > > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel > > > > -- > > Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com > -- > _______________________________________________ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-devel -- Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 205 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-oe][PATCH] iozone: update version to 414 2014-04-21 11:46 ` Martin Jansa @ 2014-04-22 2:54 ` Huang, Jie (Jackie) 0 siblings, 0 replies; 5+ messages in thread From: Huang, Jie (Jackie) @ 2014-04-22 2:54 UTC (permalink / raw) To: openembedded-devel@lists.openembedded.org > -----Original Message----- > From: openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel- > bounces@lists.openembedded.org] On Behalf Of Martin Jansa > Sent: Monday, April 21, 2014 7:46 PM > To: openembedded-devel@lists.openembedded.org > Subject: Re: [oe] [meta-oe][PATCH] iozone: update version to 414 > > On Mon, Apr 21, 2014 at 05:38:08AM +0000, Huang, Jie (Jackie) wrote: > > > > > > > -----Original Message----- > > > From: openembedded-devel-bounces@lists.openembedded.org > > > [mailto:openembedded-devel- bounces@lists.openembedded.org] On > > > Behalf Of Martin Jansa > > > Sent: Sunday, April 20, 2014 5:41 PM > > > To: openembedded-devel@lists.openembedded.org > > > Subject: Re: [oe] [meta-oe][PATCH] iozone: update version to 414 > > > > > > On Fri, Apr 11, 2014 at 05:56:52PM +0800, jackie.huang@windriver.com wrote: > > > > From: Jackie Huang <jackie.huang@windriver.com> > > > > > > > > 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> > > > > --- > > > > .../iozone3/iozone3/fileop-arm.patch | 32 ------------ > > > > .../iozone3/{iozone3_263.bb => iozone3_414.bb} | 51 +++++++++++--------- > > > > 2 files changed, 27 insertions(+), 56 deletions(-) delete mode > > > > 100644 meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch > > > > rename meta-oe/recipes-benchmark/iozone3/{iozone3_263.bb => > > > > iozone3_414.bb} (63%) > > > > > > > > diff --git > > > > a/meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch > > > > b/meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch > > > > deleted file mode 100644 > > > > index c71bfee..0000000 > > > > --- a/meta-oe/recipes-benchmark/iozone3/iozone3/fileop-arm.patch > > > > +++ /dev/null > > > > @@ -1,32 +0,0 @@ > > > > -Modify makefile to compile fileop.c file for ARM architecture. > > > > - > > > > -Upstream-Status: Inappropriate [not author] > > > > -Index: current/makefile > > > > -=================================================================== > > > > ---- current.orig/makefile 2006-10-14 21:42:36.000000000 +0200 > > > > -+++ current/makefile 2006-10-14 21:40:02.000000000 +0200 > > > > -@@ -190,9 +190,10 @@ > > > > - # > > > > - # GNU 'C' compiler Linux build with threads, largefiles, async > > > > I/O > > > > - # > > > > --linux-arm: iozone_linux-arm.o libbif.o libasync.o > > > > -+linux-arm: iozone_linux-arm.o libbif.o libasync.o fileop_linux-arm.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 > > > > - > > > > - # > > > > - # GNU 'C' compiler Linux build with threads, largefiles, async > > > > I/O -@@ -725,6 +726,12 @@ > > > > - @echo "" > > > > - $(CC) -Wall -c -O3 $(CFLAGS) fileop.c -o fileop_linux-AMD64.o > > > > - > > > > -+fileop_linux-arm.o: fileop.c > > > > -+ @echo "" > > > > -+ @echo "Building fileop for Linux-arm" > > > > -+ @echo "" > > > > -+ $(CC) -Wall -c -O3 $(CFLAGS) fileop.c -o fileop_linux-arm.o > > > > -+ > > > > - fileop_windows.o: fileop.c > > > > - @echo "" > > > > - @echo "Building fileop for Windows" > > > > diff --git a/meta-oe/recipes-benchmark/iozone3/iozone3_263.bb > > > > b/meta-oe/recipes-benchmark/iozone3/iozone3_414.bb > > > > similarity index 63% > > > > rename from meta-oe/recipes-benchmark/iozone3/iozone3_263.bb > > > > rename to meta-oe/recipes-benchmark/iozone3/iozone3_414.bb > > > > index 9de0ac7..572d766 100644 > > > > --- a/meta-oe/recipes-benchmark/iozone3/iozone3_263.bb > > > > +++ b/meta-oe/recipes-benchmark/iozone3/iozone3_414.bb > > > > @@ -3,46 +3,49 @@ 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=237;endline=241;md5=ab42a6185fd0443978871f11a007ac0b" > > > > +LIC_FILES_CHKSUM = > > > "file://iozone.c;beginline=266;endline=270;md5=ab42a6185fd0443978871f11a007ac0b" > > > > > > > > - > > > > -SRC_URI = "http://www.iozone.org/src/current/iozone3_263.tar \ > > > > +SRC_URI = "http://fossies.org/unix/privat/${BPN}_${PV}.tar.gz \ > > > > > > $ wget http://fossies.org/unix/privat/iozone3_414.tar.gz > > > --2014-04-20 09:40:22-- > > > http://fossies.org/unix/privat/iozone3_414.tar.gz > > > Resolving fossies.org (fossies.org)... 78.46.58.28 Connecting to > > > fossies.org (fossies.org)|78.46.58.28|:80... connected. > > > HTTP request sent, awaiting response... 404 Not Found > > > 2014-04-20 09:40:23 ERROR 404: Not Found. > > > > Sorry I didn't test the fetch since we had a local copy, fix it to: > > http://www.iozone.org/src/current/${BPN}_${PV}.tar > > Strange that new version also has different checksums than what you were using before, but I've It's .tar rather than .tar.gz I was using before, so the checksums are different. Thanks, Jackie > updated the patch in master-next, thanks for v2. > > > > > and I will send v2 for this. > > > > Thanks, > > Jackie > > > > > > > > > > > > file://copyright.txt \ > > > > - file://fileop-arm.patch \ > > > > " > > > > -SRC_URI[md5sum] = "44fd88df361ec4508e10c8d6615245fa" > > > > -SRC_URI[sha256sum] = > > > "920fde1a3843539570e2df4aa611e74df102e52d363c5973d5a9d15bdf976461" > > > > +SRC_URI[md5sum] = "85a3e292f84580a36e6c99762a459dd6" > > > > +SRC_URI[sha256sum] = > "f6c2fde4bfaef1ff8aaf99a315737a846886aa54751a6d9309e14fbec0cbe7a9" > > > > > > > > -S = "${WORKDIR}/${PN}_${PV}/src/current/" > > > > +S = "${WORKDIR}/${BPN}_${PV}/src/current/" > > > > > > > > -EXTRA_OEMAKE_powerpc = "linux-powerpc CC='${CC}'" > > > > -EXTRA_OEMAKE_powerpc64 = "linux-powerpc64 CC='${CC}'" > > > > -EXTRA_OEMAKE_arm = "linux-arm CC='${CC}'" > > > > -EXTRA_OEMAKE = "linux CC='${CC}'" > > > > +# > > > > +# 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_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/${PN}/examples > > > > + ${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}/${PN}_${PV}/docs/iozone.1 ${D}${mandir}/man1/ > > > > - install -m 0644 ${WORKDIR}/copyright.txt ${D}${datadir}/doc/${PN}/ > > > > + 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/${PN}/examples > > > > - install -m 0644 ${S}/client_list ${D}${datadir}/doc/${PN}/examples > > > > - install -m 0644 ${S}/Gnuplot.txt ${D}${datadir}/doc/${PN}/examples > > > > + 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/${PN}/examples > > > > - install -m 0755 ${S}/gengnuplot.sh ${D}${datadir}/doc/${PN}/examples > > > > - install -m 0755 ${S}/report.pl ${D}${datadir}/doc/${PN}/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}/${PN}_${PV}/docs/Iozone_ps.gz ${D}${datadir}/doc/${PN}/ > > > > - install -m 0644 ${WORKDIR}/${PN}_${PV}/docs/IOzone_msword_98.pdf > > > ${D}${datadir}/doc/${PN}/ > > > > - install -m 0644 ${WORKDIR}/${PN}_${PV}/docs/Run_rules.doc ${D}${datadir}/doc/${PN}/ > > > > + 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" > > > > -- > > > > 1.7.9.5 > > > > > > > > -- > > > > _______________________________________________ > > > > Openembedded-devel mailing list > > > > Openembedded-devel@lists.openembedded.org > > > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel > > > > > > -- > > > Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com > > -- > > _______________________________________________ > > Openembedded-devel mailing list > > Openembedded-devel@lists.openembedded.org > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel > > -- > Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-04-22 2:54 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-04-11 9:56 [meta-oe][PATCH] iozone: update version to 414 jackie.huang 2014-04-20 9:41 ` Martin Jansa 2014-04-21 5:38 ` Huang, Jie (Jackie) 2014-04-21 11:46 ` Martin Jansa 2014-04-22 2:54 ` Huang, Jie (Jackie)
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.