All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-virtulization] [PATCH] irqbalance: Uprev to 1.0.6
@ 2013-08-26 21:27 Yang Shi
  2013-08-27  7:32 ` David Nyström
  0 siblings, 1 reply; 5+ messages in thread
From: Yang Shi @ 2013-08-26 21:27 UTC (permalink / raw)
  To: yocto

Add recipe for 1.0.6 version. And, add status and reload commands into
init script.

Signed-off-by: Yang Shi <yang.shi@windriver.com>
---
 ...irqbalance-Add-status-and-reload-commands.patch |   55 ++++++++++++++++++++
 recipes-extended/irqbalance/irqbalance_1.0.6.bb    |   15 +++++
 2 files changed, 70 insertions(+), 0 deletions(-)
 create mode 100644 recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload-commands.patch
 create mode 100644 recipes-extended/irqbalance/irqbalance_1.0.6.bb

diff --git a/recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload-commands.patch b/recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload-commands.patch
new file mode 100644
index 0000000..d853d0b
--- /dev/null
+++ b/recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload-commands.patch
@@ -0,0 +1,55 @@
+From dc7366896dd5a5bae82be4b11530bc9fdb7cbcdd Mon Sep 17 00:00:00 2001
+From: Yang Shi <yang.shi@windriver.com>
+Date: Mon, 26 Aug 2013 10:58:02 -0700
+Subject: [PATCH] irqbalance: Add status and reload commands
+
+Add status and reload commands for irqbalanced init script
+
+Signed-off-by: Yang Shi <yang.shi@windriver.com>
+---
+ irqbalance.init |   12 +++++++++---
+ 1 files changed, 9 insertions(+), 3 deletions(-)
+
+diff --git a/irqbalance.init b/irqbalance.init
+index d12d62c..f58bf55 100644
+--- a/irqbalance.init
++++ b/irqbalance.init
+@@ -1,6 +1,6 @@
+ #!/bin/sh
+ #
+-# Copyright (c) 2012 Wind River Systems, Inc.
++# Copyright (c) 2013 Wind River Systems, Inc.
+ #
+ ### BEGIN INIT INFO
+ # Provides:             irqbalance
+@@ -11,6 +11,8 @@
+ # Short-Description:    IRQ allocation daemon
+ ### END INIT INFO
+ 
++. /etc/init.d/functions
++
+ case "$1" in
+   start)
+ 	echo -n "Starting irqbalance: "
+@@ -22,12 +24,16 @@ case "$1" in
+ 	start-stop-daemon -K -n irqbalance
+ 	echo "done"
+ 	;;
+-  restart)
++  restart|reload)
+ 	$0 stop
+ 	$0 start
+ 	;;
++  status)
++	status irqbalance
++	echo "done"
++	;;
+   *)
+-	echo "Usage: $0 {start | stop | restart}" >&2
++	echo "Usage: $0 {start | stop | restart | reload | status}" >&2
+ 	exit 1
+ 	;;
+ esac
+-- 
+1.7.5.4
+
diff --git a/recipes-extended/irqbalance/irqbalance_1.0.6.bb b/recipes-extended/irqbalance/irqbalance_1.0.6.bb
new file mode 100644
index 0000000..fd08b73
--- /dev/null
+++ b/recipes-extended/irqbalance/irqbalance_1.0.6.bb
@@ -0,0 +1,15 @@
+#
+# Copyright (C) 2013 Wind River Systems, Inc.
+#
+
+require irqbalance.inc
+
+PR = "r0"
+
+SRC_URI[md5sum] = "b73b1a5a9e1c3c428ae39024c711e41e"
+SRC_URI[sha256sum] = "95ac79992e6de501f613c781b0fc8aa17a4aaf6a3d865bb6e15ac6a46c6ab1fd"
+
+SRC_URI = "http://irqbalance.googlecode.com/files/irqbalance-${PV}.tar.gz \
+           file://add-initscript.patch \
+           file://irqbalance-Add-status-and-reload-commands.patch \
+          "
-- 
1.7.5.4



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

* Re: [meta-virtulization] [PATCH] irqbalance: Uprev to 1.0.6
  2013-08-26 21:27 [meta-virtulization] [PATCH] irqbalance: Uprev to 1.0.6 Yang Shi
@ 2013-08-27  7:32 ` David Nyström
  2013-08-27  8:33   ` Paul Eggleton
  0 siblings, 1 reply; 5+ messages in thread
From: David Nyström @ 2013-08-27  7:32 UTC (permalink / raw)
  To: Yang Shi; +Cc: yocto


On Mon 26 Aug 2013 11:27:30 PM CEST, Yang Shi wrote:
> Add recipe for 1.0.6 version. And, add status and reload commands into
> init script.
>
> Signed-off-by: Yang Shi <yang.shi@windriver.com>
> ---
>   ...irqbalance-Add-status-and-reload-commands.patch |   55 ++++++++++++++++++++
>   recipes-extended/irqbalance/irqbalance_1.0.6.bb    |   15 +++++
>   2 files changed, 70 insertions(+), 0 deletions(-)
>   create mode 100644 recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload-commands.patch
>   create mode 100644 recipes-extended/irqbalance/irqbalance_1.0.6.bb
>
> diff --git a/recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload-commands.patch b/recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload-commands.patch
> new file mode 100644
> index 0000000..d853d0b
> --- /dev/null
> +++ b/recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload-commands.patch
> @@ -0,0 +1,55 @@
> +From dc7366896dd5a5bae82be4b11530bc9fdb7cbcdd Mon Sep 17 00:00:00 2001
> +From: Yang Shi <yang.shi@windriver.com>
> +Date: Mon, 26 Aug 2013 10:58:02 -0700
> +Subject: [PATCH] irqbalance: Add status and reload commands
> +
> +Add status and reload commands for irqbalanced init script
> +
> +Signed-off-by: Yang Shi <yang.shi@windriver.com>
> +---
> + irqbalance.init |   12 +++++++++---
> + 1 files changed, 9 insertions(+), 3 deletions(-)
> +
> +diff --git a/irqbalance.init b/irqbalance.init
> +index d12d62c..f58bf55 100644
> +--- a/irqbalance.init
> ++++ b/irqbalance.init
> +@@ -1,6 +1,6 @@
> + #!/bin/sh
> + #
> +-# Copyright (c) 2012 Wind River Systems, Inc.
> ++# Copyright (c) 2013 Wind River Systems, Inc

What is this ?, as far as I understand it, the script + recipe is 
proprietary licensed to windriver.

I see the windriver copyright notice was introduced with commit: 
43b438f06897a390e16709b3f9e11355f325e2e9
I seem to remember that we agreed that all contents of 
meta-virtualization should be MIT.

Also, patches for meta-virtualization should be sent to the 
meta-virtualization mailinglist.

Br,
David


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

* Re: [meta-virtulization] [PATCH] irqbalance: Uprev to 1.0.6
  2013-08-27  7:32 ` David Nyström
