aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShao Miller <shao.miller@yrdsb.edu.on.ca>2010-03-20 13:09:39 -0400
committerMichael Brown <mcb30@ipxe.org>2010-12-03 23:38:15 +0000
commit3b517101563cb224dda2e2780db4c6eef32ded38 (patch)
treed192123d95e71efd35a7400ef2fb8d6e34b96e50
parent79a3799c41fc5b0c0b6495ba9fe5a55c8d52ec46 (diff)
downloadipxe-3b517101563cb224dda2e2780db4c6eef32ded38.tar.gz
[legal] Add FILE_LICENCE macro to some GPL-v2-or-later files
Changes were made to files where the licence text within the files themselves confirms that the files are GPL version 2 or later. Signed-off-by: Shao Miller <shao.miller@yrdsb.edu.on.ca> Modified-by: Michael Brown <mcb30@ipxe.org> Signed-off-by: Michael Brown <mcb30@ipxe.org>
-rw-r--r--src/arch/i386/core/gdbmach.c2
-rw-r--r--src/core/gdbserial.c2
-rw-r--r--src/core/gdbstub.c2
-rw-r--r--src/core/gdbudp.c2
-rw-r--r--src/crypto/axtls/aes.c2
-rw-r--r--src/crypto/axtls/bigint.h2
-rw-r--r--src/crypto/axtls/crypto.h2
-rw-r--r--src/drivers/bus/virtio-ring.c2
-rw-r--r--src/drivers/net/atl1e.h2
-rw-r--r--src/drivers/net/via-velocity.c2
-rw-r--r--src/drivers/net/via-velocity.h2
11 files changed, 22 insertions, 0 deletions
diff --git a/src/arch/i386/core/gdbmach.c b/src/arch/i386/core/gdbmach.c
index 396d340d..68b37c04 100644
--- a/src/arch/i386/core/gdbmach.c
+++ b/src/arch/i386/core/gdbmach.c
@@ -16,6 +16,8 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
#include <stddef.h>
#include <stdio.h>
#include <assert.h>
diff --git a/src/core/gdbserial.c b/src/core/gdbserial.c
index d372da96..ed217add 100644
--- a/src/core/gdbserial.c
+++ b/src/core/gdbserial.c
@@ -16,6 +16,8 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
#include <assert.h>
#include <ipxe/serial.h>
#include <ipxe/gdbstub.h>
diff --git a/src/core/gdbstub.c b/src/core/gdbstub.c
index 2cae29fe..34e6a037 100644
--- a/src/core/gdbstub.c
+++ b/src/core/gdbstub.c
@@ -16,6 +16,8 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
/**
* @file
*
diff --git a/src/core/gdbudp.c b/src/core/gdbudp.c
index 287ec630..9cb6572b 100644
--- a/src/core/gdbudp.c
+++ b/src/core/gdbudp.c
@@ -16,6 +16,8 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
#include <stdio.h>
#include <string.h>
#include <byteswap.h>
diff --git a/src/crypto/axtls/aes.c b/src/crypto/axtls/aes.c
index 0c0d7247..87faaa1d 100644
--- a/src/crypto/axtls/aes.c
+++ b/src/crypto/axtls/aes.c
@@ -16,6 +16,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
/**
* AES implementation - this is a small code version. There are much faster
* versions around but they are much larger in size (i.e. they use large
diff --git a/src/crypto/axtls/bigint.h b/src/crypto/axtls/bigint.h
index f9a3c70b..f5f33531 100644
--- a/src/crypto/axtls/bigint.h
+++ b/src/crypto/axtls/bigint.h
@@ -16,6 +16,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
#ifndef BIGINT_HEADER
#define BIGINT_HEADER
diff --git a/src/crypto/axtls/crypto.h b/src/crypto/axtls/crypto.h
index 12acb27f..a9893cf3 100644
--- a/src/crypto/axtls/crypto.h
+++ b/src/crypto/axtls/crypto.h
@@ -16,6 +16,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
/**
* @file crypto.h
*/
diff --git a/src/drivers/bus/virtio-ring.c b/src/drivers/bus/virtio-ring.c
index 987b3195..e55b6d0e 100644
--- a/src/drivers/bus/virtio-ring.c
+++ b/src/drivers/bus/virtio-ring.c
@@ -14,6 +14,8 @@
*
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
#include "etherboot.h"
#include "ipxe/io.h"
#include "ipxe/virtio-ring.h"
diff --git a/src/drivers/net/atl1e.h b/src/drivers/net/atl1e.h
index b09dbbc7..e759ea49 100644
--- a/src/drivers/net/atl1e.h
+++ b/src/drivers/net/atl1e.h
@@ -22,6 +22,8 @@
* Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
#ifndef _ATL1E_H_
#define _ATL1E_H_
diff --git a/src/drivers/net/via-velocity.c b/src/drivers/net/via-velocity.c
index 5b10b6e6..f2326b8d 100644
--- a/src/drivers/net/via-velocity.c
+++ b/src/drivers/net/via-velocity.c
@@ -38,6 +38,8 @@
* Indent Options: indent -kr -i8
*************************************************************************/
+FILE_LICENCE ( GPL2_OR_LATER );
+
#include "etherboot.h"
#include "nic.h"
#include <ipxe/pci.h>
diff --git a/src/drivers/net/via-velocity.h b/src/drivers/net/via-velocity.h
index a43028bd..b657224d 100644
--- a/src/drivers/net/via-velocity.h
+++ b/src/drivers/net/via-velocity.h
@@ -24,6 +24,8 @@
* Copyright (c) 2006 by Timothy Legge <tlegge@rogers.com>
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
#ifndef VELOCITY_H
#define VELOCITY_H