All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/2] refine license of edk2*
@ 2022-11-23 10:20 Vincent Stehlé
  2022-11-23 10:20 ` [Buildroot] [PATCH 1/2] package/edk2-platforms: refine license Vincent Stehlé
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Vincent Stehlé @ 2022-11-23 10:20 UTC (permalink / raw)
  To: buildroot; +Cc: Vincent Stehlé

Hi,

The following couple patches refine the license of edk2 and edk2-platforms.

Logically speaking this is a single commit but as boot/edk2 and
package/edk2-platforms are very distinct paths I prefer to send two distinct
patches. Let me know if a single patch is preferred and I will re-send.

Best regards,
Vincent.


Vincent Stehlé (2):
  package/edk2-platforms: refine license
  boot/edk2: refine license

 boot/edk2/edk2.mk                        | 2 +-
 package/edk2-platforms/edk2-platforms.mk | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 1/2] package/edk2-platforms: refine license
  2022-11-23 10:20 [Buildroot] [PATCH 0/2] refine license of edk2* Vincent Stehlé
@ 2022-11-23 10:20 ` Vincent Stehlé
  2022-11-26 18:53   ` Peter Korsgaard
  2022-11-23 10:20 ` [Buildroot] [PATCH 2/2] boot/edk2: " Vincent Stehlé
  2022-11-23 21:39 ` [Buildroot] [PATCH 0/2] refine license of edk2* Thomas Petazzoni via buildroot
  2 siblings, 1 reply; 6+ messages in thread
From: Vincent Stehlé @ 2022-11-23 10:20 UTC (permalink / raw)
  To: buildroot; +Cc: Vincent Stehlé

The edk2-platforms project is licensed under the BSD-2-Clause license with
a patent grant, as per commit ae604e4ffe8f ("edk2-platforms: Change
License.txt from 2-Clause BSD to BSD+Patent").

There is a BSD-2-Clause-Patent SPDX license identifier[1] for this case,
therefore refine the edk2-platforms package to use this more specific
identifier.

[1]: https://spdx.org/licenses/BSD-2-Clause-Patent.html

Signed-off-by: Vincent Stehlé <vincent.stehle@arm.com>
Cc: Dick Olsson <hi@senzilla.io>
---
 package/edk2-platforms/edk2-platforms.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/edk2-platforms/edk2-platforms.mk b/package/edk2-platforms/edk2-platforms.mk
index 7de59c1afc..6b155bf013 100644
--- a/package/edk2-platforms/edk2-platforms.mk
+++ b/package/edk2-platforms/edk2-platforms.mk
@@ -7,7 +7,7 @@
 # Keep in sync with latest commit as of the release date for boot/edk2
 EDK2_PLATFORMS_VERSION = db922e1253cb6f1fc456805bc42fb7d401eed5c2
 EDK2_PLATFORMS_SITE = $(call github,tianocore,edk2-platforms,$(EDK2_PLATFORMS_VERSION))
-EDK2_PLATFORMS_LICENSE = BSD-2-Clause
+EDK2_PLATFORMS_LICENSE = BSD-2-Clause-Patent
 EDK2_PLATFORMS_LICENSE_FILES = License.txt
 EDK2_PLATFORMS_INSTALL_TARGET = NO
 EDK2_PLATFORMS_INSTALL_STAGING = YES
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 2/2] boot/edk2: refine license
  2022-11-23 10:20 [Buildroot] [PATCH 0/2] refine license of edk2* Vincent Stehlé
  2022-11-23 10:20 ` [Buildroot] [PATCH 1/2] package/edk2-platforms: refine license Vincent Stehlé
