summaryrefslogtreecommitdiffstats
path: root/payloads/libpayload/arch/x86
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2020-05-10 16:41:01 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-05-11 17:11:40 +0000
commit6b5bc77c9b22c398262ff3f4dae3e14904c57366 (patch)
treeab40c703d92f906f8604635f091f809b59233efa /payloads/libpayload/arch/x86
parenta83c6bc907b8ef77935ba62789bc4ed60716986d (diff)
downloadcoreboot-6b5bc77c9b22c398262ff3f4dae3e14904c57366.tar.gz
coreboot-6b5bc77c9b22c398262ff3f4dae3e14904c57366.tar.bz2
coreboot-6b5bc77c9b22c398262ff3f4dae3e14904c57366.zip
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/Kconfig1
-rw-r--r--payloads/libpayload/arch/x86/Makefile.inc1
-rw-r--r--payloads/libpayload/arch/x86/apic.c1
-rw-r--r--payloads/libpayload/arch/x86/coreboot.c1
-rw-r--r--payloads/libpayload/arch/x86/delay.c1
-rw-r--r--payloads/libpayload/arch/x86/exception.c1
-rw-r--r--payloads/libpayload/arch/x86/exception_asm.S1
-rw-r--r--payloads/libpayload/arch/x86/exec.S1
-rw-r--r--payloads/libpayload/arch/x86/head.S1
-rw-r--r--payloads/libpayload/arch/x86/libpayload.ldscript1
-rw-r--r--payloads/libpayload/arch/x86/main.c1
-rw-r--r--payloads/libpayload/arch/x86/multiboot.c1
-rw-r--r--payloads/libpayload/arch/x86/rom_media.c1
-rw-r--r--payloads/libpayload/arch/x86/string.c1
-rw-r--r--payloads/libpayload/arch/x86/sysinfo.c1
-rw-r--r--payloads/libpayload/arch/x86/timer.c1
-rw-r--r--payloads/libpayload/arch/x86/util.S1
-rw-r--r--payloads/libpayload/arch/x86/virtual.c1
18 files changed, 0 insertions, 18 deletions
diff --git a/payloads/libpayload/arch/x86/Kconfig b/payloads/libpayload/arch/x86/Kconfig
index 129ff5f6821e..2be47bc0ce7d 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 0cc477399afb..41228f2e12c3 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 db81ea1163bc..a4841630546e 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 07adee8917dd..bf16b71f97bf 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 14056dda33c6..df2c0ac9ba24 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 13ff58ccbe40..23d1b05b9a69 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 00dc888207df..b3395d0e4b0e 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 3398106cd379..814be8faf477 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 0575dbe8cc44..1052b8c94d88 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 bcb2165a2fc1..2d7e9129f71b 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 2e876f23e9cd..288f474dfc78 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 76eeae33ac2c..26dc4f8cd089 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 d9c27fa8b429..d152963b09ee 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 2e38f9499177..fb290603d6ab 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 4494f0b415e0..ffa57bb08ffc 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 bf0c30a8738b..1ff2cd6d5568 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 9858d29b0511..9a8b20bb83cc 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 59768dbd66bb..2d336e301e02 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
*