All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][meta-networking] ifenslave: add recipes
@ 2014-08-12  7:01 rongqing.li
  2014-08-12 11:51 ` Martin Jansa
  0 siblings, 1 reply; 5+ messages in thread
From: rongqing.li @ 2014-08-12  7:01 UTC (permalink / raw)
  To: openembedded-devel

From: Roy Li <rongqing.li@windriver.com>

Signed-off-by: Roy Li <rongqing.li@windriver.com>
---
 .../recipes-support/ifenslave/ifenslave_1.1.0.bb    |   19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 meta-networking/recipes-support/ifenslave/ifenslave_1.1.0.bb

diff --git a/meta-networking/recipes-support/ifenslave/ifenslave_1.1.0.bb b/meta-networking/recipes-support/ifenslave/ifenslave_1.1.0.bb
new file mode 100644
index 0000000..d6252a9
--- /dev/null
+++ b/meta-networking/recipes-support/ifenslave/ifenslave_1.1.0.bb
@@ -0,0 +1,19 @@
+SUMMARY = "Configure network interfaces for parallel routing"
+DESCRIPTION = "Configure network interfaces for parallel routing"
+HOMEPAGE = "http://www.linuxfoundation.org/collaborate/workgroups/networking/bonding"
+SECTION = "network"
+LICENSE = "GPLv2"
+
+SRC_URI = "http://ftp.debian.org/debian/pool/main/i/${BPN}-2.6/${BPN}-2.6_${PV}.orig.tar.gz"
+
+do_compile() {
+    ${CC} ifenslave.c -o ifenslave
+}
+do_install() {
+    install -d "${D}${sbindir}"
+    install -m 755 "${S}/ifenslave" "${D}${sbindir}/"
+}
+
+LIC_FILES_CHKSUM = "file://ifenslave.c;beginline=8;endline=12;md5=a9f0bd2324cdc1b36d1f44f0e643a62a"
+SRC_URI[md5sum] = "56126cd1013cefe0ce6f81613e677bdd"
+SRC_URI[sha256sum] = "7917bf34de80a2492eb225adf9168c83a4854ac8a008ed0fd5b3fd147ccd3041"
-- 
1.7.10.4



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH][meta-networking] ifenslave: add recipes
  2014-08-12  7:01 [PATCH][meta-networking] ifenslave: add recipes rongqing.li
@ 2014-08-12 11:51 ` Martin Jansa
  2014-08-12 13:55   ` Paul Eggleton
  0 siblings, 1 reply; 5+ messages in thread
From: Martin Jansa @ 2014-08-12 11:51 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1918 bytes --]

On Tue, Aug 12, 2014 at 03:01:04PM +0800, rongqing.li@windriver.com wrote:
> From: Roy Li <rongqing.li@windriver.com>
> 
> Signed-off-by: Roy Li <rongqing.li@windriver.com>
> ---
>  .../recipes-support/ifenslave/ifenslave_1.1.0.bb    |   19 +++++++++++++++++++
>  1 file changed, 19 insertions(+)
>  create mode 100644 meta-networking/recipes-support/ifenslave/ifenslave_1.1.0.bb
> 
> diff --git a/meta-networking/recipes-support/ifenslave/ifenslave_1.1.0.bb b/meta-networking/recipes-support/ifenslave/ifenslave_1.1.0.bb
> new file mode 100644
> index 0000000..d6252a9
> --- /dev/null
> +++ b/meta-networking/recipes-support/ifenslave/ifenslave_1.1.0.bb
> @@ -0,0 +1,19 @@
> +SUMMARY = "Configure network interfaces for parallel routing"

^ dropped in master-next

> +DESCRIPTION = "Configure network interfaces for parallel routing"
> +HOMEPAGE = "http://www.linuxfoundation.org/collaborate/workgroups/networking/bonding"
> +SECTION = "network"
> +LICENSE = "GPLv2"
> +
> +SRC_URI = "http://ftp.debian.org/debian/pool/main/i/${BPN}-2.6/${BPN}-2.6_${PV}.orig.tar.gz"
> +
> +do_compile() {
> +    ${CC} ifenslave.c -o ifenslave
> +}
> +do_install() {
> +    install -d "${D}${sbindir}"
> +    install -m 755 "${S}/ifenslave" "${D}${sbindir}/"
> +}
> +

^ moved next to LICENSE in master-next

> +LIC_FILES_CHKSUM = "file://ifenslave.c;beginline=8;endline=12;md5=a9f0bd2324cdc1b36d1f44f0e643a62a"
> +SRC_URI[md5sum] = "56126cd1013cefe0ce6f81613e677bdd"
> +SRC_URI[sha256sum] = "7917bf34de80a2492eb225adf9168c83a4854ac8a008ed0fd5b3fd147ccd3041"

^ moved next to SRC_URI in master-next
> -- 
> 1.7.10.4
> 
> -- 
> _______________________________________________
> 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: 188 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH][meta-networking] ifenslave: add recipes
  2014-08-12 11:51 ` Martin Jansa
