* [PATCH] iperf: Update to version 2.0.5
@ 2012-10-05 6:50 Franklin S. Cooper Jr
2012-10-05 12:38 ` Maupin, Chase
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Franklin S. Cooper Jr @ 2012-10-05 6:50 UTC (permalink / raw)
To: meta-arago
* Upgrading to newer version of iperf.
* Newer versions of iperf reduced CPU load thus increasing performance in
wl12xx tests.
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../recipes-benchmark/iperf/iperf_2.0.5.bb | 34 ++++++++++++++++++++
1 files changed, 34 insertions(+), 0 deletions(-)
create mode 100644 meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb
diff --git a/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb
new file mode 100644
index 0000000..aff06b2
--- /dev/null
+++ b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb
@@ -0,0 +1,34 @@
+DESCRIPTION = "Iperf is a tool to measure maximum TCP bandwidth, allowing the tuning of various parameters and UDP characteristics"
+HOMEPAGE = "http://dast.nlanr.net/Projects/Iperf/"
+SECTION = "console/network"
+LICENSE = "NewBSD"
+LIC_FILES_CHKSUM = "file://COPYING;md5=e8478eae9f479e39bc34975193360298"
+
+SRC_URI = " ${SOURCEFORGE_MIRROR}/iperf/iperf-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "44b5536b67719f4250faed632a3cd016"
+SRC_URI[sha256sum] = "636b4eff0431cea80667ea85a67ce4c68698760a9837e1e9d13096d20362265b"
+
+PR = "r0"
+
+inherit autotools
+
+S="${WORKDIR}/iperf-${PV}"
+
+EXTRA_OECONF = "--exec-prefix=${STAGING_DIR_HOST}${layout_exec_prefix}"
+
+do_configure() {
+ export ac_cv_func_malloc_0_nonnull=yes
+ gnu-configize
+ oe_runconf
+}
+
+do_compile() {
+ cd ${WORKDIR}/iperf-${PV}
+ oe_runmake
+}
+
+do_install() {
+ cd ${WORKDIR}/iperf-${PV}/src
+ oe_runmake DESTDIR=${D} install
+}
--
1.7.0.4
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH] iperf: Update to version 2.0.5 2012-10-05 6:50 [PATCH] iperf: Update to version 2.0.5 Franklin S. Cooper Jr @ 2012-10-05 12:38 ` Maupin, Chase 2012-10-05 16:32 ` Denys Dmytriyenko 2012-10-05 16:37 ` Denys Dmytriyenko 2012-10-05 16:58 ` Denys Dmytriyenko 2 siblings, 1 reply; 8+ messages in thread From: Maupin, Chase @ 2012-10-05 12:38 UTC (permalink / raw) To: Franklin S. Cooper Jr, meta-arago@arago-project.org This needs to be submitted to oe-core (I didn't notice it there but maybe I missed it). Then please note in the commit log if not as a comment in the recipe itself that it can be removed later when we switch to a new maintenance branch that has this version. > -----Original Message----- > From: meta-arago-bounces@arago-project.org [mailto:meta-arago- > bounces@arago-project.org] On Behalf Of Franklin S. Cooper Jr > Sent: Friday, October 05, 2012 1:50 AM > To: meta-arago@arago-project.org > Subject: [meta-arago] [PATCH] iperf: Update to version 2.0.5 > > * Upgrading to newer version of iperf. > * Newer versions of iperf reduced CPU load thus increasing > performance in > wl12xx tests. > > Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com> > --- > .../recipes-benchmark/iperf/iperf_2.0.5.bb | 34 > ++++++++++++++++++++ > 1 files changed, 34 insertions(+), 0 deletions(-) > create mode 100644 meta-arago-extras/recipes- > benchmark/iperf/iperf_2.0.5.bb > > diff --git a/meta-arago-extras/recipes- > benchmark/iperf/iperf_2.0.5.bb b/meta-arago-extras/recipes- > benchmark/iperf/iperf_2.0.5.bb > new file mode 100644 > index 0000000..aff06b2 > --- /dev/null > +++ b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb > @@ -0,0 +1,34 @@ > +DESCRIPTION = "Iperf is a tool to measure maximum TCP bandwidth, > allowing the tuning of various parameters and UDP > characteristics" > +HOMEPAGE = "http://dast.nlanr.net/Projects/Iperf/" > +SECTION = "console/network" > +LICENSE = "NewBSD" > +LIC_FILES_CHKSUM = > "file://COPYING;md5=e8478eae9f479e39bc34975193360298" > + > +SRC_URI = " ${SOURCEFORGE_MIRROR}/iperf/iperf-${PV}.tar.gz" > + > +SRC_URI[md5sum] = "44b5536b67719f4250faed632a3cd016" > +SRC_URI[sha256sum] = > "636b4eff0431cea80667ea85a67ce4c68698760a9837e1e9d13096d20362265b > " > + > +PR = "r0" > + > +inherit autotools > + > +S="${WORKDIR}/iperf-${PV}" > + > +EXTRA_OECONF = "--exec- > prefix=${STAGING_DIR_HOST}${layout_exec_prefix}" > + > +do_configure() { > + export ac_cv_func_malloc_0_nonnull=yes > + gnu-configize > + oe_runconf > +} > + > +do_compile() { > + cd ${WORKDIR}/iperf-${PV} > + oe_runmake > +} > + > +do_install() { > + cd ${WORKDIR}/iperf-${PV}/src > + oe_runmake DESTDIR=${D} install > +} > -- > 1.7.0.4 > > _______________________________________________ > meta-arago mailing list > meta-arago@arago-project.org > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] iperf: Update to version 2.0.5 2012-10-05 12:38 ` Maupin, Chase @ 2012-10-05 16:32 ` Denys Dmytriyenko 0 siblings, 0 replies; 8+ messages in thread From: Denys Dmytriyenko @ 2012-10-05 16:32 UTC (permalink / raw) To: Maupin, Chase; +Cc: meta-arago@arago-project.org On Fri, Oct 05, 2012 at 12:38:57PM +0000, Maupin, Chase wrote: > This needs to be submitted to oe-core (I didn't notice it there but maybe I > missed it). This is not in oe-core, but rather in meta-oe, which has 2.0.4. Updating to 2.0.5 there shouldn't be a problem... > Then please note in the commit log if not as a comment in the recipe itself > that it can be removed later when we switch to a new maintenance branch that > has this version. > > > -----Original Message----- > > From: meta-arago-bounces@arago-project.org [mailto:meta-arago- > > bounces@arago-project.org] On Behalf Of Franklin S. Cooper Jr > > Sent: Friday, October 05, 2012 1:50 AM > > To: meta-arago@arago-project.org > > Subject: [meta-arago] [PATCH] iperf: Update to version 2.0.5 > > > > * Upgrading to newer version of iperf. > > * Newer versions of iperf reduced CPU load thus increasing > > performance in > > wl12xx tests. > > > > Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com> > > --- > > .../recipes-benchmark/iperf/iperf_2.0.5.bb | 34 > > ++++++++++++++++++++ > > 1 files changed, 34 insertions(+), 0 deletions(-) > > create mode 100644 meta-arago-extras/recipes- > > benchmark/iperf/iperf_2.0.5.bb > > > > diff --git a/meta-arago-extras/recipes- > > benchmark/iperf/iperf_2.0.5.bb b/meta-arago-extras/recipes- > > benchmark/iperf/iperf_2.0.5.bb > > new file mode 100644 > > index 0000000..aff06b2 > > --- /dev/null > > +++ b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb > > @@ -0,0 +1,34 @@ > > +DESCRIPTION = "Iperf is a tool to measure maximum TCP bandwidth, > > allowing the tuning of various parameters and UDP > > characteristics" > > +HOMEPAGE = "http://dast.nlanr.net/Projects/Iperf/" > > +SECTION = "console/network" > > +LICENSE = "NewBSD" > > +LIC_FILES_CHKSUM = > > "file://COPYING;md5=e8478eae9f479e39bc34975193360298" > > + > > +SRC_URI = " ${SOURCEFORGE_MIRROR}/iperf/iperf-${PV}.tar.gz" > > + > > +SRC_URI[md5sum] = "44b5536b67719f4250faed632a3cd016" > > +SRC_URI[sha256sum] = > > "636b4eff0431cea80667ea85a67ce4c68698760a9837e1e9d13096d20362265b > > " > > + > > +PR = "r0" > > + > > +inherit autotools > > + > > +S="${WORKDIR}/iperf-${PV}" > > + > > +EXTRA_OECONF = "--exec- > > prefix=${STAGING_DIR_HOST}${layout_exec_prefix}" > > + > > +do_configure() { > > + export ac_cv_func_malloc_0_nonnull=yes > > + gnu-configize > > + oe_runconf > > +} > > + > > +do_compile() { > > + cd ${WORKDIR}/iperf-${PV} > > + oe_runmake > > +} > > + > > +do_install() { > > + cd ${WORKDIR}/iperf-${PV}/src > > + oe_runmake DESTDIR=${D} install > > +} > > -- > > 1.7.0.4 > > > > _______________________________________________ > > meta-arago mailing list > > meta-arago@arago-project.org > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago > _______________________________________________ > meta-arago mailing list > meta-arago@arago-project.org > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] iperf: Update to version 2.0.5 2012-10-05 6:50 [PATCH] iperf: Update to version 2.0.5 Franklin S. Cooper Jr 2012-10-05 12:38 ` Maupin, Chase @ 2012-10-05 16:37 ` Denys Dmytriyenko 2012-10-05 16:58 ` Denys Dmytriyenko 2 siblings, 0 replies; 8+ messages in thread From: Denys Dmytriyenko @ 2012-10-05 16:37 UTC (permalink / raw) To: Franklin S. Cooper Jr; +Cc: meta-arago On Fri, Oct 05, 2012 at 01:50:08AM -0500, Franklin S. Cooper Jr wrote: > * Upgrading to newer version of iperf. > * Newer versions of iperf reduced CPU load thus increasing performance in > wl12xx tests. I know this recipe is mostly the same as the copy from meta-oe, just with updated version, but it can be cleaned up in several places... I guess I'll try submitting it for meta-oe then. -- Denys > Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com> > --- > .../recipes-benchmark/iperf/iperf_2.0.5.bb | 34 ++++++++++++++++++++ > 1 files changed, 34 insertions(+), 0 deletions(-) > create mode 100644 meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb > > diff --git a/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb > new file mode 100644 > index 0000000..aff06b2 > --- /dev/null > +++ b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb > @@ -0,0 +1,34 @@ > +DESCRIPTION = "Iperf is a tool to measure maximum TCP bandwidth, allowing the tuning of various parameters and UDP characteristics" > +HOMEPAGE = "http://dast.nlanr.net/Projects/Iperf/" > +SECTION = "console/network" > +LICENSE = "NewBSD" > +LIC_FILES_CHKSUM = "file://COPYING;md5=e8478eae9f479e39bc34975193360298" > + > +SRC_URI = " ${SOURCEFORGE_MIRROR}/iperf/iperf-${PV}.tar.gz" > + > +SRC_URI[md5sum] = "44b5536b67719f4250faed632a3cd016" > +SRC_URI[sha256sum] = "636b4eff0431cea80667ea85a67ce4c68698760a9837e1e9d13096d20362265b" > + > +PR = "r0" > + > +inherit autotools > + > +S="${WORKDIR}/iperf-${PV}" > + > +EXTRA_OECONF = "--exec-prefix=${STAGING_DIR_HOST}${layout_exec_prefix}" > + > +do_configure() { > + export ac_cv_func_malloc_0_nonnull=yes > + gnu-configize > + oe_runconf > +} > + > +do_compile() { > + cd ${WORKDIR}/iperf-${PV} > + oe_runmake > +} > + > +do_install() { > + cd ${WORKDIR}/iperf-${PV}/src > + oe_runmake DESTDIR=${D} install > +} > -- > 1.7.0.4 > > _______________________________________________ > meta-arago mailing list > meta-arago@arago-project.org > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] iperf: Update to version 2.0.5 2012-10-05 6:50 [PATCH] iperf: Update to version 2.0.5 Franklin S. Cooper Jr 2012-10-05 12:38 ` Maupin, Chase 2012-10-05 16:37 ` Denys Dmytriyenko @ 2012-10-05 16:58 ` Denys Dmytriyenko 2012-10-05 17:20 ` Cooper Jr., Franklin 2 siblings, 1 reply; 8+ messages in thread From: Denys Dmytriyenko @ 2012-10-05 16:58 UTC (permalink / raw) To: Franklin S. Cooper Jr; +Cc: meta-arago On Fri, Oct 05, 2012 at 01:50:08AM -0500, Franklin S. Cooper Jr wrote: > * Upgrading to newer version of iperf. > * Newer versions of iperf reduced CPU load thus increasing performance in > wl12xx tests. And one more question - sorry for separate emails. > Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com> > --- > .../recipes-benchmark/iperf/iperf_2.0.5.bb | 34 ++++++++++++++++++++ > 1 files changed, 34 insertions(+), 0 deletions(-) > create mode 100644 meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb > > diff --git a/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb > new file mode 100644 > index 0000000..aff06b2 > --- /dev/null > +++ b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb > @@ -0,0 +1,34 @@ > +DESCRIPTION = "Iperf is a tool to measure maximum TCP bandwidth, allowing the tuning of various parameters and UDP characteristics" > +HOMEPAGE = "http://dast.nlanr.net/Projects/Iperf/" > +SECTION = "console/network" > +LICENSE = "NewBSD" > +LIC_FILES_CHKSUM = "file://COPYING;md5=e8478eae9f479e39bc34975193360298" > + > +SRC_URI = " ${SOURCEFORGE_MIRROR}/iperf/iperf-${PV}.tar.gz" You dropped all the other patches that were part of 2.0.4 - did you verify they are already there in 2.0.5 tree or they no longer needed? -- Denys > + > +SRC_URI[md5sum] = "44b5536b67719f4250faed632a3cd016" > +SRC_URI[sha256sum] = "636b4eff0431cea80667ea85a67ce4c68698760a9837e1e9d13096d20362265b" > + > +PR = "r0" > + > +inherit autotools > + > +S="${WORKDIR}/iperf-${PV}" > + > +EXTRA_OECONF = "--exec-prefix=${STAGING_DIR_HOST}${layout_exec_prefix}" > + > +do_configure() { > + export ac_cv_func_malloc_0_nonnull=yes > + gnu-configize > + oe_runconf > +} > + > +do_compile() { > + cd ${WORKDIR}/iperf-${PV} > + oe_runmake > +} > + > +do_install() { > + cd ${WORKDIR}/iperf-${PV}/src > + oe_runmake DESTDIR=${D} install > +} > -- > 1.7.0.4 > > _______________________________________________ > meta-arago mailing list > meta-arago@arago-project.org > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] iperf: Update to version 2.0.5 2012-10-05 16:58 ` Denys Dmytriyenko @ 2012-10-05 17:20 ` Cooper Jr., Franklin 2012-10-05 17:22 ` Denys Dmytriyenko 0 siblings, 1 reply; 8+ messages in thread From: Cooper Jr., Franklin @ 2012-10-05 17:20 UTC (permalink / raw) To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org Original recipe didn't use the patches from 2.0.4 I didn't check if it didn't apply or not. On Oct 5, 2012, at 11:59 AM, "Dmytriyenko, Denys" <denys@ti.com> wrote: > On Fri, Oct 05, 2012 at 01:50:08AM -0500, Franklin S. Cooper Jr wrote: >> * Upgrading to newer version of iperf. >> * Newer versions of iperf reduced CPU load thus increasing performance in >> wl12xx tests. > > And one more question - sorry for separate emails. > > >> Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com> >> --- >> .../recipes-benchmark/iperf/iperf_2.0.5.bb | 34 ++++++++++++++++++++ >> 1 files changed, 34 insertions(+), 0 deletions(-) >> create mode 100644 meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb >> >> diff --git a/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb >> new file mode 100644 >> index 0000000..aff06b2 >> --- /dev/null >> +++ b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb >> @@ -0,0 +1,34 @@ >> +DESCRIPTION = "Iperf is a tool to measure maximum TCP bandwidth, allowing the tuning of various parameters and UDP characteristics" >> +HOMEPAGE = "http://dast.nlanr.net/Projects/Iperf/" >> +SECTION = "console/network" >> +LICENSE = "NewBSD" >> +LIC_FILES_CHKSUM = "file://COPYING;md5=e8478eae9f479e39bc34975193360298" >> + >> +SRC_URI = " ${SOURCEFORGE_MIRROR}/iperf/iperf-${PV}.tar.gz" > > You dropped all the other patches that were part of 2.0.4 - did you verify > they are already there in 2.0.5 tree or they no longer needed? > > -- > Denys > > >> + >> +SRC_URI[md5sum] = "44b5536b67719f4250faed632a3cd016" >> +SRC_URI[sha256sum] = "636b4eff0431cea80667ea85a67ce4c68698760a9837e1e9d13096d20362265b" >> + >> +PR = "r0" >> + >> +inherit autotools >> + >> +S="${WORKDIR}/iperf-${PV}" >> + >> +EXTRA_OECONF = "--exec-prefix=${STAGING_DIR_HOST}${layout_exec_prefix}" >> + >> +do_configure() { >> + export ac_cv_func_malloc_0_nonnull=yes >> + gnu-configize >> + oe_runconf >> +} >> + >> +do_compile() { >> + cd ${WORKDIR}/iperf-${PV} >> + oe_runmake >> +} >> + >> +do_install() { >> + cd ${WORKDIR}/iperf-${PV}/src >> + oe_runmake DESTDIR=${D} install >> +} >> -- >> 1.7.0.4 >> >> _______________________________________________ >> meta-arago mailing list >> meta-arago@arago-project.org >> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago > _______________________________________________ > meta-arago mailing list > meta-arago@arago-project.org > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] iperf: Update to version 2.0.5 2012-10-05 17:20 ` Cooper Jr., Franklin @ 2012-10-05 17:22 ` Denys Dmytriyenko 2012-10-06 18:49 ` Cooper Jr., Franklin 0 siblings, 1 reply; 8+ messages in thread From: Denys Dmytriyenko @ 2012-10-05 17:22 UTC (permalink / raw) To: Cooper Jr., Franklin; +Cc: meta-arago@arago-project.org On Fri, Oct 05, 2012 at 05:20:09PM +0000, Cooper Jr., Franklin wrote: > Original recipe didn't use the patches from 2.0.4 I didn't check if it didn't apply or not. Huh? http://cgit.openembedded.org/meta-openembedded/tree/meta-oe/recipes-benchmark/iperf/iperf_2.0.4.bb > On Oct 5, 2012, at 11:59 AM, "Dmytriyenko, Denys" <denys@ti.com> wrote: > > > On Fri, Oct 05, 2012 at 01:50:08AM -0500, Franklin S. Cooper Jr wrote: > >> * Upgrading to newer version of iperf. > >> * Newer versions of iperf reduced CPU load thus increasing performance in > >> wl12xx tests. > > > > And one more question - sorry for separate emails. > > > > > >> Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com> > >> --- > >> .../recipes-benchmark/iperf/iperf_2.0.5.bb | 34 ++++++++++++++++++++ > >> 1 files changed, 34 insertions(+), 0 deletions(-) > >> create mode 100644 meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb > >> > >> diff --git a/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb > >> new file mode 100644 > >> index 0000000..aff06b2 > >> --- /dev/null > >> +++ b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb > >> @@ -0,0 +1,34 @@ > >> +DESCRIPTION = "Iperf is a tool to measure maximum TCP bandwidth, allowing the tuning of various parameters and UDP characteristics" > >> +HOMEPAGE = "http://dast.nlanr.net/Projects/Iperf/" > >> +SECTION = "console/network" > >> +LICENSE = "NewBSD" > >> +LIC_FILES_CHKSUM = "file://COPYING;md5=e8478eae9f479e39bc34975193360298" > >> + > >> +SRC_URI = " ${SOURCEFORGE_MIRROR}/iperf/iperf-${PV}.tar.gz" > > > > You dropped all the other patches that were part of 2.0.4 - did you verify > > they are already there in 2.0.5 tree or they no longer needed? > > > > -- > > Denys > > > > > >> + > >> +SRC_URI[md5sum] = "44b5536b67719f4250faed632a3cd016" > >> +SRC_URI[sha256sum] = "636b4eff0431cea80667ea85a67ce4c68698760a9837e1e9d13096d20362265b" > >> + > >> +PR = "r0" > >> + > >> +inherit autotools > >> + > >> +S="${WORKDIR}/iperf-${PV}" > >> + > >> +EXTRA_OECONF = "--exec-prefix=${STAGING_DIR_HOST}${layout_exec_prefix}" > >> + > >> +do_configure() { > >> + export ac_cv_func_malloc_0_nonnull=yes > >> + gnu-configize > >> + oe_runconf > >> +} > >> + > >> +do_compile() { > >> + cd ${WORKDIR}/iperf-${PV} > >> + oe_runmake > >> +} > >> + > >> +do_install() { > >> + cd ${WORKDIR}/iperf-${PV}/src > >> + oe_runmake DESTDIR=${D} install > >> +} > >> -- > >> 1.7.0.4 > >> > >> _______________________________________________ > >> meta-arago mailing list > >> meta-arago@arago-project.org > >> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago > > _______________________________________________ > > meta-arago mailing list > > meta-arago@arago-project.org > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago > _______________________________________________ > meta-arago mailing list > meta-arago@arago-project.org > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] iperf: Update to version 2.0.5 2012-10-05 17:22 ` Denys Dmytriyenko @ 2012-10-06 18:49 ` Cooper Jr., Franklin 0 siblings, 0 replies; 8+ messages in thread From: Cooper Jr., Franklin @ 2012-10-06 18:49 UTC (permalink / raw) To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org Sent the below message to only Denys. Didn't realize I didn't copy the entire list. Anyway. I will be sending a version 2 of this iperf patch and also sending a patch to meta-oe. -----Original Message----- From: Cooper Jr., Franklin Sent: Friday, October 05, 2012 12:42 PM To: Dmytriyenko, Denys Subject: Re: [meta-arago] [PATCH] iperf: Update to version 2.0.5 I was referring to this recipe which I ported from arago. This recipe didn't have the patches the the meta-oe 2.0.4 version included. http://arago-project.org/git/?p=arago.git;a=blob;f=recipes/iperf/iperf_2.0.5.bb;h=63f23262dda0284f01f1a76105dec606b46fbc8c;hb=HEAD Most likely I will send a v2 if those patches from meta-oe are still needed -----Original Message----- From: Dmytriyenko, Denys Sent: Friday, October 05, 2012 12:22 PM To: Cooper Jr., Franklin Cc: Dmytriyenko, Denys; meta-arago@arago-project.org Subject: Re: [meta-arago] [PATCH] iperf: Update to version 2.0.5 On Fri, Oct 05, 2012 at 05:20:09PM +0000, Cooper Jr., Franklin wrote: > Original recipe didn't use the patches from 2.0.4 I didn't check if it didn't apply or not. Huh? http://cgit.openembedded.org/meta-openembedded/tree/meta-oe/recipes-benchmark/iperf/iperf_2.0.4.bb > On Oct 5, 2012, at 11:59 AM, "Dmytriyenko, Denys" <denys@ti.com> wrote: > > > On Fri, Oct 05, 2012 at 01:50:08AM -0500, Franklin S. Cooper Jr wrote: > >> * Upgrading to newer version of iperf. > >> * Newer versions of iperf reduced CPU load thus increasing > >> performance in wl12xx tests. > > > > And one more question - sorry for separate emails. > > > > > >> Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com> > >> --- > >> .../recipes-benchmark/iperf/iperf_2.0.5.bb | 34 ++++++++++++++++++++ > >> 1 files changed, 34 insertions(+), 0 deletions(-) create mode > >> 100644 meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb > >> > >> diff --git > >> a/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb > >> b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb > >> new file mode 100644 > >> index 0000000..aff06b2 > >> --- /dev/null > >> +++ b/meta-arago-extras/recipes-benchmark/iperf/iperf_2.0.5.bb > >> @@ -0,0 +1,34 @@ > >> +DESCRIPTION = "Iperf is a tool to measure maximum TCP bandwidth, allowing the tuning of various parameters and UDP characteristics" > >> +HOMEPAGE = "http://dast.nlanr.net/Projects/Iperf/" > >> +SECTION = "console/network" > >> +LICENSE = "NewBSD" > >> +LIC_FILES_CHKSUM = "file://COPYING;md5=e8478eae9f479e39bc34975193360298" > >> + > >> +SRC_URI = " ${SOURCEFORGE_MIRROR}/iperf/iperf-${PV}.tar.gz" > > > > You dropped all the other patches that were part of 2.0.4 - did you > > verify they are already there in 2.0.5 tree or they no longer needed? > > > > -- > > Denys > > > > > >> + > >> +SRC_URI[md5sum] = "44b5536b67719f4250faed632a3cd016" > >> +SRC_URI[sha256sum] = "636b4eff0431cea80667ea85a67ce4c68698760a9837e1e9d13096d20362265b" > >> + > >> +PR = "r0" > >> + > >> +inherit autotools > >> + > >> +S="${WORKDIR}/iperf-${PV}" > >> + > >> +EXTRA_OECONF = "--exec-prefix=${STAGING_DIR_HOST}${layout_exec_prefix}" > >> + > >> +do_configure() { > >> + export ac_cv_func_malloc_0_nonnull=yes > >> + gnu-configize > >> + oe_runconf > >> +} > >> + > >> +do_compile() { > >> + cd ${WORKDIR}/iperf-${PV} > >> + oe_runmake > >> +} > >> + > >> +do_install() { > >> + cd ${WORKDIR}/iperf-${PV}/src > >> + oe_runmake DESTDIR=${D} install } > >> -- > >> 1.7.0.4 > >> > >> _______________________________________________ > >> meta-arago mailing list > >> meta-arago@arago-project.org > >> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago > > _______________________________________________ > > meta-arago mailing list > > meta-arago@arago-project.org > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago > _______________________________________________ > meta-arago mailing list > meta-arago@arago-project.org > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago > ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2012-10-06 18:49 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-10-05 6:50 [PATCH] iperf: Update to version 2.0.5 Franklin S. Cooper Jr 2012-10-05 12:38 ` Maupin, Chase 2012-10-05 16:32 ` Denys Dmytriyenko 2012-10-05 16:37 ` Denys Dmytriyenko 2012-10-05 16:58 ` Denys Dmytriyenko 2012-10-05 17:20 ` Cooper Jr., Franklin 2012-10-05 17:22 ` Denys Dmytriyenko 2012-10-06 18:49 ` Cooper Jr., Franklin
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.