summaryrefslogtreecommitdiffstats
path: root/src/crypto
diff options
context:
space:
mode:
authorMichael Brown2009-05-01 16:41:06 +0200
committerMichael Brown2009-05-18 09:33:25 +0200
commitc44a193d0d147ed6f98741124569864e516e9d4b (patch)
tree94a9b841e13eb643181e180f358c8612b1b29bfc /src/crypto
parent[legal] Add licence.pl and %.licence make target (diff)
downloadipxe-c44a193d0d147ed6f98741124569864e516e9d4b.tar.gz
ipxe-c44a193d0d147ed6f98741124569864e516e9d4b.tar.xz
ipxe-c44a193d0d147ed6f98741124569864e516e9d4b.zip
[legal] Add a selection of FILE_LICENCE declarations
Add FILE_LICENCE declarations to almost all files that make up the various standard builds of gPXE.
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/asn1.c2
-rw-r--r--src/crypto/axtls_aes.c2
-rw-r--r--src/crypto/cbc.c2
-rw-r--r--src/crypto/chap.c2
-rw-r--r--src/crypto/crypto_null.c2
-rw-r--r--src/crypto/hmac.c2
-rw-r--r--src/crypto/md5.c2
-rw-r--r--src/crypto/x509.c2
8 files changed, 16 insertions, 0 deletions
diff --git a/src/crypto/asn1.c b/src/crypto/asn1.c
index 25e7495b..154a8a84 100644
--- a/src/crypto/asn1.c
+++ b/src/crypto/asn1.c
@@ -16,6 +16,8 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
#include <stdint.h>
#include <stddef.h>
#include <errno.h>
diff --git a/src/crypto/axtls_aes.c b/src/crypto/axtls_aes.c
index 51e1924e..9e4044ea 100644
--- a/src/crypto/axtls_aes.c
+++ b/src/crypto/axtls_aes.c
@@ -16,6 +16,8 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
#include <string.h>
#include <errno.h>
#include <byteswap.h>
diff --git a/src/crypto/cbc.c b/src/crypto/cbc.c
index c7116ea9..1710203c 100644
--- a/src/crypto/cbc.c
+++ b/src/crypto/cbc.c
@@ -16,6 +16,8 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
#include <string.h>
#include <assert.h>
#include <gpxe/crypto.h>
diff --git a/src/crypto/chap.c b/src/crypto/chap.c
index d0784d25..8aa224c4 100644
--- a/src/crypto/chap.c
+++ b/src/crypto/chap.c
@@ -16,6 +16,8 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
diff --git a/src/crypto/crypto_null.c b/src/crypto/crypto_null.c
index 8cc9217a..61efb34e 100644
--- a/src/crypto/crypto_null.c
+++ b/src/crypto/crypto_null.c
@@ -16,6 +16,8 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
/**
* @file
*
diff --git a/src/crypto/hmac.c b/src/crypto/hmac.c
index be0298a7..d64730c0 100644
--- a/src/crypto/hmac.c
+++ b/src/crypto/hmac.c
@@ -16,6 +16,8 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
/**
* @file
*
diff --git a/src/crypto/md5.c b/src/crypto/md5.c
index 72b291ac..8c606398 100644
--- a/src/crypto/md5.c
+++ b/src/crypto/md5.c
@@ -20,6 +20,8 @@
*
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
#include <stdint.h>
#include <string.h>
#include <byteswap.h>
diff --git a/src/crypto/x509.c b/src/crypto/x509.c
index 35adfa38..31ed412f 100644
--- a/src/crypto/x509.c
+++ b/src/crypto/x509.c
@@ -16,6 +16,8 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
#include <stdlib.h>
#include <string.h>
#include <errno.h>