@ 2014-08-12 13:55   ` Paul Eggleton
  2014-08-12 14:10     ` Martin Jansa
  0 siblings, 1 reply; 5+ messages in thread
From: Paul Eggleton @ 2014-08-12 13:55 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-devel

On Tuesday 12 August 2014 13:51:32 Martin Jansa wrote:
> On Tue, Aug 12, 2014 at 03:01:04PM +0800, rongqing.li@windriver.com wrote:
> > From: Roy Li <rongqing.li@windriver.com>
> > 
> > Signed-off-by: Roy Li <rongqing.li@windriver.com>
> > ---
> > 
> >  .../recipes-support/ifenslave/ifenslave_1.1.0.bb    |   19
> >  +++++++++++++++++++ 1 file changed, 19 insertions(+)
> >  create mode 100644
> >  meta-networking/recipes-support/ifenslave/ifenslave_1.1.0.bb> 
> > diff --git a/meta-networking/recipes-support/ifenslave/ifenslave_1.1.0.bb
> > b/meta-networking/recipes-support/ifenslave/ifenslave_1.1.0.bb new file
> > mode 100644
> > index 0000000..d6252a9
> > --- /dev/null
> > +++ b/meta-networking/recipes-support/ifenslave/ifenslave_1.1.0.bb
> > @@ -0,0 +1,19 @@
> > +SUMMARY = "Configure network interfaces for parallel routing"
> 
> ^ dropped in master-next
> 
> > +DESCRIPTION = "Configure network interfaces for parallel routing"

I guess you meant DESCRIPTION (which is the same as SUMMARY) was dropped.

> > +HOMEPAGE =
> > "http://www.linuxfoundation.org/collaborate/workgroups/networking/bonding
> > " +SECTION = "network"
> > +LICENSE = "GPLv2"
> > +
> > +SRC_URI =
> > "http://ftp.debian.org/debian/pool/main/i/${BPN}-2.6/${BPN}-2.6_${PV}.ori
> > g.tar.gz" +
> > +do_compile() {
> > +    ${CC} ifenslave.c -o ifenslave
> > +}
> > +do_install() {
> > +    install -d "${D}${sbindir}"
> > +    install -m 755 "${S}/ifenslave" "${D}${sbindir}/"
> > +}
> > +
> 
> ^ moved next to LICENSE in master-next
> 
> > +LIC_FILES_CHKSUM =
> > "file://ifenslave.c;beginline=8;endline=12;md5=a9f0bd2324cdc1b36d1f44f0e6
> > 43a62a" +SRC_URI[md5sum] = "56126cd1013cefe0ce6f81613e677bdd"

