aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2009-01-15 20:52:58 -0500
committerKevin O'Connor <kevin@koconnor.net>2009-01-15 20:52:58 -0500
commitb1b7c2a1c3b940b787fdb5da67fc37003e9d7b0e (patch)
treed1c22249051f02ab930502a6b8b9f5bc4120e81a /src
parent7061eb6aa6adc19f965d01509483c67a201c8b35 (diff)
downloadseabios-hppa-b1b7c2a1c3b940b787fdb5da67fc37003e9d7b0e.zip
seabios-hppa-b1b7c2a1c3b940b787fdb5da67fc37003e9d7b0e.tar.gz
seabios-hppa-b1b7c2a1c3b940b787fdb5da67fc37003e9d7b0e.tar.bz2
Change license from GPLv3 to LGPLv3.
Change license of contributions from Kevin O'Connor from GPLv3 to LGPLv3 (or later). Since the work as a whole is based on Kevin's contributions and the "bochs bios" which has a license of LGPL (v2 or later), this effectively makes the work as a whole available under LGPLv3 (or later).
Diffstat (limited to 'src')
-rw-r--r--src/acpi.c2
-rw-r--r--src/apm.c2
-rw-r--r--src/ata.c2
-rw-r--r--src/biosvar.h2
-rw-r--r--src/boot.c2
-rw-r--r--src/bregs.h2
-rw-r--r--src/cbt.c2
-rw-r--r--src/cdrom.c2
-rw-r--r--src/clock.c2
-rw-r--r--src/cmos.h2
-rw-r--r--src/coreboot.c2
-rw-r--r--src/disk.c2
-rw-r--r--src/disk.h2
-rw-r--r--src/farptr.h2
-rw-r--r--src/floppy.c2
-rw-r--r--src/floppy_dbt.c2
-rw-r--r--src/ioport.h2
-rw-r--r--src/kbd.c2
-rw-r--r--src/memmap.c2
-rw-r--r--src/mouse.c2
-rw-r--r--src/mptable.c2
-rw-r--r--src/mtrr.c2
-rw-r--r--src/optionroms.c2
-rw-r--r--src/output.c2
-rw-r--r--src/pci.c2
-rw-r--r--src/pcibios.c2
-rw-r--r--src/pciinit.c2
-rw-r--r--src/pic.c2
-rw-r--r--src/pic.h2
-rw-r--r--src/pirtable.c2
-rw-r--r--src/pnpbios.c2
-rw-r--r--src/post.c2
-rw-r--r--src/post_menu.c2
-rw-r--r--src/ps2port.c4
-rw-r--r--src/resume.c2
-rw-r--r--src/rombios.lds.S2
-rw-r--r--src/rombios16.lds.S2
-rw-r--r--src/rombios32.lds.S2
-rw-r--r--src/romlayout.S2
-rw-r--r--src/serial.c2
-rw-r--r--src/shadow.c2
-rw-r--r--src/smbios.c2
-rw-r--r--src/smm.c2
-rw-r--r--src/smpdetect.c2
-rw-r--r--src/system.c2
-rw-r--r--src/types.h2
-rw-r--r--src/util.c2
-rw-r--r--src/util.h2
-rw-r--r--src/vgahooks.c2
49 files changed, 50 insertions, 50 deletions
diff --git a/src/acpi.c b/src/acpi.c
index cf8e3fa..17b0a92 100644
--- a/src/acpi.c
+++ b/src/acpi.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2006 Fabrice Bellard
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "acpi.h" // struct rsdp_descriptor
#include "util.h" // memcpy
diff --git a/src/apm.c b/src/apm.c
index fbbd511..6efead0 100644
--- a/src/apm.c
+++ b/src/apm.c
@@ -4,7 +4,7 @@
// Copyright (C) 2005 Struan Bartlett
// Copyright (C) 2004 Fabrice Bellard
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "farptr.h" // GET_VAR
#include "bregs.h" // struct bregs
diff --git a/src/ata.c b/src/ata.c
index 81d00cd..0b0bdc1 100644
--- a/src/ata.c
+++ b/src/ata.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "types.h" // u8
#include "ioport.h" // inb
diff --git a/src/biosvar.h b/src/biosvar.h
index 5c948ca..5105696 100644
--- a/src/biosvar.h
+++ b/src/biosvar.h
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#ifndef __BIOSVAR_H
#define __BIOSVAR_H
diff --git a/src/boot.c b/src/boot.c
index bc13f79..e0fb67a 100644
--- a/src/boot.c
+++ b/src/boot.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "util.h" // irq_enable
#include "biosvar.h" // GET_EBDA
diff --git a/src/bregs.h b/src/bregs.h
index 4d6a699..e420bbe 100644
--- a/src/bregs.h
+++ b/src/bregs.h
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#ifndef __BREGS_H
#define __BREGS_H
diff --git a/src/cbt.c b/src/cbt.c
index 5554fda..bb7aea3 100644
--- a/src/cbt.c
+++ b/src/cbt.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "biosvar.h" // CONFIG_BIOS_TABLE
diff --git a/src/cdrom.c b/src/cdrom.c
index dbf4379..a7cf6c2 100644
--- a/src/cdrom.c
+++ b/src/cdrom.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "disk.h" // cdrom_13
#include "util.h" // memset
diff --git a/src/clock.c b/src/clock.c
index caa94ba..ccc05f4 100644
--- a/src/clock.c
+++ b/src/clock.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "biosvar.h" // SET_BDA
#include "util.h" // debug_enter
diff --git a/src/cmos.h b/src/cmos.h
index 5c7b39d..aa8bcae 100644
--- a/src/cmos.h
+++ b/src/cmos.h
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#ifndef __CMOS_H
#define __CMOS_H
diff --git a/src/coreboot.c b/src/coreboot.c
index 8b93e26..051cd80 100644
--- a/src/coreboot.c
+++ b/src/coreboot.c
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "memmap.h" // add_e820
#include "util.h" // dprintf
diff --git a/src/disk.c b/src/disk.c
index f63a833..d5c7df2 100644
--- a/src/disk.c
+++ b/src/disk.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "disk.h" // floppy_13
#include "biosvar.h" // SET_BDA
diff --git a/src/disk.h b/src/disk.h
index 5e7d0fb..ea42cf8 100644
--- a/src/disk.h
+++ b/src/disk.h
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#ifndef __DISK_H
#define __DISK_H
diff --git a/src/farptr.h b/src/farptr.h
index cb301b1..a32bf73 100644
--- a/src/farptr.h
+++ b/src/farptr.h
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#ifndef __FARPTR_H
#define __FARPTR_H
diff --git a/src/floppy.c b/src/floppy.c
index 3e78214..6214acb 100644
--- a/src/floppy.c
+++ b/src/floppy.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "types.h" // u8
#include "disk.h" // DISK_RET_SUCCESS
diff --git a/src/floppy_dbt.c b/src/floppy_dbt.c
index 2a686dc..a988201 100644
--- a/src/floppy_dbt.c
+++ b/src/floppy_dbt.c
@@ -2,7 +2,7 @@
//
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "disk.h" // struct floppy_dbt_s
diff --git a/src/ioport.h b/src/ioport.h
index cb11a3d..97546a6 100644
--- a/src/ioport.h
+++ b/src/ioport.h
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#ifndef __IOPORT_H
#define __IOPORT_H
diff --git a/src/kbd.c b/src/kbd.c
index a88f1ea..e976350 100644
--- a/src/kbd.c
+++ b/src/kbd.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "biosvar.h" // GET_BDA
#include "util.h" // debug_enter
diff --git a/src/memmap.c b/src/memmap.c
index 2bcb254..372ec52 100644
--- a/src/memmap.c
+++ b/src/memmap.c
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "memmap.h" // struct e820entry
#include "util.h" // dprintf.h
diff --git a/src/mouse.c b/src/mouse.c
index b57a7e7..19fc6ec 100644
--- a/src/mouse.c
+++ b/src/mouse.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "biosvar.h" // GET_EBDA
#include "util.h" // debug_isr
diff --git a/src/mptable.c b/src/mptable.c
index 1dd45ec..bdb1f2e 100644
--- a/src/mptable.c
+++ b/src/mptable.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2006 Fabrice Bellard
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "util.h" // dprintf
#include "memmap.h" // bios_table_cur_addr
diff --git a/src/mtrr.c b/src/mtrr.c
index 161c1c0..d14a25c 100644
--- a/src/mtrr.c
+++ b/src/mtrr.c
@@ -2,7 +2,7 @@
//
// Copyright (C) 2006 Fabrice Bellard
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "util.h" // dprintf
#include "biosvar.h" // GET_EBDA
diff --git a/src/optionroms.c b/src/optionroms.c
index 44001ee..c2a563b 100644
--- a/src/optionroms.c
+++ b/src/optionroms.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "bregs.h" // struct bregs
#include "farptr.h" // FARPTR_TO_SEG
diff --git a/src/output.c b/src/output.c
index 356f2e5..63aec9d 100644
--- a/src/output.c
+++ b/src/output.c
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include <stdarg.h> // va_list
diff --git a/src/pci.c b/src/pci.c
index 5e8d7bb..a59af07 100644
--- a/src/pci.c
+++ b/src/pci.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "pci.h" // pci_config_writel
#include "ioport.h" // outl
diff --git a/src/pcibios.c b/src/pcibios.c
index cdda347..0dafcf1 100644
--- a/src/pcibios.c
+++ b/src/pcibios.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "types.h" // u32
#include "util.h" // handle_1ab1
diff --git a/src/pciinit.c b/src/pciinit.c
index 95b8dd9..78f4212 100644
--- a/src/pciinit.c
+++ b/src/pciinit.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2006 Fabrice Bellard
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "util.h" // dprintf
#include "pci.h" // pci_config_readl
diff --git a/src/pic.c b/src/pic.c
index 7ffdcb4..aa0453a 100644
--- a/src/pic.c
+++ b/src/pic.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "pic.h" // get_pic1_isr
#include "util.h" // dprintf
diff --git a/src/pic.h b/src/pic.h
index d4228e1..3056676 100644
--- a/src/pic.h
+++ b/src/pic.h
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#ifndef __PIC_H
#define __PIC_H
diff --git a/src/pirtable.c b/src/pirtable.c
index ba141a5..ad5cf27 100644
--- a/src/pirtable.c
+++ b/src/pirtable.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "pci.h" // struct pir_header
#include "util.h" // checksum
diff --git a/src/pnpbios.c b/src/pnpbios.c
index 8bf71dc..6daa025 100644
--- a/src/pnpbios.c
+++ b/src/pnpbios.c
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "util.h" // checksum
#include "config.h" // BUILD_BIOS_ADDR
diff --git a/src/post.c b/src/post.c
index 0fd41f9..bfa6562 100644
--- a/src/post.c
+++ b/src/post.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "ioport.h" // PORT_*
#include "config.h" // CONFIG_*
diff --git a/src/post_menu.c b/src/post_menu.c
index 8b6e58a..3182d3c 100644
--- a/src/post_menu.c
+++ b/src/post_menu.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "biosvar.h" // GET_EBDA
#include "util.h" // mdelay
diff --git a/src/ps2port.c b/src/ps2port.c
index ed401bf..3f2fee7 100644
--- a/src/ps2port.c
+++ b/src/ps2port.c
@@ -1,9 +1,9 @@
// Support for handling the PS/2 mouse/keyboard ports.
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
-// Based on code Copyright (c) 1999-2004 Vojtech Pavlik
+// Several ideas taken from code Copyright (c) 1999-2004 Vojtech Pavlik
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "ioport.h" // inb
#include "util.h" // dprintf
diff --git a/src/resume.c b/src/resume.c
index 2100383..1bffd49 100644
--- a/src/resume.c
+++ b/src/resume.c
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "util.h" // dprintf
#include "ioport.h" // outb
diff --git a/src/rombios.lds.S b/src/rombios.lds.S
index 1305c40..56bf643 100644
--- a/src/rombios.lds.S
+++ b/src/rombios.lds.S
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "config.h"
diff --git a/src/rombios16.lds.S b/src/rombios16.lds.S
index 2966ce6..b2d7ecc 100644
--- a/src/rombios16.lds.S
+++ b/src/rombios16.lds.S
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "config.h"
diff --git a/src/rombios32.lds.S b/src/rombios32.lds.S
index cc3fc36..6d73537 100644
--- a/src/rombios32.lds.S
+++ b/src/rombios32.lds.S
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "config.h"
diff --git a/src/romlayout.S b/src/romlayout.S
index 6c5429d..7fd7f3e 100644
--- a/src/romlayout.S
+++ b/src/romlayout.S
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "config.h" // CONFIG_*
#include "ioport.h" // PORT_A20
diff --git a/src/serial.c b/src/serial.c
index 6d1f928..6de6636 100644
--- a/src/serial.c
+++ b/src/serial.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "biosvar.h" // SET_BDA
#include "util.h" // debug_enter
diff --git a/src/shadow.c b/src/shadow.c
index 4e13922..264656d 100644
--- a/src/shadow.c
+++ b/src/shadow.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2006 Fabrice Bellard
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "util.h" // memcpy
#include "pci.h" // pci_config_writeb
diff --git a/src/smbios.c b/src/smbios.c
index d0e1ebe..e2f2190 100644
--- a/src/smbios.c
+++ b/src/smbios.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2006 Fabrice Bellard
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "util.h" // dprintf
#include "memmap.h" // bios_table_cur_addr
diff --git a/src/smm.c b/src/smm.c
index 07c2898..ac65837 100644
--- a/src/smm.c
+++ b/src/smm.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2006 Fabrice Bellard
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "pci.h" // pci_config_writel
#include "util.h" // wbinvd
diff --git a/src/smpdetect.c b/src/smpdetect.c
index b334649..0617be4 100644
--- a/src/smpdetect.c
+++ b/src/smpdetect.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2006 Fabrice Bellard
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "util.h" // dprintf
#include "config.h" // CONFIG_*
diff --git a/src/system.c b/src/system.c
index 47d5817..9bf4a5d 100644
--- a/src/system.c
+++ b/src/system.c
@@ -3,7 +3,7 @@
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002 MandrakeSoft S.A.
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "util.h" // irq_restore
#include "biosvar.h" // BIOS_CONFIG_TABLE
diff --git a/src/types.h b/src/types.h
index 587cb41..74d9e71 100644
--- a/src/types.h
+++ b/src/types.h
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#ifndef __TYPES_H
#define __TYPES_H
diff --git a/src/util.c b/src/util.c
index abc1fb2..af5dbd3 100644
--- a/src/util.c
+++ b/src/util.c
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "util.h" // usleep
#include "bregs.h" // struct bregs
diff --git a/src/util.h b/src/util.h
index 0c9be5e..7492c55 100644
--- a/src/util.h
+++ b/src/util.h
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#ifndef __UTIL_H
#define __UTIL_H
diff --git a/src/vgahooks.c b/src/vgahooks.c
index 7cacbdf..fcb7793 100644
--- a/src/vgahooks.c
+++ b/src/vgahooks.c
@@ -2,7 +2,7 @@
//
// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
//
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "bregs.h" // set_code_fail
#include "biosvar.h" // GET_GLOBAL