Skip to content

Commit

Permalink
[legal] Add the MIT and ISC licenses to licence.pl
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
H. Peter Anvin authored and Michael Brown committed Aug 2, 2009
1 parent 193d545 commit 5e1aa70
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/util/licence.pl
Expand Up @@ -28,6 +28,8 @@
public_domain => 1,
bsd3 => 1,
bsd2 => 1,
mit => 1,
isc => 1,
},
},
gpl2_or_later => {
Expand All @@ -37,6 +39,8 @@
public_domain => 1,
bsd3 => 1,
bsd2 => 1,
mit => 1,
isc => 1,
},
},
gpl2_only => {
Expand All @@ -47,6 +51,8 @@
public_domain => 1,
bsd3 => 1,
bsd2 => 1,
mit => 1,
isc => 1,
},
},
public_domain => {
Expand All @@ -59,17 +65,36 @@
public_domain => 1,
bsd3 => 1,
bsd2 => 1,
mit => 1,
isc => 1,
},
},
bsd3 => {
desc => "BSD Licence (without advertising clause)",
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,
},
Expand Down

0 comments on commit 5e1aa70

Please sign in to comment.