summaryrefslogtreecommitdiff
path: root/util/msrtool
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 /util/msrtool
parenta83c6bc907b8ef77935ba62789bc4ed60716986d (diff)
downloadcoreboot-6b5bc77c9b22c398262ff3f4dae3e14904c57366.tar.xz
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 'util/msrtool')
-rw-r--r--util/msrtool/Makefile.in1
-rwxr-xr-xutil/msrtool/configure1
-rw-r--r--util/msrtool/cs5536.c1
-rw-r--r--util/msrtool/darwin.c1
-rw-r--r--util/msrtool/freebsd.c1
-rw-r--r--util/msrtool/geodegx2.c1
-rw-r--r--util/msrtool/geodelx.c1
-rw-r--r--util/msrtool/intel_atom.c1
-rw-r--r--util/msrtool/intel_core1.c1
-rw-r--r--util/msrtool/intel_core2_early.c1
-rw-r--r--util/msrtool/intel_core2_later.c1
-rw-r--r--util/msrtool/intel_nehalem.c1
-rw-r--r--util/msrtool/intel_pentium3.c1
-rw-r--r--util/msrtool/intel_pentium3_early.c1
-rw-r--r--util/msrtool/intel_pentium4_early.c1
-rw-r--r--util/msrtool/intel_pentium4_later.c1
-rw-r--r--util/msrtool/intel_pentium_d.c1
-rw-r--r--util/msrtool/k8.c1
-rw-r--r--util/msrtool/linux.c1
-rw-r--r--util/msrtool/msrtool.c1
-rw-r--r--util/msrtool/msrtool.h1
-rw-r--r--util/msrtool/msrutils.c1
-rw-r--r--util/msrtool/sys.c1
-rw-r--r--util/msrtool/via_c7.c1
24 files changed, 0 insertions, 24 deletions
diff --git a/util/msrtool/Makefile.in b/util/msrtool/Makefile.in
index 45b4ba280a..7c5966c532 100644
--- a/util/msrtool/Makefile.in
+++ b/util/msrtool/Makefile.in
@@ -1,6 +1,5 @@
# Makefile for msrtool
#
-# This file is part of msrtool.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
diff --git a/util/msrtool/configure b/util/msrtool/configure
index 5f55056c9d..cf78ad1410 100755
--- a/util/msrtool/configure
+++ b/util/msrtool/configure
@@ -1,6 +1,5 @@
#!/bin/sh
#
-# This file is part of msrtool.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
diff --git a/util/msrtool/cs5536.c b/util/msrtool/cs5536.c
index ce28c4d655..5a5b0cc2a9 100644
--- a/util/msrtool/cs5536.c
+++ b/util/msrtool/cs5536.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include "msrtool.h"
diff --git a/util/msrtool/darwin.c b/util/msrtool/darwin.c
index a362086ffd..051ef3bb13 100644
--- a/util/msrtool/darwin.c
+++ b/util/msrtool/darwin.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include <sys/types.h>
diff --git a/util/msrtool/freebsd.c b/util/msrtool/freebsd.c
index 1ea4eef1ba..f1afc9a01e 100644
--- a/util/msrtool/freebsd.c
+++ b/util/msrtool/freebsd.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include <sys/types.h>
diff --git a/util/msrtool/geodegx2.c b/util/msrtool/geodegx2.c
index 6f6b982430..911c7556b1 100644
--- a/util/msrtool/geodegx2.c
+++ b/util/msrtool/geodegx2.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include "msrtool.h"
diff --git a/util/msrtool/geodelx.c b/util/msrtool/geodelx.c
index aa6f8a7efd..42cce4cf1b 100644
--- a/util/msrtool/geodelx.c
+++ b/util/msrtool/geodelx.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include "msrtool.h"
diff --git a/util/msrtool/intel_atom.c b/util/msrtool/intel_atom.c
index 3e58d949aa..e220eb0be0 100644
--- a/util/msrtool/intel_atom.c
+++ b/util/msrtool/intel_atom.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include "msrtool.h"
diff --git a/util/msrtool/intel_core1.c b/util/msrtool/intel_core1.c
index 7f8717ee5e..144c4ac8d0 100644
--- a/util/msrtool/intel_core1.c
+++ b/util/msrtool/intel_core1.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include "msrtool.h"
diff --git a/util/msrtool/intel_core2_early.c b/util/msrtool/intel_core2_early.c
index 4d265311ba..083ea167c9 100644
--- a/util/msrtool/intel_core2_early.c
+++ b/util/msrtool/intel_core2_early.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include "msrtool.h"
diff --git a/util/msrtool/intel_core2_later.c b/util/msrtool/intel_core2_later.c
index ef7cfc5dbf..f15e86af2f 100644
--- a/util/msrtool/intel_core2_later.c
+++ b/util/msrtool/intel_core2_later.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include "msrtool.h"
diff --git a/util/msrtool/intel_nehalem.c b/util/msrtool/intel_nehalem.c
index 21d8f310e3..b7bd558145 100644
--- a/util/msrtool/intel_nehalem.c
+++ b/util/msrtool/intel_nehalem.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include "msrtool.h"
diff --git a/util/msrtool/intel_pentium3.c b/util/msrtool/intel_pentium3.c
index d51d46c742..508fd45b14 100644
--- a/util/msrtool/intel_pentium3.c
+++ b/util/msrtool/intel_pentium3.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include "msrtool.h"
diff --git a/util/msrtool/intel_pentium3_early.c b/util/msrtool/intel_pentium3_early.c
index 50cfa24ab7..9142754a9f 100644
--- a/util/msrtool/intel_pentium3_early.c
+++ b/util/msrtool/intel_pentium3_early.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include "msrtool.h"
diff --git a/util/msrtool/intel_pentium4_early.c b/util/msrtool/intel_pentium4_early.c
index ac5a1b0bcb..48ce976869 100644
--- a/util/msrtool/intel_pentium4_early.c
+++ b/util/msrtool/intel_pentium4_early.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include "msrtool.h"
diff --git a/util/msrtool/intel_pentium4_later.c b/util/msrtool/intel_pentium4_later.c
index 0795ed2a9e..de793e9b8a 100644
--- a/util/msrtool/intel_pentium4_later.c
+++ b/util/msrtool/intel_pentium4_later.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include "msrtool.h"
diff --git a/util/msrtool/intel_pentium_d.c b/util/msrtool/intel_pentium_d.c
index f58e5d66fd..127b1e1d04 100644
--- a/util/msrtool/intel_pentium_d.c
+++ b/util/msrtool/intel_pentium_d.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include "msrtool.h"
diff --git a/util/msrtool/k8.c b/util/msrtool/k8.c
index 405945d963..dd716004dd 100644
--- a/util/msrtool/k8.c
+++ b/util/msrtool/k8.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include "msrtool.h"
diff --git a/util/msrtool/linux.c b/util/msrtool/linux.c
index 428f14030c..b2b7bdd218 100644
--- a/util/msrtool/linux.c
+++ b/util/msrtool/linux.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include <sys/types.h>
diff --git a/util/msrtool/msrtool.c b/util/msrtool/msrtool.c
index b4d721a28f..98e1169592 100644
--- a/util/msrtool/msrtool.c
+++ b/util/msrtool/msrtool.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include <stdio.h>
diff --git a/util/msrtool/msrtool.h b/util/msrtool/msrtool.h
index d1f2eb9a82..f5e6738c5c 100644
--- a/util/msrtool/msrtool.h
+++ b/util/msrtool/msrtool.h
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef MSRTOOL_H
diff --git a/util/msrtool/msrutils.c b/util/msrtool/msrutils.c
index 58330ff98f..5298063aba 100644
--- a/util/msrtool/msrutils.c
+++ b/util/msrtool/msrutils.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include <stdio.h>
diff --git a/util/msrtool/sys.c b/util/msrtool/sys.c
index f32246ed34..7188705e06 100644
--- a/util/msrtool/sys.c
+++ b/util/msrtool/sys.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include <pci/pci.h>
diff --git a/util/msrtool/via_c7.c b/util/msrtool/via_c7.c
index 779144ee15..ae8f831eda 100644
--- a/util/msrtool/via_c7.c
+++ b/util/msrtool/via_c7.c
@@ -1,4 +1,3 @@
-/* This file is part of msrtool. */
/* SPDX-License-Identifier: GPL-2.0-only */
#include "msrtool.h"