@ 2013-08-27  8:33   ` Paul Eggleton
  2013-08-27 12:42     ` Bruce Ashfield
  0 siblings, 1 reply; 5+ messages in thread
From: Paul Eggleton @ 2013-08-27  8:33 UTC (permalink / raw)
  To: David Nyström; +Cc: yocto

On Tuesday 27 August 2013 09:32:24 David Nyström wrote:
> On Mon 26 Aug 2013 11:27:30 PM CEST, Yang Shi wrote:
> > Add recipe for 1.0.6 version. And, add status and reload commands into
> > init script.
> > 
> > Signed-off-by: Yang Shi <yang.shi@windriver.com>
> > ---
> > 
> >   ...irqbalance-Add-status-and-reload-commands.patch |   55
> >   ++++++++++++++++++++ recipes-extended/irqbalance/irqbalance_1.0.6.bb   
> >   |   15 +++++
> >   2 files changed, 70 insertions(+), 0 deletions(-)
> >   create mode 100644
> >   recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload
> >   -commands.patch create mode 100644
> >   recipes-extended/irqbalance/irqbalance_1.0.6.bb> 
> > diff --git
> > a/recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload
> > -commands.patch
> > b/recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload
> > -commands.patch new file mode 100644
> > index 0000000..d853d0b
> > --- /dev/null
> > +++
> > b/recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload
> > -commands.patch @@ -0,0 +1,55 @@
> > +From dc7366896dd5a5bae82be4b11530bc9fdb7cbcdd Mon Sep 17 00:00:00 2001
> > +From: Yang Shi <yang.shi@windriver.com>
> > +Date: Mon, 26 Aug 2013 10:58:02 -0700
> > +Subject: [PATCH] irqbalance: Add status and reload commands
> > +
> > +Add status and reload commands for irqbalanced init script
> > +
> > +Signed-off-by: Yang Shi <yang.shi@windriver.com>
> > +---
> > + irqbalance.init |   12 +++++++++---
> > + 1 files changed, 9 insertions(+), 3 deletions(-)
> > +
> > +diff --git a/irqbalance.init b/irqbalance.init
> > +index d12d62c..f58bf55 100644
> > +--- a/irqbalance.init
> > ++++ b/irqbalance.init
> > +@@ -1,6 +1,6 @@
> > + #!/bin/sh
> > + #
> > +-# Copyright (c) 2012 Wind River Systems, Inc.
> > ++# Copyright (c) 2013 Wind River Systems, Inc
> 
> What is this ?, as far as I understand it, the script + recipe is
> proprietary licensed to windriver.
> 
> I see the windriver copyright notice was introduced with commit:
> 43b438f06897a390e16709b3f9e11355f325e2e9
> I seem to remember that we agreed that all contents of
> meta-virtualization should be MIT.