@ 2022-11-23 10:20 ` Vincent Stehlé
  2022-11-26 18:53   ` Peter Korsgaard
  2022-11-23 21:39 ` [Buildroot] [PATCH 0/2] refine license of edk2* Thomas Petazzoni via buildroot
  2 siblings, 1 reply; 6+ messages in thread
From: Vincent Stehlé @ 2022-11-23 10:20 UTC (permalink / raw)
  To: buildroot; +Cc: Vincent Stehlé

The edk2 project is licensed under the BSD-2-Clause license with a patent
grant, as per commit 304bff7223a8 ("edk2: Change License.txt from 2-Clause
BSD to BSD+Patent").

There is a BSD-2-Clause-Patent SPDX license identifier[1] for this case,
therefore refine the edk2 package to use this more specific identifier.

[1]: https://spdx.org/licenses/BSD-2-Clause-Patent.html

Signed-off-by: Vincent Stehlé <vincent.stehle@arm.com>
Cc: Dick Olsson <hi@senzilla.io>
---
 boot/edk2/edk2.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/boot/edk2/edk2.mk b/boot/edk2/edk2.mk
index 7d8765c310..953bea6fd3 100644
--- a/boot/edk2/edk2.mk
+++ b/boot/edk2/edk2.mk
@@ -7,7 +7,7 @@
 EDK2_VERSION = edk2-stable202102
 EDK2_SITE = https://github.com/tianocore/edk2
 EDK2_SITE_METHOD = git
-EDK2_LICENSE = BSD-2-Clause
+EDK2_LICENSE = BSD-2-Clause-Patent
 EDK2_LICENSE_FILES = License.txt
 EDK2_CPE_ID_VENDOR = tianocore
 EDK2_DEPENDENCIES = edk2-platforms host-python3 host-acpica host-util-linux
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 0/2] refine license of edk2*
  2022-11-23 10:20 [Buildroot] [PATCH 0/2] refine license of edk2* Vincent Stehlé
  2022-11-23 10:20 ` [Buildroot] [PATCH 1/2] package/edk2-platforms: refine license Vincent Stehlé
  2022-11-23 10:20 ` [Buildroot] [PATCH 2/2] boot/edk2: " Vincent Stehlé
@ 2022-11-23 21:39 ` Thomas Petazzoni via buildroot
  2 siblings, 0 replies; 6+ messages in thread
From: Thomas Petazzoni via buildroot @ 2022-11-23 21:39 UTC (permalink / raw)
  To: Vincent Stehlé; +Cc: buildroot

On Wed, 23 Nov 2022 11:20:33 +0100
Vincent Stehlé <vincent.stehle@arm.com> wrote:

> Vincent Stehlé (2):
>   package/edk2-platforms: refine license
>   boot/edk2: refine license

Thanks, both applied to master!

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/2] package/edk2-platforms: refine license
  2022-11-23 10:20 ` [Buildroot] [PATCH 1/2] package/edk2-platforms: refine license Vincent Stehlé
@ 2022-11-26 18:53   ` Peter Korsgaard
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2022-11-26 18:53 UTC (permalink / raw)
  To: Vincent Stehlé; +Cc: buildroot

>>>>> "Vincent" == Vincent Stehlé <vincent.stehle@arm.com> writes:

 > The edk2-platforms project is licensed under the BSD-2-Clause license with
 > a patent grant, as per commit ae604e4ffe8f ("edk2-platforms: Change
 > License.txt from 2-Clause BSD to BSD+Patent").

 > There is a BSD-2-Clause-Patent SPDX license identifier[1] for this case,
 > therefore refine the edk2-platforms package to use this more specific
 > identifier.

 > [1]: https://spdx.org/licenses/BSD-2-Clause-Patent.html

 > Signed-off-by: Vincent Stehlé <vincent.stehle@arm.com>
 > Cc: Dick Olsson <hi@senzilla.io>

Committed to 2022.08.x and 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 2/2] boot/edk2: refine license
  2022-11-23 10:20 ` [Buildroot] [PATCH 2/2] boot/edk2: " Vincent Stehlé
@ 2022-11-26 18:53   ` Peter Korsgaard
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2022-11-26 18:53 UTC (permalink / raw)
  To: Vincent Stehlé; +Cc: buildroot

>>>>> "Vincent" == Vincent Stehlé <vincent.stehle@arm.com> writes:

 > The edk2 project is licensed under the BSD-2-Clause license with a patent
 > grant, as per commit 304bff7223a8 ("edk2: Change License.txt from 2-Clause
 > BSD to BSD+Patent").

 > There is a BSD-2-Clause-Patent SPDX license identifier[1] for this case,
 > therefore refine the edk2 package to use this more specific identifier.

 > [1]: https://spdx.org/licenses/BSD-2-Clause-Patent.html

 > Signed-off-by: Vincent Stehlé <vincent.stehle@arm.com>
 > Cc: Dick Olsson <hi@senzilla.io>

Committed to 2022.08.x and 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-11-26 18:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-23 10:20 [Buildroot] [PATCH 0/2] refine license of edk2* Vincent Stehlé
2022-11-23 10:20 ` [Buildroot] [PATCH 1/2] package/edk2-platforms: refine license Vincent Stehlé
2022-11-26 18:53   ` Peter Korsgaard
2022-11-23 10:20 ` [Buildroot] [PATCH 2/2] boot/edk2: " Vincent Stehlé
2022-11-26 18:53   ` Peter Korsgaard
2022-11-23 21:39 ` [Buildroot] [PATCH 0/2] refine license of edk2* Thomas Petazzoni via buildroot

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.