linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] LICENSES: Add note to CDDL-1.0 license that it should not be used
@ 2018-10-10 11:05 Hans de Goede
  2018-10-10 11:05 ` [PATCH 2/2] LICENSES: Add ISC license text Hans de Goede
  2018-10-10 13:23 ` [PATCH 1/2] LICENSES: Add note to CDDL-1.0 license that it should not be used Thomas Gleixner
  0 siblings, 2 replies; 5+ messages in thread
From: Hans de Goede @ 2018-10-10 11:05 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Jonathan Corbet, Thomas Gleixner
  Cc: Hans de Goede, linux-kernel

The only reason we have the CDDL-1.0 license text around is for some
dual-licensed files from virtualbox. New code should not use this license.

Add a note about this and change the example tag to be dual-licensed.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
 LICENSES/other/CDDL-1.0 | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/LICENSES/other/CDDL-1.0 b/LICENSES/other/CDDL-1.0
index 195a1687930a..164401ea9e62 100644
--- a/LICENSES/other/CDDL-1.0
+++ b/LICENSES/other/CDDL-1.0
@@ -1,10 +1,12 @@
 Valid-License-Identifier: CDDL-1.0
 SPDX-URL: https://spdx.org/licenses/CDDL-1.0.html
 Usage-Guide:
+  Do NOT use. The CDDL-1.0 is not GPL compatible. It may only be used for
+  dual-licensed files where the other license is GPL compatible.
   To use the Common Development and Distribution License 1.0 put the
   following SPDX tag/value pair into a comment according to the placement
   guidelines in the licensing rules documentation:
-    SPDX-License-Identifier: CDDL-1.0
+    SPDX-License-Identifier: (GPL-2.0 OR CDDL-1.0)
 
 License-Text:
 
-- 
2.19.0


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

* [PATCH 2/2] LICENSES: Add ISC license text
  2018-10-10 11:05 [PATCH 1/2] LICENSES: Add note to CDDL-1.0 license that it should not be used Hans de Goede
@ 2018-10-10 11:05 ` Hans de Goede
  2018-10-10 13:23 ` [PATCH 1/2] LICENSES: Add note to CDDL-1.0 license that it should not be used Thomas Gleixner
  1 sibling, 0 replies; 5+ messages in thread
From: Hans de Goede @ 2018-10-10 11:05 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Jonathan Corbet, Thomas Gleixner
  Cc: Hans de Goede, linux-kernel, Kalle Valo

Add the full text of the ISC license to the kernel tree. It was copied
directly from:

   https://spdx.org/licenses/ISC.html

With the mention of "ISC" in the warranty disclaimer replaced with
"THE AUTHOR" as done in the ISC license headers used in the ath10k and
brcmfmac wifi drivers.

Cc: Kalle Valo <kvalo@codeaurora.org>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
 LICENSES/other/ISC | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 LICENSES/other/ISC

diff --git a/LICENSES/other/ISC b/LICENSES/other/ISC
new file mode 100644
index 000000000000..8953c3142079
--- /dev/null
+++ b/LICENSES/other/ISC
@@ -0,0 +1,24 @@
+Valid-License-Identifier: ISC
+SPDX-URL: https://spdx.org/licenses/ISC.html
+Usage-Guide:
+  To use the ISC License put the following SPDX tag/value pair into a
+  comment according to the placement guidelines in the licensing rules
+  documentation:
+    SPDX-License-Identifier: ISC
+License-Text:
+
+ISC License
+
+Copyright (c) <year> <copyright holders>
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
+OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-- 
2.19.0


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

