All of lore.kernel.org
 help / color / mirror / Atom feed
* [Xenomai] [PATCH] rtcan: add missing license terms
@ 2013-10-14 18:44 Wolfgang Grandegger
  2013-10-14 19:19 ` Jan Kiszka
  0 siblings, 1 reply; 4+ messages in thread
From: Wolfgang Grandegger @ 2013-10-14 18:44 UTC (permalink / raw)
  To: Xenomai@xenomai.org

---
 src/utils/can/rtcanrecv.c |   19 +++++++++++++++++++
 src/utils/can/rtcansend.c |   19 +++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/src/utils/can/rtcanrecv.c b/src/utils/can/rtcanrecv.c
index f3178c5..644de55 100644
--- a/src/utils/can/rtcanrecv.c
+++ b/src/utils/can/rtcanrecv.c
@@ -1,3 +1,22 @@
+/*
+ * Program to receive CAN messages
+ *
+ * Copyright (C) 2006 Wolfgang Grandegger <wg@grandegger.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
 #include <stdio.h>
 #include <stdlib.h>
 #include <signal.h>
diff --git a/src/utils/can/rtcansend.c b/src/utils/can/rtcansend.c
index d178305..dd6ee30 100644
--- a/src/utils/can/rtcansend.c
+++ b/src/utils/can/rtcansend.c
@@ -1,3 +1,22 @@
+/*
+ * Program to send CAN messages
+ *
+ * Copyright (C) 2006 Wolfgang Grandegger <wg@grandegger.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
 #include <stdio.h>
 #include <stdlib.h>
 #include <signal.h>
-- 
1.7.9.5



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

* Re: [Xenomai] [PATCH] rtcan: add missing license terms
  2013-10-14 18:44 [Xenomai] [PATCH] rtcan: add missing license terms Wolfgang Grandegger
@ 2013-10-14 19:19 ` Jan Kiszka
  2013-10-14 19:58   ` Wolfgang Grandegger
  0 siblings, 1 reply; 4+ messages in thread
From: Jan Kiszka @ 2013-10-14 19:19 UTC (permalink / raw)
  To: Wolfgang Grandegger, Xenomai@xenomai.org

On 2013-10-14 20:44, Wolfgang Grandegger wrote:
> ---
>  src/utils/can/rtcanrecv.c |   19 +++++++++++++++++++
>  src/utils/can/rtcansend.c |   19 +++++++++++++++++++
>  2 files changed, 38 insertions(+)
> 
> diff --git a/src/utils/can/rtcanrecv.c b/src/utils/can/rtcanrecv.c
> index f3178c5..644de55 100644
> --- a/src/utils/can/rtcanrecv.c
> +++ b/src/utils/can/rtcanrecv.c
> @@ -1,3 +1,22 @@
> +/*
> + * Program to receive CAN messages
> + *
> + * Copyright (C) 2006 Wolfgang Grandegger <wg@grandegger.com>
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License as published by
> + * the Free Software Foundation; either version 2 of the License, or
> + * (at your option) any later version.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + * GNU General Public License for more details.
> + *
> + * You should have received a copy of the GNU General Public License
> + * along with this program; if not, write to the Free Software
> + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
> + */
>  #include <stdio.h>
>  #include <stdlib.h>
>  #include <signal.h>
> diff --git a/src/utils/can/rtcansend.c b/src/utils/can/rtcansend.c
> index d178305..dd6ee30 100644
> --- a/src/utils/can/rtcansend.c
> +++ b/src/utils/can/rtcansend.c
> @@ -1,3 +1,22 @@
> +/*
> + * Program to send CAN messages
> + *
> + * Copyright (C) 2006 Wolfgang Grandegger <wg@grandegger.com>
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License as published by
> + * the Free Software Foundation; either version 2 of the License, or
> + * (at your option) any later version.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + * GNU General Public License for more details.
> + *
> + * You should have received a copy of the GNU General Public License
> + * along with this program; if not, write to the Free Software
> + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
> + */
>  #include <stdio.h>
>  #include <stdlib.h>
>  #include <signal.h>
> 

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>

Thanks!
Jan

-- 
Siemens AG, Corporate Technology, CT RTC ITP SES-DE
Corporate Competence Center Embedded Linux


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

* Re: [Xenomai] [PATCH] rtcan: add missing license terms
  2013-10-14 19:19 ` Jan Kiszka
@ 2013-10-14 19:58   ` Wolfgang Grandegger
  2013-10-26 15:33     ` Gilles Chanteperdrix
  0 siblings, 1 reply; 4+ messages in thread
From: Wolfgang Grandegger @ 2013-10-14 19:58 UTC (permalink / raw)
  To: Jan Kiszka, Xenomai@xenomai.org