I'm not a lawyer, but as far as I am aware MIT licensing does not preclude 
having a copyright owner; in fact the standard form of the MIT license text 
begins with a copyright statement.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


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

* Re: [meta-virtulization] [PATCH] irqbalance: Uprev to 1.0.6
  2013-08-27  8:33   ` Paul Eggleton
@ 2013-08-27 12:42     ` Bruce Ashfield
  2013-08-27 16:48       ` Yang Shi
  0 siblings, 1 reply; 5+ messages in thread
From: Bruce Ashfield @ 2013-08-27 12:42 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: Yocto Project Discussion

On Tue, Aug 27, 2013 at 4:33 AM, Paul Eggleton
<paul.eggleton@linux.intel.com> wrote:
> On Tuesday 27 August 2013 09:32:24 David Nyström wrote:
>> On Mon 26 Aug 2013 11:27:30 PM CEST, Yang Shi wrote:
>> > Add recipe for 1.0.6 version. And, add status and reload commands into
>> > init script.
>> >
>> > Signed-off-by: Yang Shi <yang.shi@windriver.com>
>> > ---
>> >
>> >   ...irqbalance-Add-status-and-reload-commands.patch |   55
>> >   ++++++++++++++++++++ recipes-extended/irqbalance/irqbalance_1.0.6.bb
>> >   |   15 +++++
>> >   2 files changed, 70 insertions(+), 0 deletions(-)
>> >   create mode 100644
>> >   recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload
>> >   -commands.patch create mode 100644
>> >   recipes-extended/irqbalance/irqbalance_1.0.6.bb>
>> > diff --git
>> > a/recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload
>> > -commands.patch
>> > b/recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload
>> > -commands.patch new file mode 100644
>> > index 0000000..d853d0b
>> > --- /dev/null
>> > +++
>> > b/recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload
>> > -commands.patch @@ -0,0 +1,55 @@
>> > +From dc7366896dd5a5bae82be4b11530bc9fdb7cbcdd Mon Sep 17 00:00:00 2001
>> > +From: Yang Shi <yang.shi@windriver.com>
>> > +Date: Mon, 26 Aug 2013 10:58:02 -0700
>> > +Subject: [PATCH] irqbalance: Add status and reload commands
>> > +
>> > +Add status and reload commands for irqbalanced init script
>> > +
>> > +Signed-off-by: Yang Shi <yang.shi@windriver.com>
>> > +---
>> > + irqbalance.init |   12 +++++++++---
>> > + 1 files changed, 9 insertions(+), 3 deletions(-)
>> > +
>> > +diff --git a/irqbalance.init b/irqbalance.init
>> > +index d12d62c..f58bf55 100644
>> > +--- a/irqbalance.init
>> > ++++ b/irqbalance.init
>> > +@@ -1,6 +1,6 @@
>> > + #!/bin/sh
>> > + #
>> > +-# Copyright (c) 2012 Wind River Systems, Inc.
>> > ++# Copyright (c) 2013 Wind River Systems, Inc
>>
>> What is this ?, as far as I understand it, the script + recipe is
>> proprietary licensed to windriver.
>>
>> I see the windriver copyright notice was introduced with commit:
>> 43b438f06897a390e16709b3f9e11355f325e2e9
>> I seem to remember that we agreed that all contents of
>> meta-virtualization should be MIT.
>
> I'm not a lawyer, but as far as I am aware MIT licensing does not preclude
> having a copyright owner; in fact the standard form of the MIT license text
> begins with a copyright statement.

Right. Copyright != proprietary. You see copyright on pretty much any type of
licensed file, and I've seen plenty of MIT and GPL copyrighted files.

But otherwise, David is correct .. this should have gone to the
meta-virtualization
list, not the yocto list.

Cheers,

Bruce



>
> Cheers,
> Paul
>
> --
>
> Paul Eggleton
> Intel Open Source Technology Centre
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto



-- 
"Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end"


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

* Re: [meta-virtulization] [PATCH] irqbalance: Uprev to 1.0.6
  2013-08-27 12:42     ` Bruce Ashfield
