mirror of
https://github.com/ipxe/ipxe
synced 2026-02-06 21:29:29 +03:00
[legal] Add support for the BSD-2-Clause-Patent licence
Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
@@ -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 => {
|
||||
|
||||
Reference in New Issue
Block a user