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/curses | |
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/curses')
-rw-r--r-- | payloads/libpayload/curses/Makefile.inc | 1 | ||||
-rw-r--r-- | payloads/libpayload/curses/colors.c | 1 | ||||
-rw-r--r-- | payloads/libpayload/curses/curses.h | 2 | ||||
-rw-r--r-- | payloads/libpayload/curses/keyboard.c | 1 | ||||
-rw-r--r-- | payloads/libpayload/curses/local.h | 1 | ||||
-rw-r--r-- | payloads/libpayload/curses/tinycurses.c | 1 |
6 files changed, 0 insertions, 7 deletions
diff --git a/payloads/libpayload/curses/Makefile.inc b/payloads/libpayload/curses/Makefile.inc index d0ce4743f8..99f8d70e05 100644 --- a/payloads/libpayload/curses/Makefile.inc +++ b/payloads/libpayload/curses/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/curses/colors.c b/payloads/libpayload/curses/colors.c index 5065f5c825..41c8657127 100644 --- a/payloads/libpayload/curses/colors.c +++ b/payloads/libpayload/curses/colors.c @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de> * Copyright (C) 2008 Advanced Micro Devices, Inc. diff --git a/payloads/libpayload/curses/curses.h b/payloads/libpayload/curses/curses.h index 9a2d3b28f6..1699250de6 100644 --- a/payloads/libpayload/curses/curses.h +++ b/payloads/libpayload/curses/curses.h @@ -1239,7 +1239,6 @@ NCURSES_EXPORT(int) vsscanf(const char *, const char *, va_list); #define KEY_MAX 0777 /* Maximum key value is 0633 */ /* - * This file is part of ncurses, designed to be appended after curses.h.in * (see that file for the relevant copyright). */ #ifdef _XOPEN_SOURCE_EXTENDED @@ -1488,7 +1487,6 @@ extern NCURSES_EXPORT(const char *) _nc_viswibuf(const wint_t *); #endif /* _XOPEN_SOURCE_EXTENDED */ /* - * This file is part of ncurses, designed to be appended after curses.h.in * (see that file for the relevant copyright). */ /* $Id: curses.tail,v 1.14 2006/05/27 16:28:29 tom Exp $ */ diff --git a/payloads/libpayload/curses/keyboard.c b/payloads/libpayload/curses/keyboard.c index fe9dc34cb5..701a727190 100644 --- a/payloads/libpayload/curses/keyboard.c +++ b/payloads/libpayload/curses/keyboard.c @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de> * Copyright (C) 2008 Advanced Micro Devices, Inc. diff --git a/payloads/libpayload/curses/local.h b/payloads/libpayload/curses/local.h index 274c389cb2..75114a59e2 100644 --- a/payloads/libpayload/curses/local.h +++ b/payloads/libpayload/curses/local.h @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de> * diff --git a/payloads/libpayload/curses/tinycurses.c b/payloads/libpayload/curses/tinycurses.c index c50f10bbcc..ffd9bd4769 100644 --- a/payloads/libpayload/curses/tinycurses.c +++ b/payloads/libpayload/curses/tinycurses.c @@ -1,5 +1,4 @@ /* - * This file is part of the libpayload project. * * Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de> * Copyright (C) 2008 Ulf Jordan <jordan@chalmers.se> |