@ 2013-08-27 16:48       ` Yang Shi
  0 siblings, 0 replies; 5+ messages in thread
From: Yang Shi @ 2013-08-27 16:48 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: Paul Eggleton, Yocto Project Discussion

On 8/27/2013 5:42 AM, Bruce Ashfield wrote:
> On Tue, Aug 27, 2013 at 4:33 AM, Paul Eggleton
> <paul.eggleton@linux.intel.com> wrote:
>> On Tuesday 27 August 2013 09:32:24 David Nyström wrote:
>>> On Mon 26 Aug 2013 11:27:30 PM CEST, Yang Shi wrote:
>>>> Add recipe for 1.0.6 version. And, add status and reload commands into
>>>> init script.
>>>>
>>>> Signed-off-by: Yang Shi <yang.shi@windriver.com>
>>>> ---
>>>>
>>>>    ...irqbalance-Add-status-and-reload-commands.patch |   55
>>>>    ++++++++++++++++++++ recipes-extended/irqbalance/irqbalance_1.0.6.bb
>>>>    |   15 +++++
>>>>    2 files changed, 70 insertions(+), 0 deletions(-)
>>>>    create mode 100644
>>>>    recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload
>>>>    -commands.patch create mode 100644
>>>>    recipes-extended/irqbalance/irqbalance_1.0.6.bb>
>>>> diff --git
>>>> a/recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload
>>>> -commands.patch
>>>> b/recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload
>>>> -commands.patch new file mode 100644
>>>> index 0000000..d853d0b
>>>> --- /dev/null
>>>> +++
>>>> b/recipes-extended/irqbalance/irqbalance/irqbalance-Add-status-and-reload
>>>> -commands.patch @@ -0,0 +1,55 @@
>>>> +From dc7366896dd5a5bae82be4b11530bc9fdb7cbcdd Mon Sep 17 00:00:00 2001
>>>> +From: Yang Shi <yang.shi@windriver.com>
>>>> +Date: Mon, 26 Aug 2013 10:58:02 -0700
>>>> +Subject: [PATCH] irqbalance: Add status and reload commands
>>>> +
>>>> +Add status and reload commands for irqbalanced init script
>>>> +
>>>> +Signed-off-by: Yang Shi <yang.shi@windriver.com>
>>>> +---
>>>> + irqbalance.init |   12 +++++++++---
>>>> + 1 files changed, 9 insertions(+), 3 deletions(-)
>>>> +
>>>> +diff --git a/irqbalance.init b/irqbalance.init
>>>> +index d12d62c..f58bf55 100644
>>>> +--- a/irqbalance.init
>>>> ++++ b/irqbalance.init
>>>> +@@ -1,6 +1,6 @@
>>>> + #!/bin/sh
>>>> + #
>>>> +-# Copyright (c) 2012 Wind River Systems, Inc.
>>>> ++# Copyright (c) 2013 Wind River Systems, Inc
>>> What is this ?, as far as I understand it, the script + recipe is
>>> proprietary licensed to windriver.
>>>
>>> I see the windriver copyright notice was introduced with commit:
>>> 43b438f06897a390e16709b3f9e11355f325e2e9
>>> I seem to remember that we agreed that all contents of
>>> meta-virtualization should be MIT.
>> I'm not a lawyer, but as far as I am aware MIT licensing does not preclude
>> having a copyright owner; in fact the standard form of the MIT license text
>> begins with a copyright statement.
> Right. Copyright != proprietary. You see copyright on pretty much any type of
> licensed file, and I've seen plenty of MIT and GPL copyrighted files.
>
> But otherwise, David is correct .. this should have gone to the
> meta-virtualization
> list, not the yocto list.

Thanks guys. I will resend the patch to meta-virtulization list.

Yang

>
> Cheers,
>
> Bruce
>
>
>
>> Cheers,
>> Paul
>>
>> --
>>
>> Paul Eggleton
>> Intel Open Source Technology Centre
>> _______________________________________________
>> yocto mailing list
>> yocto@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/yocto
>
>



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

end of thread, other threads:[~2013-08-27 16:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-26 21:27 [meta-virtulization] [PATCH] irqbalance: Uprev to 1.0.6 Yang Shi
2013-08-27  7:32 ` David Nyström
2013-08-27  8:33   ` Paul Eggleton
2013-08-27 12:42     ` Bruce Ashfield
2013-08-27 16:48       ` Yang Shi

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.