On 10/14/2013 09:19 PM, Jan Kiszka wrote:
> On 2013-10-14 20:44, Wolfgang Grandegger wrote:
>> ---
>>  src/utils/can/rtcanrecv.c |   19 +++++++++++++++++++
>>  src/utils/can/rtcansend.c |   19 +++++++++++++++++++
>>  2 files changed, 38 insertions(+)
>>
>> diff --git a/src/utils/can/rtcanrecv.c b/src/utils/can/rtcanrecv.c
>> index f3178c5..644de55 100644
>> --- a/src/utils/can/rtcanrecv.c
>> +++ b/src/utils/can/rtcanrecv.c
>> @@ -1,3 +1,22 @@
>> +/*
>> + * Program to receive CAN messages
>> + *
>> + * Copyright (C) 2006 Wolfgang Grandegger <wg@grandegger.com>
>> + *
>> + * This program is free software; you can redistribute it and/or modify
>> + * it under the terms of the GNU General Public License as published by
>> + * the Free Software Foundation; either version 2 of the License, or
>> + * (at your option) any later version.
>> + *
>> + * This program is distributed in the hope that it will be useful,
>> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
>> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
>> + * GNU General Public License for more details.
>> + *
>> + * You should have received a copy of the GNU General Public License
>> + * along with this program; if not, write to the Free Software
>> + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
>> + */
>>  #include <stdio.h>
>>  #include <stdlib.h>
>>  #include <signal.h>
>> diff --git a/src/utils/can/rtcansend.c b/src/utils/can/rtcansend.c
>> index d178305..dd6ee30 100644
>> --- a/src/utils/can/rtcansend.c
>> +++ b/src/utils/can/rtcansend.c
>> @@ -1,3 +1,22 @@
>> +/*
>> + * Program to send CAN messages
>> + *
>> + * Copyright (C) 2006 Wolfgang Grandegger <wg@grandegger.com>
>> + *
>> + * This program is free software; you can redistribute it and/or modify
>> + * it under the terms of the GNU General Public License as published by
>> + * the Free Software Foundation; either version 2 of the License, or
>> + * (at your option) any later version.
>> + *
>> + * This program is distributed in the hope that it will be useful,
>> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
>> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
>> + * GNU General Public License for more details.
>> + *
>> + * You should have received a copy of the GNU General Public License
>> + * along with this program; if not, write to the Free Software
>> + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
>> + */
>>  #include <stdio.h>
>>  #include <stdlib.h>
>>  #include <signal.h>
>>
> 
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>

Feel free to add my "Signed-off-by".  I did a "git log" on xenomai-2.6
and realized only a few of them.

Wolfgang.




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

* Re: [Xenomai] [PATCH] rtcan: add missing license terms
  2013-10-14 19:58   ` Wolfgang Grandegger
@ 2013-10-26 15:33     ` Gilles Chanteperdrix
  0 siblings, 0 replies; 4+ messages in thread
From: Gilles Chanteperdrix @ 2013-10-26 15:33 UTC (permalink / raw)
  To: Wolfgang Grandegger; +Cc: Jan Kiszka, Xenomai@xenomai.org

On 10/14/2013 09:58 PM, Wolfgang Grandegger wrote:
> On 10/14/2013 09:19 PM, Jan Kiszka wrote:
>> On 2013-10-14 20:44, Wolfgang Grandegger wrote:
>>> ---
>>>  src/utils/can/rtcanrecv.c |   19 +++++++++++++++++++
>>>  src/utils/can/rtcansend.c |   19 +++++++++++++++++++
>>>  2 files changed, 38 insertions(+)
>>>
>>> diff --git a/src/utils/can/rtcanrecv.c b/src/utils/can/rtcanrecv.c
>>> index f3178c5..644de55 100644
>>> --- a/src/utils/can/rtcanrecv.c
>>> +++ b/src/utils/can/rtcanrecv.c
>>> @@ -1,3 +1,22 @@
>>> +/*
>>> + * Program to receive CAN messages
>>> + *
>>> + * Copyright (C) 2006 Wolfgang Grandegger <wg@grandegger.com>
>>> + *
>>> + * This program is free software; you can redistribute it and/or modify
>>> + * it under the terms of the GNU General Public License as published by
>>> + * the Free Software Foundation; either version 2 of the License, or
>>> + * (at your option) any later version.
>>> + *
>>> + * This program is distributed in the hope that it will be useful,
>>> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
>>> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
>>> + * GNU General Public License for more details.
>>> + *
>>> + * You should have received a copy of the GNU General Public License
>>> + * along with this program; if not, write to the Free Software
>>> + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
>>> + */
>>>  #include <stdio.h>
>>>  #include <stdlib.h>
>>>  #include <signal.h>
>>> diff --git a/src/utils/can/rtcansend.c b/src/utils/can/rtcansend.c
>>> index d178305..dd6ee30 100644
>>> --- a/src/utils/can/rtcansend.c
>>> +++ b/src/utils/can/rtcansend.c
>>> @@ -1,3 +1,22 @@
>>> +/*
>>> + * Program to send CAN messages
>>> + *
>>> + * Copyright (C) 2006 Wolfgang Grandegger <wg@grandegger.com>
>>> + *
>>> + * This program is free software; you can redistribute it and/or modify
>>> + * it under the terms of the GNU General Public License as published by
>>> + * the Free Software Foundation; either version 2 of the License, or
>>> + * (at your option) any later version.
>>> + *
>>> + * This program is distributed in the hope that it will be useful,
>>> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
>>> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
>>> + * GNU General Public License for more details.
>>> + *
>>> + * You should have received a copy of the GNU General Public License
>>> + * along with this program; if not, write to the Free Software
>>> + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
>>> + */
>>>  #include <stdio.h>
>>>  #include <stdlib.h>
>>>  #include <signal.h>
>>>
>>
>> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> 
> Feel free to add my "Signed-off-by".  I did a "git log" on xenomai-2.6
> and realized only a few of them.

Done, thanks.


-- 
                                                                Gilles.


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

end of thread, other threads:[~2013-10-26 15:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-14 18:44 [Xenomai] [PATCH] rtcan: add missing license terms Wolfgang Grandegger
2013-10-14 19:19 ` Jan Kiszka
2013-10-14 19:58   ` Wolfgang Grandegger
2013-10-26 15:33     ` Gilles Chanteperdrix

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.