* [PATCH] tinycompress: clarify dual-license wording
@ 2017-10-18 18:11 Pierre-Louis Bossart
2017-10-20 5:58 ` Vinod Koul
0 siblings, 1 reply; 2+ messages in thread
From: Pierre-Louis Bossart @ 2017-10-18 18:11 UTC (permalink / raw)
To: alsa-devel; +Cc: vinod.koul, tiwai, broonie, Pierre-Louis Bossart
There were reports of confusion in legal circles introduced by the wording
"tinycompress is provided under LGPL and BSD dual license" in the README.
Clarify with the addition of the wording traditionally used for dual licenses:
"This file is provided under a dual BSD/LGPLv2.1 license. When using or
redistributing this file, you may do so under either license"
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
---
COPYING | 3 +++
README | 3 ++-
include/tinycompress/tinycompress.h | 3 +++
include/tinycompress/tinymp3.h | 3 +++
include/tinycompress/version.h | 3 +++
src/lib/compress.c | 3 +++
src/utils/cplay.c | 3 +++
src/utils/crecord.c | 3 +++
8 files changed, 23 insertions(+), 1 deletion(-)
diff --git a/COPYING b/COPYING
index f963926..dfc7426 100644
--- a/COPYING
+++ b/COPYING
@@ -1,3 +1,6 @@
+tinycompress is provided under a dual BSD/LGPLv2.1 license. When using or
+ redistributing tinycompress, you may do so under either license.
+
BSD LICENSE
tinycompress library for compress audio offload in alsa
diff --git a/README b/README
index 73c19a6..689ca75 100644
--- a/README
+++ b/README
@@ -22,7 +22,8 @@ Http: http://git.alsa-project.org/?p=tinycompress.git
alsa-devel@alsa-project.org.
4. LICENSE
- tinycompress is provided under LGPL and BSD dual license
+ tinycompress is provided under a dual BSD/LGPLv2.1 license. When using or
+ redistributing tinycompress, you may do so under either license.
5. CREDITS
- Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> for library design
diff --git a/include/tinycompress/tinycompress.h b/include/tinycompress/tinycompress.h
index 68626a4..780dce6 100644
--- a/include/tinycompress/tinycompress.h
+++ b/include/tinycompress/tinycompress.h
@@ -1,4 +1,7 @@
/*
+ * This file is provided under a dual BSD/LGPLv2.1 license. When using or
+ * redistributing this file, you may do so under either license.
+ *
* BSD LICENSE
*
* Copyright (c) 2011-2012, Intel Corporation
diff --git a/include/tinycompress/tinymp3.h b/include/tinycompress/tinymp3.h
index a709c39..b0d429d 100644
--- a/include/tinycompress/tinymp3.h
+++ b/include/tinycompress/tinymp3.h
@@ -1,4 +1,7 @@
/*
+ * This file is provided under a dual BSD/LGPLv2.1 license. When using or
+ * redistributing this file, you may do so under either license.
+ *
* BSD LICENSE
*
* mp3 header and prasing
diff --git a/include/tinycompress/version.h b/include/tinycompress/version.h
index 000f6a2..82a3e6c 100644
--- a/include/tinycompress/version.h
+++ b/include/tinycompress/version.h
@@ -1,4 +1,7 @@
/*
+ * This file is provided under a dual BSD/LGPLv2.1 license. When using or
+ * redistributing this file, you may do so under either license.
+ *
* BSD LICENSE
*
* Copyright (c) 2011-2012, Intel Corporation
diff --git a/src/lib/compress.c b/src/lib/compress.c
index 84738d2..8ae6bbd 100644
--- a/src/lib/compress.c
+++ b/src/lib/compress.c
@@ -1,4 +1,7 @@
/*
+ * This file is provided under a dual BSD/LGPLv2.1 license. When using or
+ * redistributing this file, you may do so under either license.
+ *
* BSD LICENSE
*
* tinycompress library for compress audio offload in alsa
diff --git a/src/utils/cplay.c b/src/utils/cplay.c
index 032a971..e0603fd 100644
--- a/src/utils/cplay.c
+++ b/src/utils/cplay.c
@@ -1,4 +1,7 @@
/*
+ * This file is provided under a dual BSD/LGPLv2.1 license. When using or
+ * redistributing this file, you may do so under either license.
+ *
* BSD LICENSE
*
* tinyplay command line player for compress audio offload in alsa
diff --git a/src/utils/crecord.c b/src/utils/crecord.c
index 1fd3698..e051c2d 100644
--- a/src/utils/crecord.c
+++ b/src/utils/crecord.c
@@ -1,4 +1,7 @@
/*
+ * This file is provided under a dual BSD/LGPLv2.1 license. When using or
+ * redistributing this file, you may do so under either license.
+ *
* BSD LICENSE
*
* crecord command line recorder for compress audio record in alsa
--
2.11.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] tinycompress: clarify dual-license wording
2017-10-18 18:11 [PATCH] tinycompress: clarify dual-license wording Pierre-Louis Bossart
@ 2017-10-20 5:58 ` Vinod Koul
0 siblings, 0 replies; 2+ messages in thread
From: Vinod Koul @ 2017-10-20 5:58 UTC (permalink / raw)
To: Pierre-Louis Bossart; +Cc: tiwai, alsa-devel, broonie
On Wed, Oct 18, 2017 at 01:11:25PM -0500, Pierre-Louis Bossart wrote:
> There were reports of confusion in legal circles introduced by the wording
> "tinycompress is provided under LGPL and BSD dual license" in the README.
>
> Clarify with the addition of the wording traditionally used for dual licenses:
>
> "This file is provided under a dual BSD/LGPLv2.1 license. When using or
> redistributing this file, you may do so under either license"
Applied, thanks
--
~Vinod
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-10-20 5:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-18 18:11 [PATCH] tinycompress: clarify dual-license wording Pierre-Louis Bossart
2017-10-20 5:58 ` Vinod Koul
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox