diff options
author | Patrick Georgi <pgeorgi@google.com> | 2015-03-26 15:17:45 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-05-21 20:50:25 +0200 |
commit | b890a1228d22b2d48792575986d4750e88751c8b (patch) | |
tree | 71fd1318aa06ef11937236e1ef2ac5a6f386f723 /src/arch/mips/include | |
parent | 537283ddc55549b5fa0f1ba05f2b447a0cd9478f (diff) | |
download | coreboot-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/arch/mips/include')
-rw-r--r-- | src/arch/mips/include/arch/byteorder.h | 2 | ||||
-rw-r--r-- | src/arch/mips/include/arch/cache.h | 2 | ||||
-rw-r--r-- | src/arch/mips/include/arch/cpu.h | 2 | ||||
-rw-r--r-- | src/arch/mips/include/arch/early_variables.h | 2 | ||||
-rw-r--r-- | src/arch/mips/include/arch/exception.h | 2 | ||||
-rw-r--r-- | src/arch/mips/include/arch/header.ld | 2 | ||||
-rw-r--r-- | src/arch/mips/include/arch/hlt.h | 2 | ||||
-rw-r--r-- | src/arch/mips/include/arch/io.h | 2 | ||||
-rw-r--r-- | src/arch/mips/include/arch/memlayout.h | 2 | ||||
-rw-r--r-- | src/arch/mips/include/arch/mmu.h | 2 | ||||
-rw-r--r-- | src/arch/mips/include/arch/pci_ops.h | 2 | ||||
-rw-r--r-- | src/arch/mips/include/arch/stages.h | 2 | ||||
-rw-r--r-- | src/arch/mips/include/arch/types.h | 2 | ||||
-rw-r--r-- | src/arch/mips/include/bootblock_common.h | 2 | ||||
-rw-r--r-- | src/arch/mips/include/stdint.h | 2 |
15 files changed, 15 insertions, 15 deletions
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 |