* Re: [PATCH 1/2] LICENSES: Add note to CDDL-1.0 license that it should not be used
  2018-10-10 11:05 [PATCH 1/2] LICENSES: Add note to CDDL-1.0 license that it should not be used Hans de Goede
  2018-10-10 11:05 ` [PATCH 2/2] LICENSES: Add ISC license text Hans de Goede
@ 2018-10-10 13:23 ` Thomas Gleixner
  2018-10-15  9:53   ` Christoph Hellwig
  1 sibling, 1 reply; 5+ messages in thread
From: Thomas Gleixner @ 2018-10-10 13:23 UTC (permalink / raw)
  To: Hans de Goede; +Cc: Greg Kroah-Hartman, Jonathan Corbet, LKML, Kate Stewart

On Wed, 10 Oct 2018, Hans de Goede wrote:

> The only reason we have the CDDL-1.0 license text around is for some
> dual-licensed files from virtualbox. New code should not use this license.
> 
> Add a note about this and change the example tag to be dual-licensed.
> 
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
> ---
>  LICENSES/other/CDDL-1.0 | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/LICENSES/other/CDDL-1.0 b/LICENSES/other/CDDL-1.0
> index 195a1687930a..164401ea9e62 100644
> --- a/LICENSES/other/CDDL-1.0
> +++ b/LICENSES/other/CDDL-1.0
> @@ -1,10 +1,12 @@
>  Valid-License-Identifier: CDDL-1.0
>  SPDX-URL: https://spdx.org/licenses/CDDL-1.0.html
>  Usage-Guide:
> +  Do NOT use. The CDDL-1.0 is not GPL compatible. It may only be used for
> +  dual-licensed files where the other license is GPL compatible.
>    To use the Common Development and Distribution License 1.0 put the
>    following SPDX tag/value pair into a comment according to the placement
>    guidelines in the licensing rules documentation:
> -    SPDX-License-Identifier: CDDL-1.0
> +    SPDX-License-Identifier: (GPL-2.0 OR CDDL-1.0)

I'd rather replace the 'GPL-2.0' with something like '$GPL-COMPATIBLE-ID'
and say explicitely in the prosa text that CCDL can only be used with OR
and not with AND.

Thanks,

	tglx

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

* Re: [PATCH 1/2] LICENSES: Add note to CDDL-1.0 license that it should not be used
  2018-10-10 13:23 ` [PATCH 1/2] LICENSES: Add note to CDDL-1.0 license that it should not be used Thomas Gleixner
@ 2018-10-15  9:53   ` Christoph Hellwig
  2018-10-15 10:08     ` Thomas Gleixner
  0 siblings, 1 reply; 5+ messages in thread
From: Christoph Hellwig @ 2018-10-15  9:53 UTC (permalink / raw)
  To: Thomas Gleixner
  Cc: Hans de Goede, Greg Kroah-Hartman, Jonathan Corbet, LKML, Kate Stewart

On Wed, Oct 10, 2018 at 03:23:07PM +0200, Thomas Gleixner wrote:
> I'd rather replace the 'GPL-2.0' with something like '$GPL-COMPATIBLE-ID'
> and say explicitely in the prosa text that CCDL can only be used with OR
> and not with AND.

Maybe we should take the whole thing to a higher level, and split
the other folder into

legacy/
 - for licenses that exist but should never be used for new code

and

dual/
 - for licenses that should only be used for dual licensing with
   something from preferred/

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

* Re: [PATCH 1/2] LICENSES: Add note to CDDL-1.0 license that it should not be used
  2018-10-15  9:53   ` Christoph Hellwig
@ 2018-10-15 10:08     ` Thomas Gleixner
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Gleixner @ 2018-10-15 10:08 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: Hans de Goede, Greg Kroah-Hartman, Jonathan Corbet, LKML, Kate Stewart

On Mon, 15 Oct 2018, Christoph Hellwig wrote:
> On Wed, Oct 10, 2018 at 03:23:07PM +0200, Thomas Gleixner wrote:
> > I'd rather replace the 'GPL-2.0' with something like '$GPL-COMPATIBLE-ID'
> > and say explicitely in the prosa text that CCDL can only be used with OR
> > and not with AND.
> 
> Maybe we should take the whole thing to a higher level, and split
> the other folder into
> 
> legacy/
>  - for licenses that exist but should never be used for new code
> 
> and
> 
> dual/
>  - for licenses that should only be used for dual licensing with
>    something from preferred/

That makes sense.

Thanks,

	tglx


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

end of thread, other threads:[~2018-10-15 10:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-10 11:05 [PATCH 1/2] LICENSES: Add note to CDDL-1.0 license that it should not be used Hans de Goede
2018-10-10 11:05 ` [PATCH 2/2] LICENSES: Add ISC license text Hans de Goede
2018-10-10 13:23 ` [PATCH 1/2] LICENSES: Add note to CDDL-1.0 license that it should not be used Thomas Gleixner
2018-10-15  9:53   ` Christoph Hellwig
2018-10-15 10:08     ` Thomas Gleixner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).