From b890a1228d22b2d48792575986d4750e88751c8b Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Thu, 26 Mar 2015 15:17:45 +0100 Subject: 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 Reviewed-on: http://review.coreboot.org/9233 Tested-by: build bot (Jenkins) Reviewed-by: Vladimir Serbinenko --- src/arch/mips/Kconfig | 3 +-- src/arch/mips/Makefile.inc | 3 +-- src/arch/mips/ashldi3.c | 2 +- src/arch/mips/boot.c | 2 +- src/arch/mips/bootblock.S | 2 +- src/arch/mips/bootblock_simple.c | 3 +-- src/arch/mips/cache.c | 2 +- src/arch/mips/include/arch/byteorder.h | 2 +- src/arch/mips/include/arch/cache.h | 2 +- src/arch/mips/include/arch/cpu.h | 2 +- src/arch/mips/include/arch/early_variables.h | 2 +- src/arch/mips/include/arch/exception.h | 2 +- src/arch/mips/include/arch/header.ld | 2 +- src/arch/mips/include/arch/hlt.h | 2 +- src/arch/mips/include/arch/io.h | 2 +- src/arch/mips/include/arch/memlayout.h | 2 +- src/arch/mips/include/arch/mmu.h | 2 +- src/arch/mips/include/arch/pci_ops.h | 2 +- src/arch/mips/include/arch/stages.h | 2 +- src/arch/mips/include/arch/types.h | 2 +- src/arch/mips/include/bootblock_common.h | 2 +- src/arch/mips/include/stdint.h | 2 +- src/arch/mips/mmu.c | 3 +-- src/arch/mips/stages.c | 2 +- src/arch/mips/tables.c | 2 +- 25 files changed, 25 insertions(+), 29 deletions(-) (limited to 'src/arch/mips') diff --git a/src/arch/mips/Kconfig b/src/arch/mips/Kconfig index 10349f2d1b..622fc826df 100644 --- a/src/arch/mips/Kconfig +++ b/src/arch/mips/Kconfig @@ -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. # config ARCH_MIPS diff --git a/src/arch/mips/Makefile.inc b/src/arch/mips/Makefile.inc index b92127af9a..cff0151406 100644 --- a/src/arch/mips/Makefile.inc +++ b/src/arch/mips/Makefile.inc @@ -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. # ############################################################################### diff --git a/src/arch/mips/ashldi3.c b/src/arch/mips/ashldi3.c index caa69fa3e1..18af6b32e7 100644 --- a/src/arch/mips/ashldi3.c +++ b/src/arch/mips/ashldi3.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. */ #ifndef __ORDER_LITTLE_ENDIAN__ diff --git a/src/arch/mips/boot.c b/src/arch/mips/boot.c index 549d4833ca..2ac50b3183 100644 --- a/src/arch/mips/boot.c +++ b/src/arch/mips/boot.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 diff --git a/src/arch/mips/bootblock.S b/src/arch/mips/bootblock.S index 8899fe0a97..e24848dbe9 100644 --- a/src/arch/mips/bootblock.S +++ b/src/arch/mips/bootblock.S @@ -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. */ .set noreorder /* Prevent assembler from "optimizing" this code. */ diff --git a/src/arch/mips/bootblock_simple.c b/src/arch/mips/bootblock_simple.c index 85f9336e34..1a3c6774f3 100644 --- a/src/arch/mips/bootblock_simple.c +++ b/src/arch/mips/bootblock_simple.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 diff --git a/src/arch/mips/cache.c b/src/arch/mips/cache.c index 0347619fc6..7d96426c9a 100644 --- a/src/arch/mips/cache.c +++ b/src/arch/mips/cache.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 diff --git a/src/arch/mips/include/arch/byteorder.h b/src/arch/mips/include/arch/byteorder.h index a70ce82bac..a4360ed94a 100644 --- a/src/arch/mips/include/arch/byteorder.h +++ b/src/arch/mips/include/arch/byteorder.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. */ #ifndef __MIPS_ARCH_BYTEORDER_H diff --git a/src/arch/mips/include/arch/cache.h b/src/arch/mips/include/arch/cache.h index 3b89632dcd..a6fda1e81f 100644 --- a/src/arch/mips/include/arch/cache.h +++ b/src/arch/mips/include/arch/cache.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. */ #ifndef __MIPS_ARCH_CACHE_H diff --git a/src/arch/mips/include/arch/cpu.h b/src/arch/mips/include/arch/cpu.h index e04621420e..a13113cdb8 100644 --- a/src/arch/mips/include/arch/cpu.h +++ b/src/arch/mips/include/arch/cpu.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. */ #ifndef __MIPS_ARCH_CPU_H diff --git a/src/arch/mips/include/arch/early_variables.h b/src/arch/mips/include/arch/early_variables.h index f16a0e8a51..c21fa8c8e1 100644 --- a/src/arch/mips/include/arch/early_variables.h +++ b/src/arch/mips/include/arch/early_variables.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. */ #ifndef __MIPS_ARCH_EARLY_VARIABLES_H diff --git a/src/arch/mips/include/arch/exception.h b/src/arch/mips/include/arch/exception.h index ff92728005..a872c04c72 100644 --- a/src/arch/mips/include/arch/exception.h +++ b/src/arch/mips/include/arch/exception.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. */ #ifndef __MIPS_ARCH_EXCEPTION_H diff --git a/src/arch/mips/include/arch/header.ld b/src/arch/mips/include/arch/header.ld index 0c7d7a1582..9310e334f3 100644 --- a/src/arch/mips/include/arch/header.ld +++ b/src/arch/mips/include/arch/header.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. */ /* We use ELF as output format. So that we can debug the code in some form. */ diff --git a/src/arch/mips/include/arch/hlt.h b/src/arch/mips/include/arch/hlt.h index 851de56556..3d66beb24f 100644 --- a/src/arch/mips/include/arch/hlt.h +++ b/src/arch/mips/include/arch/hlt.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. */ #ifndef __MIPS_ARCH_HLT_H diff --git a/src/arch/mips/include/arch/io.h b/src/arch/mips/include/arch/io.h index 1d3d6c4504..95c40d8bc4 100644 --- a/src/arch/mips/include/arch/io.h +++ b/src/arch/mips/include/arch/io.h @@ -18,7 +18,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. */ #ifndef __MIPS_ARCH_IO_H diff --git a/src/arch/mips/include/arch/memlayout.h b/src/arch/mips/include/arch/memlayout.h index 0b30338fbf..949317308d 100644 --- a/src/arch/mips/include/arch/memlayout.h +++ b/src/arch/mips/include/arch/memlayout.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. */ /* This file contains macro definitions for memlayout.ld linker scripts. */ diff --git a/src/arch/mips/include/arch/mmu.h b/src/arch/mips/include/arch/mmu.h index 27385f81e5..e931ad9da6 100644 --- a/src/arch/mips/include/arch/mmu.h +++ b/src/arch/mips/include/arch/mmu.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. */ #ifndef __MIPS_ARCH_MMU_H diff --git a/src/arch/mips/include/arch/pci_ops.h b/src/arch/mips/include/arch/pci_ops.h index 1b3f07417b..df51a5afe0 100644 --- a/src/arch/mips/include/arch/pci_ops.h +++ b/src/arch/mips/include/arch/pci_ops.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. */ #ifndef ARCH_MIPS_PCI_OPS_H diff --git a/src/arch/mips/include/arch/stages.h b/src/arch/mips/include/arch/stages.h index 3015bb135e..17115cb9ae 100644 --- a/src/arch/mips/include/arch/stages.h +++ b/src/arch/mips/include/arch/stages.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. */ #ifndef __MIPS_ARCH_STAGES_H diff --git a/src/arch/mips/include/arch/types.h b/src/arch/mips/include/arch/types.h index c3eae24e09..4e12181852 100644 --- a/src/arch/mips/include/arch/types.h +++ b/src/arch/mips/include/arch/types.h @@ -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. */ #ifndef __MIPS_ARCH_TYPES_H diff --git a/src/arch/mips/include/bootblock_common.h b/src/arch/mips/include/bootblock_common.h index e1960ba6a4..4b2fd087ea 100644 --- a/src/arch/mips/include/bootblock_common.h +++ b/src/arch/mips/include/bootblock_common.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. */ #ifdef CONFIG_BOOTBLOCK_CPU_INIT diff --git a/src/arch/mips/include/stdint.h b/src/arch/mips/include/stdint.h index 5095fa8c9f..a9579f59ca 100644 --- a/src/arch/mips/include/stdint.h +++ b/src/arch/mips/include/stdint.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. */ #ifndef __MIPS_STDINT_H diff --git a/src/arch/mips/mmu.c b/src/arch/mips/mmu.c index f6944ddad3..706d05e9e7 100644 --- a/src/arch/mips/mmu.c +++ b/src/arch/mips/mmu.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 diff --git a/src/arch/mips/stages.c b/src/arch/mips/stages.c index d6b36afe67..f6cefbbe7d 100644 --- a/src/arch/mips/stages.c +++ b/src/arch/mips/stages.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 diff --git a/src/arch/mips/tables.c b/src/arch/mips/tables.c index 9bd72d7a64..3d6d701322 100644 --- a/src/arch/mips/tables.c +++ b/src/arch/mips/tables.c @@ -17,7 +17,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 -- cgit v1.2.3