summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorMichael Brown2023-01-28 16:30:11 +0100
committerMichael Brown2023-01-28 18:07:40 +0100
commit38f54fb413a1c70f302f9b29ba9f1a87050d4066 (patch)
tree1aa7f010f2615f2793855744d901483503db04b6 /src/util
parent[efi] Build util/efirom as a host-only binary (diff)
downloadipxe-38f54fb413a1c70f302f9b29ba9f1a87050d4066.tar.gz
ipxe-38f54fb413a1c70f302f9b29ba9f1a87050d4066.tar.xz
ipxe-38f54fb413a1c70f302f9b29ba9f1a87050d4066.zip
[legal] Add support for the BSD-2-Clause-Patent licence
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/util')
-rwxr-xr-xsrc/util/licence.pl14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/util/licence.pl b/src/util/licence.pl
index 79e70fd6..bb23c952 100755
--- a/src/util/licence.pl
+++ b/src/util/licence.pl
@@ -29,6 +29,7 @@ my $known_licences = {
public_domain => 1,
bsd3 => 1,
bsd2 => 1,
+ bsd2_patent => 1,
mit => 1,
isc => 1,
},
@@ -41,6 +42,7 @@ my $known_licences = {
public_domain => 1,
bsd3 => 1,
bsd2 => 1,
+ bsd2_patent => 1,
mit => 1,
isc => 1,
},
@@ -54,6 +56,7 @@ my $known_licences = {
public_domain => 1,
bsd3 => 1,
bsd2 => 1,
+ bsd2_patent => 1,
mit => 1,
isc => 1,
},
@@ -65,6 +68,7 @@ my $known_licences = {
public_domain => 1,
bsd3 => 1,
bsd2 => 1,
+ bsd2_patent => 1,
mit => 1,
isc => 1,
},
@@ -100,6 +104,16 @@ my $known_licences = {
isc => 1,
},
},
+ bsd2_patent => {
+ desc => ( "BSD Licence (without advertising or endorsement clauses, ".
+ "with patent clause)" ),
+ can_subsume => {
+ public_domain => 1,
+ bsd2 => 1,
+ mit => 1,
+ isc => 1,
+ },
+ },
mit => {
desc => "MIT/X11/Xorg Licence",
can_subsume => {