Martin Roth has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/34607 )
Change subject: AUTHORS: Move src/arch/mips copyrights into AUTHORS file ......................................................................
AUTHORS: Move src/arch/mips copyrights into AUTHORS file
As discussed on the mailing list and voted upon, the coreboot project is going to move the majority of copyrights out of the headers and into an AUTHORS file. This will happen a bit at a time, as we'll be unifying license headers at the same time.
Additional changes in this patch: - Remove comments saying that a file is based on another file from the coreboot project.
Signed-off-by: Martin Roth martin@coreboot.org Change-Id: If61689db67c58f0d66ab96ca749bfcd589935ce2 --- M AUTHORS M src/arch/mips/Kconfig M src/arch/mips/Makefile.inc M src/arch/mips/ashldi3.c M src/arch/mips/boot.c M src/arch/mips/bootblock.S M src/arch/mips/bootblock_simple.c M src/arch/mips/cache.c M src/arch/mips/include/arch/bootblock_common.h M src/arch/mips/include/arch/byteorder.h M src/arch/mips/include/arch/cache.h M src/arch/mips/include/arch/cbconfig.h M src/arch/mips/include/arch/cpu.h M src/arch/mips/include/arch/early_variables.h M src/arch/mips/include/arch/exception.h M src/arch/mips/include/arch/header.ld M src/arch/mips/include/arch/hlt.h M src/arch/mips/include/arch/memlayout.h M src/arch/mips/include/arch/mmio.h M src/arch/mips/include/arch/mmu.h M src/arch/mips/include/arch/pci_ops.h M src/arch/mips/include/arch/stages.h M src/arch/mips/include/arch/types.h M src/arch/mips/mmu.c M src/arch/mips/stages.c M src/arch/mips/tables.c 26 files changed, 3 insertions(+), 61 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/07/34607/1
diff --git a/AUTHORS b/AUTHORS index ad8433e..3dbd1d5 100644 --- a/AUTHORS +++ b/AUTHORS @@ -18,6 +18,7 @@ Free Software Foundation, Inc. Gary Jennejohn Google Inc. +Imagination Technologies Kshitij Marius Gröger MontaVista Software, Inc. diff --git a/src/arch/mips/Kconfig b/src/arch/mips/Kconfig index b8570c1..9df514b 100644 --- a/src/arch/mips/Kconfig +++ b/src/arch/mips/Kconfig @@ -1,8 +1,6 @@ # # This file is part of the coreboot project. # -# Copyright (C) 2014 Imagination Technologies -# # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; version 2 of diff --git a/src/arch/mips/Makefile.inc b/src/arch/mips/Makefile.inc index cd474ee..7130aba 100644 --- a/src/arch/mips/Makefile.inc +++ b/src/arch/mips/Makefile.inc @@ -1,8 +1,6 @@ # # This file is part of the coreboot project. # -# Copyright (C) 2014 Imagination Technologies -# # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; version 2 of diff --git a/src/arch/mips/ashldi3.c b/src/arch/mips/ashldi3.c index f68d78e..e3282f5 100644 --- a/src/arch/mips/ashldi3.c +++ b/src/arch/mips/ashldi3.c @@ -1,10 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Google, Inc. - * - * Based on linux arch/mips/lib/ashldi3.c - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. @@ -13,6 +9,8 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. + * + * Based on linux arch/mips/lib/ashldi3.c */
#ifndef __ORDER_LITTLE_ENDIAN__ diff --git a/src/arch/mips/boot.c b/src/arch/mips/boot.c index 5ab36ec..a8518cd 100644 --- a/src/arch/mips/boot.c +++ b/src/arch/mips/boot.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/bootblock.S b/src/arch/mips/bootblock.S index f8049c9..8ae1cfd 100644 --- a/src/arch/mips/bootblock.S +++ b/src/arch/mips/bootblock.S @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/bootblock_simple.c b/src/arch/mips/bootblock_simple.c index e195b6a..be0b176 100644 --- a/src/arch/mips/bootblock_simple.c +++ b/src/arch/mips/bootblock_simple.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; version 2 of diff --git a/src/arch/mips/cache.c b/src/arch/mips/cache.c index 62c20f3..2b56174 100644 --- a/src/arch/mips/cache.c +++ b/src/arch/mips/cache.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/bootblock_common.h b/src/arch/mips/include/arch/bootblock_common.h index f5c11ba..b930b5c 100644 --- a/src/arch/mips/include/arch/bootblock_common.h +++ b/src/arch/mips/include/arch/bootblock_common.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/byteorder.h b/src/arch/mips/include/arch/byteorder.h index 35d444b..7c0ce47 100644 --- a/src/arch/mips/include/arch/byteorder.h +++ b/src/arch/mips/include/arch/byteorder.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/cache.h b/src/arch/mips/include/arch/cache.h index 61a3e7c..c610c99 100644 --- a/src/arch/mips/include/arch/cache.h +++ b/src/arch/mips/include/arch/cache.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/cbconfig.h b/src/arch/mips/include/arch/cbconfig.h index 9467f52..35c1387 100644 --- a/src/arch/mips/include/arch/cbconfig.h +++ b/src/arch/mips/include/arch/cbconfig.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright 2016 Google Inc. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/cpu.h b/src/arch/mips/include/arch/cpu.h index 8e35908..9f39992 100644 --- a/src/arch/mips/include/arch/cpu.h +++ b/src/arch/mips/include/arch/cpu.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/early_variables.h b/src/arch/mips/include/arch/early_variables.h index 61f4653..8fc9c19 100644 --- a/src/arch/mips/include/arch/early_variables.h +++ b/src/arch/mips/include/arch/early_variables.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/exception.h b/src/arch/mips/include/arch/exception.h index e70d396..a0ab9ec 100644 --- a/src/arch/mips/include/arch/exception.h +++ b/src/arch/mips/include/arch/exception.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/header.ld b/src/arch/mips/include/arch/header.ld index 1d84a4e..6650132 100644 --- a/src/arch/mips/include/arch/header.ld +++ b/src/arch/mips/include/arch/header.ld @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright 2014 Google Inc. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/hlt.h b/src/arch/mips/include/arch/hlt.h index 703773b..5feafe2 100644 --- a/src/arch/mips/include/arch/hlt.h +++ b/src/arch/mips/include/arch/hlt.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/memlayout.h b/src/arch/mips/include/arch/memlayout.h index fe05bd8..bf862a3 100644 --- a/src/arch/mips/include/arch/memlayout.h +++ b/src/arch/mips/include/arch/memlayout.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright 2014 Google Inc. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/mmio.h b/src/arch/mips/include/arch/mmio.h index c491b51..2564e3b 100644 --- a/src/arch/mips/include/arch/mmio.h +++ b/src/arch/mips/include/arch/mmio.h @@ -1,12 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * - * Based on arch/armv7/include/arch/io.h: - * Copyright 2013 Google Inc. - * Copyright (C) 1996-2000 Russell King - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/mmu.h b/src/arch/mips/include/arch/mmu.h index 8997e27..f7377bb 100644 --- a/src/arch/mips/include/arch/mmu.h +++ b/src/arch/mips/include/arch/mmu.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2015 Google, Inc. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/pci_ops.h b/src/arch/mips/include/arch/pci_ops.h index 7bfcbdd..5be52aa 100644 --- a/src/arch/mips/include/arch/pci_ops.h +++ b/src/arch/mips/include/arch/pci_ops.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright 2013 Google Inc. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/stages.h b/src/arch/mips/include/arch/stages.h index 802199f..63306bd 100644 --- a/src/arch/mips/include/arch/stages.h +++ b/src/arch/mips/include/arch/stages.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/types.h b/src/arch/mips/include/arch/types.h index 31a2f9f..fa14b6a 100644 --- a/src/arch/mips/include/arch/types.h +++ b/src/arch/mips/include/arch/types.h @@ -1,10 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * - * Based on src/arch/armv7/include/arch/types.h - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/mmu.c b/src/arch/mips/mmu.c index b144fd3..5ef276d 100644 --- a/src/arch/mips/mmu.c +++ b/src/arch/mips/mmu.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2015 Google, Inc. - * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; version 2 of diff --git a/src/arch/mips/stages.c b/src/arch/mips/stages.c index e940faa..0971e98 100644 --- a/src/arch/mips/stages.c +++ b/src/arch/mips/stages.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/tables.c b/src/arch/mips/tables.c index 50d2a55..e9de4bf 100644 --- a/src/arch/mips/tables.c +++ b/src/arch/mips/tables.c @@ -1,11 +1,6 @@ /* * This file is part of the coreboot project. * - * Based on src/arch/armv7/tables.c: - * Copyright (C) 2003 Eric Biederman - * Copyright (C) 2005 Steve Magnani - * Copyright (C) 2008-2009 coresystems GmbH - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License.
Hello Julius Werner, build bot (Jenkins), Patrick Georgi,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/34607
to look at the new patch set (#2).
Change subject: AUTHORS: Move src/arch/mips copyrights into AUTHORS file ......................................................................
AUTHORS: Move src/arch/mips copyrights into AUTHORS file
As discussed on the mailing list and voted upon, the coreboot project is going to move the majority of copyrights out of the headers and into an AUTHORS file. This will happen a bit at a time, as we'll be unifying license headers at the same time.
Additional changes in this patch: - Remove comments saying that a file is based on another file from the coreboot project.
Signed-off-by: Martin Roth martin@coreboot.org Change-Id: If61689db67c58f0d66ab96ca749bfcd589935ce2 --- M AUTHORS M src/arch/mips/Kconfig M src/arch/mips/Makefile.inc M src/arch/mips/ashldi3.c M src/arch/mips/boot.c M src/arch/mips/bootblock.S M src/arch/mips/bootblock_simple.c M src/arch/mips/cache.c M src/arch/mips/include/arch/bootblock_common.h M src/arch/mips/include/arch/byteorder.h M src/arch/mips/include/arch/cache.h M src/arch/mips/include/arch/cbconfig.h M src/arch/mips/include/arch/cpu.h M src/arch/mips/include/arch/early_variables.h M src/arch/mips/include/arch/exception.h M src/arch/mips/include/arch/header.ld M src/arch/mips/include/arch/hlt.h M src/arch/mips/include/arch/memlayout.h M src/arch/mips/include/arch/mmio.h M src/arch/mips/include/arch/mmu.h M src/arch/mips/include/arch/pci_ops.h M src/arch/mips/include/arch/stages.h M src/arch/mips/include/arch/types.h M src/arch/mips/mmu.c M src/arch/mips/stages.c M src/arch/mips/tables.c 26 files changed, 4 insertions(+), 61 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/07/34607/2
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34607 )
Change subject: AUTHORS: Move src/arch/mips copyrights into AUTHORS file ......................................................................
Patch Set 3: Code-Review+2
Werner Zeh has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34607 )
Change subject: AUTHORS: Move src/arch/mips copyrights into AUTHORS file ......................................................................
Patch Set 3: Code-Review+1
(3 comments)
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/include/arch/... File src/arch/mips/include/arch/mmio.h:
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/include/arch/... PS3, Line 6: You have kept this information in other files. Do you want to keep it here as well?
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/include/arch/... File src/arch/mips/include/arch/types.h:
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/include/arch/... PS3, Line 6: Same here.
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/tables.c File src/arch/mips/tables.c:
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/tables.c@a4 PS3, Line 4: and here...
Martin Roth has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34607 )
Change subject: AUTHORS: Move src/arch/mips copyrights into AUTHORS file ......................................................................
Patch Set 3:
(3 comments)
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/include/arch/... File src/arch/mips/include/arch/mmio.h:
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/include/arch/... PS3, Line 6:
You have kept this information in other files. […]
I kept the ones saying that they were based on files from somewhere else, such as the linux kernel. I was removing the ones saying that they were based on other coreboot files.
If you disagree and feel they should be kept, I'd be glad to keep them. I just figured that since so many files in the coreboot codebase were based on other files from the same codebase, it wasn't really worth keeping.
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/include/arch/... File src/arch/mips/include/arch/types.h:
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/include/arch/... PS3, Line 6:
Same here.
And same reasoning on removing it.
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/tables.c File src/arch/mips/tables.c:
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/tables.c@a4 PS3, Line 4:
and here...
same.
Werner Zeh has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34607 )
Change subject: AUTHORS: Move src/arch/mips copyrights into AUTHORS file ......................................................................
Patch Set 3: Code-Review+2
(3 comments)
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/include/arch/... File src/arch/mips/include/arch/mmio.h:
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/include/arch/... PS3, Line 6:
I kept the ones saying that they were based on files from somewhere else, such as the linux kernel. […]
Oh, I have overseen the word "linux" in the other file. Sorry for the noise, fine with me.
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/include/arch/... File src/arch/mips/include/arch/types.h:
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/include/arch/... PS3, Line 6:
And same reasoning on removing it.
OK
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/tables.c File src/arch/mips/tables.c:
https://review.coreboot.org/c/coreboot/+/34607/3/src/arch/mips/tables.c@a4 PS3, Line 4:
same.
OK
Patrick Georgi has submitted this change and it was merged. ( https://review.coreboot.org/c/coreboot/+/34607 )
Change subject: AUTHORS: Move src/arch/mips copyrights into AUTHORS file ......................................................................
AUTHORS: Move src/arch/mips copyrights into AUTHORS file
As discussed on the mailing list and voted upon, the coreboot project is going to move the majority of copyrights out of the headers and into an AUTHORS file. This will happen a bit at a time, as we'll be unifying license headers at the same time.
Additional changes in this patch: - Remove comments saying that a file is based on another file from the coreboot project.
Signed-off-by: Martin Roth martin@coreboot.org Change-Id: If61689db67c58f0d66ab96ca749bfcd589935ce2 Reviewed-on: https://review.coreboot.org/c/coreboot/+/34607 Reviewed-by: Patrick Georgi pgeorgi@google.com Reviewed-by: Werner Zeh werner.zeh@siemens.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M AUTHORS M src/arch/mips/Kconfig M src/arch/mips/Makefile.inc M src/arch/mips/ashldi3.c M src/arch/mips/boot.c M src/arch/mips/bootblock.S M src/arch/mips/bootblock_simple.c M src/arch/mips/cache.c M src/arch/mips/include/arch/bootblock_common.h M src/arch/mips/include/arch/byteorder.h M src/arch/mips/include/arch/cache.h M src/arch/mips/include/arch/cbconfig.h M src/arch/mips/include/arch/cpu.h M src/arch/mips/include/arch/early_variables.h M src/arch/mips/include/arch/exception.h M src/arch/mips/include/arch/header.ld M src/arch/mips/include/arch/hlt.h M src/arch/mips/include/arch/memlayout.h M src/arch/mips/include/arch/mmio.h M src/arch/mips/include/arch/mmu.h M src/arch/mips/include/arch/pci_ops.h M src/arch/mips/include/arch/stages.h M src/arch/mips/include/arch/types.h M src/arch/mips/mmu.c M src/arch/mips/stages.c M src/arch/mips/tables.c 26 files changed, 4 insertions(+), 61 deletions(-)
Approvals: build bot (Jenkins): Verified Patrick Georgi: Looks good to me, approved Werner Zeh: Looks good to me, approved
diff --git a/AUTHORS b/AUTHORS index c4bfadf..0881639 100644 --- a/AUTHORS +++ b/AUTHORS @@ -19,6 +19,7 @@ Free Software Foundation, Inc. Gary Jennejohn Google LLC +Imagination Technologies Kshitij Marius Gröger MontaVista Software, Inc. @@ -43,3 +44,4 @@ src/acpi src/arch/arm src/arch/arm64 +src/arch/mips diff --git a/src/arch/mips/Kconfig b/src/arch/mips/Kconfig index b8570c1..9df514b 100644 --- a/src/arch/mips/Kconfig +++ b/src/arch/mips/Kconfig @@ -1,8 +1,6 @@ # # This file is part of the coreboot project. # -# Copyright (C) 2014 Imagination Technologies -# # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; version 2 of diff --git a/src/arch/mips/Makefile.inc b/src/arch/mips/Makefile.inc index cd474ee..7130aba 100644 --- a/src/arch/mips/Makefile.inc +++ b/src/arch/mips/Makefile.inc @@ -1,8 +1,6 @@ # # This file is part of the coreboot project. # -# Copyright (C) 2014 Imagination Technologies -# # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; version 2 of diff --git a/src/arch/mips/ashldi3.c b/src/arch/mips/ashldi3.c index f68d78e..e3282f5 100644 --- a/src/arch/mips/ashldi3.c +++ b/src/arch/mips/ashldi3.c @@ -1,10 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Google, Inc. - * - * Based on linux arch/mips/lib/ashldi3.c - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. @@ -13,6 +9,8 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. + * + * Based on linux arch/mips/lib/ashldi3.c */
#ifndef __ORDER_LITTLE_ENDIAN__ diff --git a/src/arch/mips/boot.c b/src/arch/mips/boot.c index 5ab36ec..a8518cd 100644 --- a/src/arch/mips/boot.c +++ b/src/arch/mips/boot.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/bootblock.S b/src/arch/mips/bootblock.S index f8049c9..8ae1cfd 100644 --- a/src/arch/mips/bootblock.S +++ b/src/arch/mips/bootblock.S @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/bootblock_simple.c b/src/arch/mips/bootblock_simple.c index e195b6a..be0b176 100644 --- a/src/arch/mips/bootblock_simple.c +++ b/src/arch/mips/bootblock_simple.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; version 2 of diff --git a/src/arch/mips/cache.c b/src/arch/mips/cache.c index 62c20f3..2b56174 100644 --- a/src/arch/mips/cache.c +++ b/src/arch/mips/cache.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/bootblock_common.h b/src/arch/mips/include/arch/bootblock_common.h index f5c11ba..b930b5c 100644 --- a/src/arch/mips/include/arch/bootblock_common.h +++ b/src/arch/mips/include/arch/bootblock_common.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/byteorder.h b/src/arch/mips/include/arch/byteorder.h index 35d444b..7c0ce47 100644 --- a/src/arch/mips/include/arch/byteorder.h +++ b/src/arch/mips/include/arch/byteorder.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/cache.h b/src/arch/mips/include/arch/cache.h index 61a3e7c..c610c99 100644 --- a/src/arch/mips/include/arch/cache.h +++ b/src/arch/mips/include/arch/cache.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/cbconfig.h b/src/arch/mips/include/arch/cbconfig.h index 9467f52..35c1387 100644 --- a/src/arch/mips/include/arch/cbconfig.h +++ b/src/arch/mips/include/arch/cbconfig.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright 2016 Google Inc. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/cpu.h b/src/arch/mips/include/arch/cpu.h index 28f0261..61eb082 100644 --- a/src/arch/mips/include/arch/cpu.h +++ b/src/arch/mips/include/arch/cpu.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/early_variables.h b/src/arch/mips/include/arch/early_variables.h index 61f4653..8fc9c19 100644 --- a/src/arch/mips/include/arch/early_variables.h +++ b/src/arch/mips/include/arch/early_variables.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/exception.h b/src/arch/mips/include/arch/exception.h index e70d396..a0ab9ec 100644 --- a/src/arch/mips/include/arch/exception.h +++ b/src/arch/mips/include/arch/exception.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/header.ld b/src/arch/mips/include/arch/header.ld index 1d84a4e..6650132 100644 --- a/src/arch/mips/include/arch/header.ld +++ b/src/arch/mips/include/arch/header.ld @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright 2014 Google Inc. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/hlt.h b/src/arch/mips/include/arch/hlt.h index 703773b..5feafe2 100644 --- a/src/arch/mips/include/arch/hlt.h +++ b/src/arch/mips/include/arch/hlt.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/memlayout.h b/src/arch/mips/include/arch/memlayout.h index fe05bd8..bf862a3 100644 --- a/src/arch/mips/include/arch/memlayout.h +++ b/src/arch/mips/include/arch/memlayout.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright 2014 Google Inc. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/mmio.h b/src/arch/mips/include/arch/mmio.h index c491b51..2564e3b 100644 --- a/src/arch/mips/include/arch/mmio.h +++ b/src/arch/mips/include/arch/mmio.h @@ -1,12 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * - * Based on arch/armv7/include/arch/io.h: - * Copyright 2013 Google Inc. - * Copyright (C) 1996-2000 Russell King - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/mmu.h b/src/arch/mips/include/arch/mmu.h index 8997e27..f7377bb 100644 --- a/src/arch/mips/include/arch/mmu.h +++ b/src/arch/mips/include/arch/mmu.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2015 Google, Inc. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/pci_ops.h b/src/arch/mips/include/arch/pci_ops.h index 7bfcbdd..5be52aa 100644 --- a/src/arch/mips/include/arch/pci_ops.h +++ b/src/arch/mips/include/arch/pci_ops.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright 2013 Google Inc. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/stages.h b/src/arch/mips/include/arch/stages.h index 802199f..63306bd 100644 --- a/src/arch/mips/include/arch/stages.h +++ b/src/arch/mips/include/arch/stages.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/include/arch/types.h b/src/arch/mips/include/arch/types.h index 31a2f9f..fa14b6a 100644 --- a/src/arch/mips/include/arch/types.h +++ b/src/arch/mips/include/arch/types.h @@ -1,10 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * - * Based on src/arch/armv7/include/arch/types.h - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/mmu.c b/src/arch/mips/mmu.c index b144fd3..5ef276d 100644 --- a/src/arch/mips/mmu.c +++ b/src/arch/mips/mmu.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2015 Google, Inc. - * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; version 2 of diff --git a/src/arch/mips/stages.c b/src/arch/mips/stages.c index e940faa..0971e98 100644 --- a/src/arch/mips/stages.c +++ b/src/arch/mips/stages.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2014 Imagination Technologies - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/arch/mips/tables.c b/src/arch/mips/tables.c index 50d2a55..e9de4bf 100644 --- a/src/arch/mips/tables.c +++ b/src/arch/mips/tables.c @@ -1,11 +1,6 @@ /* * This file is part of the coreboot project. * - * Based on src/arch/armv7/tables.c: - * Copyright (C) 2003 Eric Biederman - * Copyright (C) 2005 Steve Magnani - * Copyright (C) 2008-2009 coresystems GmbH - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License.