diff options
author | Patrick Georgi <pgeorgi@google.com> | 2020-05-10 16:41:01 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-05-11 17:11:40 +0000 |
commit | 6b5bc77c9b22c398262ff3f4dae3e14904c57366 (patch) | |
tree | ab40c703d92f906f8604635f091f809b59233efa /payloads/libpayload/arch/x86 | |
parent | a83c6bc907b8ef77935ba62789bc4ed60716986d (diff) |
treewide: Remove "this file is part of" lines
Stefan thinks they don't add value.
Command used:
sed -i -e '/file is part of /d' $(git grep "file is part of " |egrep ":( */\*.*\*/\$|#|;#|-- | *\* )" | cut -d: -f1 |grep -v crossgcc |grep -v gcov | grep -v /elf.h |grep -v nvramtool)
The exceptions are for:
- crossgcc (patch file)
- gcov (imported from gcc)
- elf.h (imported from GNU's libc)
- nvramtool (more complicated header)
The removed lines are:
- fmt.Fprintln(f, "/* This file is part of the coreboot project. */")
-# This file is part of a set of unofficial pre-commit hooks available
-/* This file is part of coreboot */
-# This file is part of msrtool.
-/* This file is part of msrtool. */
- * This file is part of ncurses, designed to be appended after curses.h.in
-/* This file is part of pgtblgen. */
- * This file is part of the coreboot project.
- /* This file is part of the coreboot project. */
-# This file is part of the coreboot project.
-# This file is part of the coreboot project.
-## This file is part of the coreboot project.
--- This file is part of the coreboot project.
-/* This file is part of the coreboot project */
-/* This file is part of the coreboot project. */
-;## This file is part of the coreboot project.
-# This file is part of the coreboot project. It originated in the
- * This file is part of the coreinfo project.
-## This file is part of the coreinfo project.
- * This file is part of the depthcharge project.
-/* This file is part of the depthcharge project. */
-/* This file is part of the ectool project. */
- * This file is part of the GNU C Library.
- * This file is part of the libpayload project.
-## This file is part of the libpayload project.
-/* This file is part of the Linux kernel. */
-## This file is part of the superiotool project.
-/* This file is part of the superiotool project */
-/* This file is part of uio_usbdebug */
Change-Id: I82d872b3b337388c93d5f5bf704e9ee9e53ab3a9
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41194
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'payloads/libpayload/arch/x86')
-rw-r--r-- | payloads/libpayload/arch/x86/Kconfig | 1 | ||||
-rw-r--r-- | payloads/libpayload/arch/x86/Makefile.inc | 1 | ||||
-rw-r--r-- | payloads/libpayload/arch/x86/apic.c | 1 | ||||
-rw-r--r-- | payloads/libpayload/arch/x86/coreboot.c | 1 | ||||
-rw-r--r-- | payloads/libpayload/arch/x86/delay.c | 1 | ||||
-rw-r--r-- | payloads/libpayload/arch/x86/exception.c | 1 | ||||
-rw-r--r-- | payloads/libpayload/arch/x86/exception_asm.S | 1 | ||||
-rw-r--r-- | payloads/libpayload/arch/x86/exec.S | 1 | ||||
-rw-r--r-- | payloads/libpayload/arch/x86/head.S | 1 | ||||
-rw-r--r-- | payloads/libpayload/arch/x86/libpayload.ldscript | 1 | ||||
-rw-r--r-- | payloads/libpayload/arch/x86/main.c | 1 | ||||
-rw-r--r-- | payloads/libpayload/arch/x86/multiboot.c | 1 | ||||
-rw-r--r-- | payloads/libpayload/arch/x86/rom_media.c | 1 | ||||
-rw-r--r-- | payloads/libpayload/arch/x86/string.c | 1 | ||||
-rw-r--r-- | payloads/libpayload/arch/x86/sysinfo.c | 1 | ||||
-rw-r--r-- | payloads/libpayload/arch/x86/timer.c | 1 | ||||
-rw-r--r-- | payloads/libpayload/arch/x86/util.S | 1 | ||||
-rw-r--r-- | payloads/libpayload/arch/x86/virtual.c | 1 |
18 files changed, 0 insertions, 18 deletions
diff --git a/payloads/libpayload/arch/x86/Kconfig b/payloads/libpayload/arch/x86/Kconfig index 129ff5f682..2be47bc0ce 100644 --- a/payloads/libpayload/arch/x86/Kconfig +++ b/payloads/libpayload/arch/x86/Kconfig @@ -1,5 +1,4 @@ ## -## This file is part of the libpayload project. ## ## Copyright (c) 2012 Google Inc. ## diff --git a/payloads/libpayload/arch/x86/Makefile.inc b/payloads/libpayload/arch/x86/Makefile.inc index 0cc477399a..41228f2e12 100644 --- a/payloads/libpayload/arch/x86/Makefile.inc +++ b/payloads/libpayload/arch/x86/Makefile.inc @@ -1,5 +1,4 @@ ## -## This file is part of the libpayload project. ## ## Copyright (C) 2008 Advanced Micro Devices, Inc. ## diff --git a/payloads/libpayload/arch/x86/apic.c b/payloads/libpayload/arch/x86/apic.c index db81ea1163..a484163054 100644 --- a/payloads/libpayload/arch/x86/apic.c +++ b/payloads/libpayload/arch/x86/apic.c @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright 2018 Google LLC * diff --git a/payloads/libpayload/arch/x86/coreboot.c b/payloads/libpayload/arch/x86/coreboot.c index 07adee8917..bf16b71f97 100644 --- a/payloads/libpayload/arch/x86/coreboot.c +++ b/payloads/libpayload/arch/x86/coreboot.c @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright (C) 2008 Advanced Micro Devices, Inc. * Copyright (C) 2009 coresystems GmbH diff --git a/payloads/libpayload/arch/x86/delay.c b/payloads/libpayload/arch/x86/delay.c index 14056dda33..df2c0ac9ba 100644 --- a/payloads/libpayload/arch/x86/delay.c +++ b/payloads/libpayload/arch/x86/delay.c @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright (C) 2018 Google LLC * diff --git a/payloads/libpayload/arch/x86/exception.c b/payloads/libpayload/arch/x86/exception.c index 13ff58ccbe..23d1b05b9a 100644 --- a/payloads/libpayload/arch/x86/exception.c +++ b/payloads/libpayload/arch/x86/exception.c @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright 2013 Google Inc. * diff --git a/payloads/libpayload/arch/x86/exception_asm.S b/payloads/libpayload/arch/x86/exception_asm.S index 00dc888207..b3395d0e4b 100644 --- a/payloads/libpayload/arch/x86/exception_asm.S +++ b/payloads/libpayload/arch/x86/exception_asm.S @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright 2013 Google Inc. * diff --git a/payloads/libpayload/arch/x86/exec.S b/payloads/libpayload/arch/x86/exec.S index 3398106cd3..814be8faf4 100644 --- a/payloads/libpayload/arch/x86/exec.S +++ b/payloads/libpayload/arch/x86/exec.S @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright (C) 2008 Advanced Micro Devices, Inc. * diff --git a/payloads/libpayload/arch/x86/head.S b/payloads/libpayload/arch/x86/head.S index 0575dbe8cc..1052b8c94d 100644 --- a/payloads/libpayload/arch/x86/head.S +++ b/payloads/libpayload/arch/x86/head.S @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright (C) 2008 Advanced Micro Devices, Inc. * Copyright (C) 2017 Patrick Rudolph <siro@das-labor.org> diff --git a/payloads/libpayload/arch/x86/libpayload.ldscript b/payloads/libpayload/arch/x86/libpayload.ldscript index bcb2165a2f..2d7e9129f7 100644 --- a/payloads/libpayload/arch/x86/libpayload.ldscript +++ b/payloads/libpayload/arch/x86/libpayload.ldscript @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright (C) 2008 Advanced Micro Devices, Inc. * diff --git a/payloads/libpayload/arch/x86/main.c b/payloads/libpayload/arch/x86/main.c index 2e876f23e9..288f474dfc 100644 --- a/payloads/libpayload/arch/x86/main.c +++ b/payloads/libpayload/arch/x86/main.c @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright (C) 2008 Advanced Micro Devices, Inc. * diff --git a/payloads/libpayload/arch/x86/multiboot.c b/payloads/libpayload/arch/x86/multiboot.c index 76eeae33ac..26dc4f8cd0 100644 --- a/payloads/libpayload/arch/x86/multiboot.c +++ b/payloads/libpayload/arch/x86/multiboot.c @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright (C) 2008 Advanced Micro Devices, Inc. * diff --git a/payloads/libpayload/arch/x86/rom_media.c b/payloads/libpayload/arch/x86/rom_media.c index d9c27fa8b4..d152963b09 100644 --- a/payloads/libpayload/arch/x86/rom_media.c +++ b/payloads/libpayload/arch/x86/rom_media.c @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright (C) 2013 Google, Inc. * diff --git a/payloads/libpayload/arch/x86/string.c b/payloads/libpayload/arch/x86/string.c index 2e38f94991..fb290603d6 100644 --- a/payloads/libpayload/arch/x86/string.c +++ b/payloads/libpayload/arch/x86/string.c @@ -1,6 +1,5 @@ /* * Copyright (C) 1991,1992,1993,1997,1998,2003, 2005 Free Software Foundation, Inc. - * This file is part of the GNU C Library. * Copyright (c) 2011 The Chromium OS Authors. * * This program is free software; you can redistribute it and/or diff --git a/payloads/libpayload/arch/x86/sysinfo.c b/payloads/libpayload/arch/x86/sysinfo.c index 4494f0b415..ffa57bb08f 100644 --- a/payloads/libpayload/arch/x86/sysinfo.c +++ b/payloads/libpayload/arch/x86/sysinfo.c @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright (C) 2008 Advanced Micro Devices, Inc. * diff --git a/payloads/libpayload/arch/x86/timer.c b/payloads/libpayload/arch/x86/timer.c index bf0c30a873..1ff2cd6d55 100644 --- a/payloads/libpayload/arch/x86/timer.c +++ b/payloads/libpayload/arch/x86/timer.c @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright (C) 2008 Advanced Micro Devices, Inc. * diff --git a/payloads/libpayload/arch/x86/util.S b/payloads/libpayload/arch/x86/util.S index 9858d29b05..9a8b20bb83 100644 --- a/payloads/libpayload/arch/x86/util.S +++ b/payloads/libpayload/arch/x86/util.S @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright (C) 2008 Advanced Micro Devices, Inc. * diff --git a/payloads/libpayload/arch/x86/virtual.c b/payloads/libpayload/arch/x86/virtual.c index 59768dbd66..2d336e301e 100644 --- a/payloads/libpayload/arch/x86/virtual.c +++ b/payloads/libpayload/arch/x86/virtual.c @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright (C) 2008 coresystems GmbH * |