summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2015-03-26 15:17:45 +0100
committerPatrick Georgi <pgeorgi@google.com>2015-05-21 20:50:25 +0200
commitb890a1228d22b2d48792575986d4750e88751c8b (patch)
tree71fd1318aa06ef11937236e1ef2ac5a6f386f723 /src/lib
parent537283ddc55549b5fa0f1ba05f2b447a0cd9478f (diff)
downloadcoreboot-b890a1228d22b2d48792575986d4750e88751c8b.tar.xz
Remove address from GPLv2 headers
As per discussion with lawyers[tm], it's not a good idea to shorten the license header too much - not for legal reasons but because there are tools that look for them, and giving them a standard pattern simplifies things. However, we got confirmation that we don't have to update every file ever added to coreboot whenever the FSF gets a new lease, but can drop the address instead. util/kconfig is excluded because that's imported code that we may want to synchronize every now and then. $ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *MA[, ]*02110-1301[, ]*USA:Foundation, Inc.:" {} + $ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA:Foundation, Inc.:" {} + $ find * -type f -exec sed -i "s:Foundation, Inc., 59 Temple Place[-, ]*Suite 330, Boston, MA *02111-1307[, ]*USA:Foundation, Inc.:" {} + $ find * -type f -exec sed -i "s:Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.:Foundation, Inc.:" {} + $ find * -type f -a \! -name \*.patch \ -a \! -name \*_shipped \ -a \! -name LICENSE_GPL \ -a \! -name LGPL.txt \ -a \! -name COPYING \ -a \! -name DISCLAIMER \ -exec sed -i "/Foundation, Inc./ N;s:Foundation, Inc.* USA\.* *:Foundation, Inc. :;s:Foundation, Inc. $:Foundation, Inc.:" {} + Change-Id: Icc968a5a5f3a5df8d32b940f9cdb35350654bef9 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: http://review.coreboot.org/9233 Tested-by: build bot (Jenkins) Reviewed-by: Vladimir Serbinenko <phcoder@gmail.com>
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/Makefile.inc2
-rw-r--r--src/lib/bootblock.ld2
-rw-r--r--src/lib/bootmem.c2
-rw-r--r--src/lib/bootmode.c2
-rw-r--r--src/lib/cbfs.c2
-rw-r--r--src/lib/cbfs_spi.c2
-rw-r--r--src/lib/cbmem_common.c2
-rw-r--r--src/lib/cbmem_console.c2
-rw-r--r--src/lib/coreboot_table.c3
-rw-r--r--src/lib/debug.c3
-rw-r--r--src/lib/gcc.c2
-rw-r--r--src/lib/gcov-glue.c2
-rw-r--r--src/lib/gpio.c2
-rw-r--r--src/lib/halt.c3
-rw-r--r--src/lib/hardwaremain.c2
-rw-r--r--src/lib/hexdump.c3
-rw-r--r--src/lib/jpeg.c2
-rw-r--r--src/lib/jpeg.h2
-rw-r--r--src/lib/loaders/Makefile.inc2
-rw-r--r--src/lib/loaders/cbfs_payload_loader.c2
-rw-r--r--src/lib/loaders/cbfs_ramstage_loader.c2
-rw-r--r--src/lib/loaders/load_and_run_payload.c2
-rw-r--r--src/lib/loaders/load_and_run_ramstage.c2
-rw-r--r--src/lib/loaders/load_and_run_romstage.c2
-rw-r--r--src/lib/memrange.c2
-rw-r--r--src/lib/mocked_tlcl.c2
-rw-r--r--src/lib/primitive_memtest.c2
-rw-r--r--src/lib/prog_ops.c2
-rw-r--r--src/lib/ramstage.ld2
-rw-r--r--src/lib/reg_script.c2
-rw-r--r--src/lib/rmodule.c2
-rw-r--r--src/lib/romstage.ld2
-rw-r--r--src/lib/selfboot.c2
-rw-r--r--src/lib/thread.c2
-rw-r--r--src/lib/timer.c2
-rw-r--r--src/lib/timer_queue.c2
-rw-r--r--src/lib/timestamp.c2
-rw-r--r--src/lib/trace.c2
38 files changed, 38 insertions, 42 deletions
diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.inc
index b583e6dc28..11562bd059 100644
--- a/src/lib/Makefile.inc
+++ b/src/lib/Makefile.inc
@@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+# Foundation, Inc.
#
subdirs-y += loaders
diff --git a/src/lib/bootblock.ld b/src/lib/bootblock.ld
index 8c93342532..42e6d64907 100644
--- a/src/lib/bootblock.ld
+++ b/src/lib/bootblock.ld
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
/* This file is included inside a SECTIONS block */
diff --git a/src/lib/bootmem.c b/src/lib/bootmem.c
index f1bd7cc127..723c29be0d 100644
--- a/src/lib/bootmem.c
+++ b/src/lib/bootmem.c
@@ -16,7 +16,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
diff --git a/src/lib/bootmode.c b/src/lib/bootmode.c
index 98184901df..c7e4927ca1 100644
--- a/src/lib/bootmode.c
+++ b/src/lib/bootmode.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <rules.h>
diff --git a/src/lib/cbfs.c b/src/lib/cbfs.c
index 8239f07c83..00071f8934 100644
--- a/src/lib/cbfs.c
+++ b/src/lib/cbfs.c
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
+ * Foundation, Inc.
*/
diff --git a/src/lib/cbfs_spi.c b/src/lib/cbfs_spi.c
index 81e6ec3ce6..6c8d78db75 100644
--- a/src/lib/cbfs_spi.c
+++ b/src/lib/cbfs_spi.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
/*
diff --git a/src/lib/cbmem_common.c b/src/lib/cbmem_common.c
index 6d581c40b2..e9beb5fe6a 100644
--- a/src/lib/cbmem_common.c
+++ b/src/lib/cbmem_common.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
#include <cbmem.h>
diff --git a/src/lib/cbmem_console.c b/src/lib/cbmem_console.c
index 9d292bfb58..30bf439511 100644
--- a/src/lib/cbmem_console.c
+++ b/src/lib/cbmem_console.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
diff --git a/src/lib/coreboot_table.c b/src/lib/coreboot_table.c
index 4af50edb92..b1fbef6026 100644
--- a/src/lib/coreboot_table.c
+++ b/src/lib/coreboot_table.c
@@ -16,8 +16,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
- * MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
diff --git a/src/lib/debug.c b/src/lib/debug.c
index 8d629c2019..8443afa673 100644
--- a/src/lib/debug.c
+++ b/src/lib/debug.c
@@ -15,8 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
- * MA 02110-1301 USA
+ * Foundation, Inc.
*/
static void print_debug_pci_dev(unsigned dev)
diff --git a/src/lib/gcc.c b/src/lib/gcc.c
index 0db7196c0e..22de32815c 100644
--- a/src/lib/gcc.c
+++ b/src/lib/gcc.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
+ * Foundation, Inc.
*/
#include <arch/cpu.h>
diff --git a/src/lib/gcov-glue.c b/src/lib/gcov-glue.c
index 615624fadb..b193545438 100644
--- a/src/lib/gcov-glue.c
+++ b/src/lib/gcov-glue.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
+ * Foundation, Inc.
*/
#include <stdint.h>
diff --git a/src/lib/gpio.c b/src/lib/gpio.c
index 633eabb4f5..b185cc2c6a 100644
--- a/src/lib/gpio.c
+++ b/src/lib/gpio.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <base3.h>
diff --git a/src/lib/halt.c b/src/lib/halt.c
index edd5f5e915..145ef1ab3f 100644
--- a/src/lib/halt.c
+++ b/src/lib/halt.c
@@ -15,8 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
- * MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <arch/hlt.h>
diff --git a/src/lib/hardwaremain.c b/src/lib/hardwaremain.c
index 295edcdd69..80f677695c 100644
--- a/src/lib/hardwaremain.c
+++ b/src/lib/hardwaremain.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
diff --git a/src/lib/hexdump.c b/src/lib/hexdump.c
index a15c5cdb11..1329f22244 100644
--- a/src/lib/hexdump.c
+++ b/src/lib/hexdump.c
@@ -16,8 +16,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
diff --git a/src/lib/jpeg.c b/src/lib/jpeg.c
index 4297299ee5..a86ea06661 100644
--- a/src/lib/jpeg.c
+++ b/src/lib/jpeg.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
/*
diff --git a/src/lib/jpeg.h b/src/lib/jpeg.h
index b2f5923217..a32e4aff8e 100644
--- a/src/lib/jpeg.h
+++ b/src/lib/jpeg.h
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
/*
diff --git a/src/lib/loaders/Makefile.inc b/src/lib/loaders/Makefile.inc
index 9dca06bcfa..ef5af6a7aa 100644
--- a/src/lib/loaders/Makefile.inc
+++ b/src/lib/loaders/Makefile.inc
@@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+# Foundation, Inc.
#
bootblock-y += load_and_run_romstage.c
diff --git a/src/lib/loaders/cbfs_payload_loader.c b/src/lib/loaders/cbfs_payload_loader.c
index 3928613e73..8e790a2952 100644
--- a/src/lib/loaders/cbfs_payload_loader.c
+++ b/src/lib/loaders/cbfs_payload_loader.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <cbfs.h>
diff --git a/src/lib/loaders/cbfs_ramstage_loader.c b/src/lib/loaders/cbfs_ramstage_loader.c
index c4606536ad..acbc6c0afe 100644
--- a/src/lib/loaders/cbfs_ramstage_loader.c
+++ b/src/lib/loaders/cbfs_ramstage_loader.c
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
#include <cbfs.h>
diff --git a/src/lib/loaders/load_and_run_payload.c b/src/lib/loaders/load_and_run_payload.c
index 4928e0c1e0..6616110319 100644
--- a/src/lib/loaders/load_and_run_payload.c
+++ b/src/lib/loaders/load_and_run_payload.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <stdint.h>
diff --git a/src/lib/loaders/load_and_run_ramstage.c b/src/lib/loaders/load_and_run_ramstage.c
index 504dbff55c..47637b85fc 100644
--- a/src/lib/loaders/load_and_run_ramstage.c
+++ b/src/lib/loaders/load_and_run_ramstage.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <stdlib.h>
diff --git a/src/lib/loaders/load_and_run_romstage.c b/src/lib/loaders/load_and_run_romstage.c
index b54c6917ac..dfcb8597dc 100644
--- a/src/lib/loaders/load_and_run_romstage.c
+++ b/src/lib/loaders/load_and_run_romstage.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
diff --git a/src/lib/memrange.c b/src/lib/memrange.c
index d2ffa26e99..c8b0a07b81 100644
--- a/src/lib/memrange.c
+++ b/src/lib/memrange.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <stdlib.h>
#include <console/console.h>
diff --git a/src/lib/mocked_tlcl.c b/src/lib/mocked_tlcl.c
index 628afc2f4e..c5c12bfd3b 100644
--- a/src/lib/mocked_tlcl.c
+++ b/src/lib/mocked_tlcl.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <tpm_lite/tlcl.h>
diff --git a/src/lib/primitive_memtest.c b/src/lib/primitive_memtest.c
index d59d25fd92..c9a3519969 100644
--- a/src/lib/primitive_memtest.c
+++ b/src/lib/primitive_memtest.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <inttypes.h>
diff --git a/src/lib/prog_ops.c b/src/lib/prog_ops.c
index 755b135615..80f4ff5a59 100644
--- a/src/lib/prog_ops.c
+++ b/src/lib/prog_ops.c
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <program_loading.h>
diff --git a/src/lib/ramstage.ld b/src/lib/ramstage.ld
index f12653ec2e..138f30eb43 100644
--- a/src/lib/ramstage.ld
+++ b/src/lib/ramstage.ld
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
/* This file is included inside a SECTIONS block */
diff --git a/src/lib/reg_script.c b/src/lib/reg_script.c
index bd9cdddf1a..4cc1ab0cd7 100644
--- a/src/lib/reg_script.c
+++ b/src/lib/reg_script.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <arch/io.h>
diff --git a/src/lib/rmodule.c b/src/lib/rmodule.c
index 799d8f00ed..359272fc2b 100644
--- a/src/lib/rmodule.c
+++ b/src/lib/rmodule.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <assert.h>
#include <cbmem.h>
diff --git a/src/lib/romstage.ld b/src/lib/romstage.ld
index 1e80962ab5..34e76c0c48 100644
--- a/src/lib/romstage.ld
+++ b/src/lib/romstage.ld
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
/* This file is included inside a SECTIONS block */
diff --git a/src/lib/selfboot.c b/src/lib/selfboot.c
index edf36e7073..06c0f601b4 100644
--- a/src/lib/selfboot.c
+++ b/src/lib/selfboot.c
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
diff --git a/src/lib/thread.c b/src/lib/thread.c
index 089ae3f04a..036c5ec514 100644
--- a/src/lib/thread.c
+++ b/src/lib/thread.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <stddef.h>
#include <stdint.h>
diff --git a/src/lib/timer.c b/src/lib/timer.c
index 8aeaa063c1..df4af7d39d 100644
--- a/src/lib/timer.c
+++ b/src/lib/timer.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
diff --git a/src/lib/timer_queue.c b/src/lib/timer_queue.c
index 8d11f107a8..c141bf2be8 100644
--- a/src/lib/timer_queue.c
+++ b/src/lib/timer_queue.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <stddef.h>
#include <timer.h>
diff --git a/src/lib/timestamp.c b/src/lib/timestamp.c
index 4b5f4d4b06..98ab243216 100644
--- a/src/lib/timestamp.c
+++ b/src/lib/timestamp.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
+ * Foundation, Inc.
*/
#include <stddef.h>
diff --git a/src/lib/trace.c b/src/lib/trace.c
index 185e6c8ab3..899842c784 100644
--- a/src/lib/trace.c
+++ b/src/lib/trace.c
@@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <types.h>