Ditto here, LIC_FILES_CHKSUM was moved, right?

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH][meta-networking] ifenslave: add recipes
  2014-08-12 13:55   ` Paul Eggleton
@ 2014-08-12 14:10     ` Martin Jansa
  2014-08-13  0:58       ` Rongqing Li
  0 siblings, 1 reply; 5+ messages in thread
From: Martin Jansa @ 2014-08-12 14:10 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2152 bytes --]

On Tue, Aug 12, 2014 at 02:55:32PM +0100, Paul Eggleton wrote:
> On Tuesday 12 August 2014 13:51:32 Martin Jansa wrote:
> > On Tue, Aug 12, 2014 at 03:01:04PM +0800, rongqing.li@windriver.com wrote:
> > > From: Roy Li <rongqing.li@windriver.com>
> > > 
> > > Signed-off-by: Roy Li <rongqing.li@windriver.com>
> > > ---
> > > 
> > >  .../recipes-support/ifenslave/ifenslave_1.1.0.bb    |   19
> > >  +++++++++++++++++++ 1 file changed, 19 insertions(+)
> > >  create mode 100644
> > >  meta-networking/recipes-support/ifenslave/ifenslave_1.1.0.bb> 
> > > diff --git a/meta-networking/recipes-support/ifenslave/ifenslave_1.1.0.bb
> > > b/meta-networking/recipes-support/ifenslave/ifenslave_1.1.0.bb new file
> > > mode 100644
> > > index 0000000..d6252a9
> > > --- /dev/null
> > > +++ b/meta-networking/recipes-support/ifenslave/ifenslave_1.1.0.bb
> > > @@ -0,0 +1,19 @@
> > > +SUMMARY = "Configure network interfaces for parallel routing"
> > 
> > ^ dropped in master-next
> > 
> > > +DESCRIPTION = "Configure network interfaces for parallel routing"
> 
> I guess you meant DESCRIPTION (which is the same as SUMMARY) was dropped.
> 
> > > +HOMEPAGE =
> > > "http://www.linuxfoundation.org/collaborate/workgroups/networking/bonding
> > > " +SECTION = "network"
> > > +LICENSE = "GPLv2"
> > > +
> > > +SRC_URI =
> > > "http://ftp.debian.org/debian/pool/main/i/${BPN}-2.6/${BPN}-2.6_${PV}.ori
> > > g.tar.gz" +
> > > +do_compile() {
> > > +    ${CC} ifenslave.c -o ifenslave
> > > +}
> > > +do_install() {
> > > +    install -d "${D}${sbindir}"
> > > +    install -m 755 "${S}/ifenslave" "${D}${sbindir}/"
> > > +}
> > > +
> > 
> > ^ moved next to LICENSE in master-next
> > 
> > > +LIC_FILES_CHKSUM =
> > > "file://ifenslave.c;beginline=8;endline=12;md5=a9f0bd2324cdc1b36d1f44f0e6
> > > 43a62a" +SRC_URI[md5sum] = "56126cd1013cefe0ce6f81613e677bdd"
> 
> Ditto here, LIC_FILES_CHKSUM was moved, right?

Right for both of them, for some reason, my vim/screen got confused and
all my edits were shown on different line, sorry for confusion.

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH][meta-networking] ifenslave: add recipes
  2014-08-12 14:10     ` Martin Jansa
@ 2014-08-13  0:58       ` Rongqing Li
  0 siblings, 0 replies; 5+ messages in thread
From: Rongqing Li @ 2014-08-13  0:58 UTC (permalink / raw)
  To: Martin Jansa; +Cc: Paul Eggleton, openembedded-devel



On 08/12/2014 10:10 PM, Martin Jansa wrote:
>>> > > >+DESCRIPTION = "Configure network interfaces for parallel routing"
>>
>>I guess you meant DESCRIPTION (which is the same as SUMMARY) was dropped.
>>


Thanks for your work

-Roy
-- 
Best Reagrds,
Roy | RongQing Li


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-08-13  0:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-12  7:01 [PATCH][meta-networking] ifenslave: add recipes rongqing.li
2014-08-12 11:51 ` Martin Jansa
2014-08-12 13:55   ` Paul Eggleton
2014-08-12 14:10     ` Martin Jansa
2014-08-13  0:58       ` Rongqing Li

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.