summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Oreman2009-08-07 11:23:30 +0200
committerMichael Brown2009-08-09 01:13:29 +0200
commit3f274a695007233d0f1dcc9357fa6bc57c7b467f (patch)
treed15f92419f872181b94db5c264236c74de9c6205
parent[802.11] Fix memory leak on unsuccessful probes (diff)
downloadipxe-3f274a695007233d0f1dcc9357fa6bc57c7b467f.tar.gz
ipxe-3f274a695007233d0f1dcc9357fa6bc57c7b467f.tar.xz
ipxe-3f274a695007233d0f1dcc9357fa6bc57c7b467f.zip
[legal] Add MIT licence declaration
Signed-off-by: Michael Brown <mcb30@etherboot.org>
-rw-r--r--src/include/compiler.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/include/compiler.h b/src/include/compiler.h
index 7c1aa1f4..d368aec0 100644
--- a/src/include/compiler.h
+++ b/src/include/compiler.h
@@ -501,6 +501,16 @@ int __debug_disable;
#define FILE_LICENCE_BSD2 \
PROVIDE_SYMBOL ( __licence_bsd2 )
+/** Declare a file as being under the one-clause MIT-style licence
+ *
+ * This licence declaration is applicable when a file states itself to
+ * be licensed under terms allowing redistribution for any purpose
+ * with or without fee, provided that the copyright notice and
+ * permission notice appear in all copies.
+ */
+#define FILE_LICENCE_MIT \
+ PROVIDE_SYMBOL ( __licence_mit )
+
/** Declare a particular licence as applying to a file */
#define FILE_LICENCE( _licence ) FILE_LICENCE_ ## _licence