diff options
author | Michael Brown <mcb30@ipxe.org> | 2015-03-05 11:36:30 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2015-03-05 11:40:13 +0000 |
commit | 1a4e94a8286d5080330053ee2ce1273f4393b124 (patch) | |
tree | 3135686919bee0431c9480ef3b0adba93c1241a8 | |
parent | 93b458644798fb55023b1bd84b35019b1184d330 (diff) | |
download | ipxe-1a4e94a8286d5080330053ee2ce1273f4393b124.zip ipxe-1a4e94a8286d5080330053ee2ce1273f4393b124.tar.gz ipxe-1a4e94a8286d5080330053ee2ce1273f4393b124.tar.bz2 |
[legal] Relicense files under GPL2_OR_LATER_OR_UBDL
Relicense files with kind permission from
Stefan Hajnoczi <stefanha@redhat.com>
alongside the contributors who have already granted such relicensing
permission.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
-rw-r--r-- | src/arch/i386/core/gdbmach.c | 6 | ||||
-rw-r--r-- | src/arch/i386/drivers/net/undiload.c | 6 | ||||
-rw-r--r-- | src/arch/i386/prefix/kkpxeprefix.S | 2 | ||||
-rw-r--r-- | src/core/fnrec.c | 6 | ||||
-rw-r--r-- | src/core/gdbserial.c | 6 | ||||
-rw-r--r-- | src/core/gdbstub.c | 6 | ||||
-rw-r--r-- | src/core/gdbudp.c | 6 | ||||
-rw-r--r-- | src/drivers/net/virtio-net.c | 2 | ||||
-rw-r--r-- | src/drivers/net/vxge/vxge.c | 2 | ||||
-rw-r--r-- | src/hci/commands/gdbstub_cmd.c | 6 | ||||
-rw-r--r-- | src/include/ipxe/gdbserial.h | 2 | ||||
-rw-r--r-- | src/include/ipxe/gdbstub.h | 2 | ||||
-rw-r--r-- | src/include/ipxe/gdbudp.h | 2 | ||||
-rw-r--r-- | src/include/ipxe/serial.h | 2 | ||||
-rw-r--r-- | src/net/vlan.c | 6 |
15 files changed, 47 insertions, 15 deletions
diff --git a/src/arch/i386/core/gdbmach.c b/src/arch/i386/core/gdbmach.c index 4d6897f..d92a4ac 100644 --- a/src/arch/i386/core/gdbmach.c +++ b/src/arch/i386/core/gdbmach.c @@ -15,9 +15,13 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA. + * + * You can also choose to distribute this program under the terms of + * the Unmodified Binary Distribution Licence (as given in the file + * COPYING.UBDL), provided that you have satisfied its requirements. */ -FILE_LICENCE ( GPL2_OR_LATER ); +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #include <stddef.h> #include <stdio.h> diff --git a/src/arch/i386/drivers/net/undiload.c b/src/arch/i386/drivers/net/undiload.c index 77134dc..7160ee3 100644 --- a/src/arch/i386/drivers/net/undiload.c +++ b/src/arch/i386/drivers/net/undiload.c @@ -15,9 +15,13 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA. + * + * You can also choose to distribute this program under the terms of + * the Unmodified Binary Distribution Licence (as given in the file + * COPYING.UBDL), provided that you have satisfied its requirements. */ -FILE_LICENCE ( GPL2_OR_LATER ); +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #include <stdint.h> #include <stdlib.h> diff --git a/src/arch/i386/prefix/kkpxeprefix.S b/src/arch/i386/prefix/kkpxeprefix.S index d7dd315..3c17dbd 100644 --- a/src/arch/i386/prefix/kkpxeprefix.S +++ b/src/arch/i386/prefix/kkpxeprefix.S @@ -3,7 +3,7 @@ ***************************************************************************** */ -FILE_LICENCE ( GPL2_OR_LATER ) +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ) #define PXELOADER_KEEP_UNDI #define PXELOADER_KEEP_PXE diff --git a/src/core/fnrec.c b/src/core/fnrec.c index 3453c8b..0430817 100644 --- a/src/core/fnrec.c +++ b/src/core/fnrec.c @@ -15,9 +15,13 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA. + * + * You can also choose to distribute this program under the terms of + * the Unmodified Binary Distribution Licence (as given in the file + * COPYING.UBDL), provided that you have satisfied its requirements. */ -FILE_LICENCE ( GPL2_OR_LATER ); +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #include <stdlib.h> #include <stdio.h> diff --git a/src/core/gdbserial.c b/src/core/gdbserial.c index 6f78c88..255acea 100644 --- a/src/core/gdbserial.c +++ b/src/core/gdbserial.c @@ -15,9 +15,13 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA. + * + * You can also choose to distribute this program under the terms of + * the Unmodified Binary Distribution Licence (as given in the file + * COPYING.UBDL), provided that you have satisfied its requirements. */ -FILE_LICENCE ( GPL2_OR_LATER ); +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #include <assert.h> #include <ipxe/serial.h> diff --git a/src/core/gdbstub.c b/src/core/gdbstub.c index af06118..6ad52d1 100644 --- a/src/core/gdbstub.c +++ b/src/core/gdbstub.c @@ -15,9 +15,13 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA. + * + * You can also choose to distribute this program under the terms of + * the Unmodified Binary Distribution Licence (as given in the file + * COPYING.UBDL), provided that you have satisfied its requirements. */ -FILE_LICENCE ( GPL2_OR_LATER ); +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); /** * @file diff --git a/src/core/gdbudp.c b/src/core/gdbudp.c index 5977547..e4613d1 100644 --- a/src/core/gdbudp.c +++ b/src/core/gdbudp.c @@ -15,9 +15,13 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA. + * + * You can also choose to distribute this program under the terms of + * the Unmodified Binary Distribution Licence (as given in the file + * COPYING.UBDL), provided that you have satisfied its requirements. */ -FILE_LICENCE ( GPL2_OR_LATER ); +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #include <stdio.h> #include <string.h> diff --git a/src/drivers/net/virtio-net.c b/src/drivers/net/virtio-net.c index d5fd819..8b67d9d 100644 --- a/src/drivers/net/virtio-net.c +++ b/src/drivers/net/virtio-net.c @@ -20,7 +20,7 @@ * See the COPYING file in the top-level directory. */ -FILE_LICENCE ( GPL2_OR_LATER ); +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #include <errno.h> #include <stdlib.h> diff --git a/src/drivers/net/vxge/vxge.c b/src/drivers/net/vxge/vxge.c index 9c58772..d50ac05 100644 --- a/src/drivers/net/vxge/vxge.c +++ b/src/drivers/net/vxge/vxge.c @@ -5,7 +5,7 @@ * as "vxge" even though the code is in vxge_* named files. */ -FILE_LICENCE(GPL2_OR_LATER); +FILE_LICENCE(GPL2_OR_LATER_OR_UBDL); #include <ipxe/pci.h> diff --git a/src/hci/commands/gdbstub_cmd.c b/src/hci/commands/gdbstub_cmd.c index 33890ae..c4a831e 100644 --- a/src/hci/commands/gdbstub_cmd.c +++ b/src/hci/commands/gdbstub_cmd.c @@ -15,9 +15,13 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA. + * + * You can also choose to distribute this program under the terms of + * the Unmodified Binary Distribution Licence (as given in the file + * COPYING.UBDL), provided that you have satisfied its requirements. */ -FILE_LICENCE ( GPL2_OR_LATER ); +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #include <stdio.h> #include <errno.h> diff --git a/src/include/ipxe/gdbserial.h b/src/include/ipxe/gdbserial.h index a3b5617..d02fb8d 100644 --- a/src/include/ipxe/gdbserial.h +++ b/src/include/ipxe/gdbserial.h @@ -7,7 +7,7 @@ * */ -FILE_LICENCE ( GPL2_OR_LATER ); +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); struct gdb_transport; diff --git a/src/include/ipxe/gdbstub.h b/src/include/ipxe/gdbstub.h index 3196067..13ca33d 100644 --- a/src/include/ipxe/gdbstub.h +++ b/src/include/ipxe/gdbstub.h @@ -7,7 +7,7 @@ * */ -FILE_LICENCE ( GPL2_OR_LATER ); +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #include <stdint.h> #include <ipxe/tables.h> diff --git a/src/include/ipxe/gdbudp.h b/src/include/ipxe/gdbudp.h index db7a451..a1c0915 100644 --- a/src/include/ipxe/gdbudp.h +++ b/src/include/ipxe/gdbudp.h @@ -7,7 +7,7 @@ * */ -FILE_LICENCE ( GPL2_OR_LATER ); +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); struct sockaddr_in; struct gdb_transport; diff --git a/src/include/ipxe/serial.h b/src/include/ipxe/serial.h index b47b1d1..86d0537 100644 --- a/src/include/ipxe/serial.h +++ b/src/include/ipxe/serial.h @@ -7,7 +7,7 @@ * */ -FILE_LICENCE ( GPL2_OR_LATER ); +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); extern void serial_putc ( int ch ); extern int serial_getc ( void ); diff --git a/src/net/vlan.c b/src/net/vlan.c index b4ddde4..49e3257 100644 --- a/src/net/vlan.c +++ b/src/net/vlan.c @@ -15,9 +15,13 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA. + * + * You can also choose to distribute this program under the terms of + * the Unmodified Binary Distribution Licence (as given in the file + * COPYING.UBDL), provided that you have satisfied its requirements. */ -FILE_LICENCE ( GPL2_OR_LATER ); +FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #include <stdint.h> #include <string.h> |