summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin2009-08-02 23:42:55 +0200
committerMichael Brown2009-08-03 00:30:38 +0200
commit5e1aa70301f8e870c2550c2c1cce079a9d87dd17 (patch)
treed38486238c5947b4f7cafe61a24c679bfb7baa4a
parent[pxe] Dual-license pxe_api.h under the MIT license (diff)
downloadipxe-5e1aa70301f8e870c2550c2c1cce079a9d87dd17.tar.gz
ipxe-5e1aa70301f8e870c2550c2c1cce079a9d87dd17.tar.xz
ipxe-5e1aa70301f8e870c2550c2c1cce079a9d87dd17.zip
[legal] Add the MIT and ISC licenses to licence.pl
The MIT and ISC licenses are legally equivalent to the bsd2 license, but with slightly different verbiage. Signed-off-by: H. Peter Anvin <hpa@zytor.com> Signed-off-by: Michael Brown <mcb30@etherboot.org>
-rwxr-xr-xsrc/util/licence.pl25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/util/licence.pl b/src/util/licence.pl
index aca67186..c37685d3 100755
--- a/src/util/licence.pl
+++ b/src/util/licence.pl
@@ -28,6 +28,8 @@ my $known_licences = {
public_domain => 1,
bsd3 => 1,
bsd2 => 1,
+ mit => 1,
+ isc => 1,
},
},
gpl2_or_later => {
@@ -37,6 +39,8 @@ my $known_licences = {
public_domain => 1,
bsd3 => 1,
bsd2 => 1,
+ mit => 1,
+ isc => 1,
},
},
gpl2_only => {
@@ -47,6 +51,8 @@ my $known_licences = {
public_domain => 1,
bsd3 => 1,
bsd2 => 1,
+ mit => 1,
+ isc => 1,
},
},
public_domain => {
@@ -59,6 +65,8 @@ my $known_licences = {
public_domain => 1,
bsd3 => 1,
bsd2 => 1,
+ mit => 1,
+ isc => 1,
},
},
bsd3 => {
@@ -66,12 +74,29 @@ my $known_licences = {
can_subsume => {
public_domain => 1,
bsd2 => 1,
+ mit => 1,
+ isc => 1,
},
},
bsd2 => {
desc => "BSD Licence (without advertising or endorsement clauses)",
can_subsume => {
public_domain => 1,
+ mit => 1,
+ isc => 1,
+ },
+ },
+ mit => {
+ desc => "MIT/X11/Xorg Licence",
+ can_subsume => {
+ public_domain => 1,
+ isc => 1,
+ },
+ },
+ isc => {
+ desc => "ISC Licence",
+ can_subsume => {
+ public_domain => 1,
},
},
};