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>
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
/*
|
||||
|
@@ -214,7 +214,6 @@ func Create(ctx Context, name string) *os.File {
|
||||
|
||||
func Add_gpl(f *os.File) {
|
||||
fmt.Fprintln(f, "/* SPDX-License-Identifier: GPL-2.0-only */")
|
||||
fmt.Fprintln(f, "/* This file is part of the coreboot project. */")
|
||||
fmt.Fprintln(f)
|
||||
}
|
||||
|
||||
@@ -886,7 +885,6 @@ DefinitionBlock(
|
||||
defer gma.Close()
|
||||
|
||||
gma.WriteString(`-- SPDX-License-Identifier: GPL-2.0-or-later
|
||||
-- This file is part of the coreboot project.
|
||||
|
||||
with HW.GFX.GMA;
|
||||
with HW.GFX.GMA.Display_Probing;
|
||||
|
@@ -1,6 +1,5 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
|
||||
EXIT_SUCCESS=0
|
||||
|
@@ -1,6 +1,5 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# This file is part of the coreboot project. It originated in the
|
||||
# flashrom project but has been heavily modified since then.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -24,7 +24,6 @@ args = parser.parse_args()
|
||||
outfile = None
|
||||
if args.out is not None:
|
||||
outfile = open(args.out, 'w')
|
||||
outfile.write("// This file is part of the coreboot project.\n")
|
||||
outfile.write("// This file is automatically generated.\n")
|
||||
outfile.write("// DO NOT EDIT BY HAND.\n\n")
|
||||
outfile.write("#include <bdk-devicetree.h>\n\n")
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#define DOS_MAGIC 0x5a4d
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#ifndef _CBFSTOOL_CONSOLE_H_
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#define FV_SIGNATURE 0x4856465f
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of coreboot */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
/*
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of coreboot */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
/*
|
||||
|
@@ -1,4 +1,3 @@
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <inttypes.h>
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,3 @@
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
TOOLCHAIN_ARCHES := i386 x64 arm aarch64 riscv ppc64 nds32le
|
||||
|
@@ -1,4 +1,3 @@
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the ectool project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <stdio.h>
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the ectool project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#ifndef _EC_H
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the ectool project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <stdio.h>
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <stdlib.h>
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/bash
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## 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
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/bash
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## 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
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/bash
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## 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
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <pci/pci.h>
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#ifndef ME_H
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <stdio.h>
|
||||
|
@@ -1,4 +1,3 @@
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <assert.h>
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <stdio.h>
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
|
||||
#include <ctype.h>
|
||||
|
@@ -5,7 +5,6 @@
|
||||
# - create a patch of the proposed style changes
|
||||
#
|
||||
# modifications for clang-format by rene.milk@wwu.de
|
||||
# This file is part of a set of unofficial pre-commit hooks available
|
||||
# at github.
|
||||
# Link: https://github.com/githubbrowser/Pre-commit-hooks
|
||||
# Contact: David Martin, david.martin.mailbox@googlemail.com
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/usr/bin/env perl
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,6 +1,5 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# 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
|
||||
|
@@ -1,6 +1,5 @@
|
||||
#!/bin/sh
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# DESCR: Check that files have license headers
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# 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
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# 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
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# 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
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# 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
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/bin/sh
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,4 +1,3 @@
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <baseboard/acpi/dptf.asl>
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#ifndef VARIANT_EC_H
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#ifndef VARIANT_GPIO_H
|
||||
|
@@ -1,4 +1,3 @@
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
|
||||
#ifndef __VARIANT_EC_H__
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
/*
|
||||
* 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
|
||||
|
@@ -1,4 +1,3 @@
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# 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
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -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
|
||||
|
1
util/msrtool/configure
vendored
1
util/msrtool/configure
vendored
@@ -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
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include "msrtool.h"
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include "msrtool.h"
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include "msrtool.h"
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include "msrtool.h"
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include "msrtool.h"
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include "msrtool.h"
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include "msrtool.h"
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include "msrtool.h"
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include "msrtool.h"
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include "msrtool.h"
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include "msrtool.h"
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include "msrtool.h"
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include "msrtool.h"
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include "msrtool.h"
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <sys/types.h>
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <stdio.h>
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#ifndef MSRTOOL_H
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <stdio.h>
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <pci/pci.h>
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of msrtool. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include "msrtool.h"
|
||||
|
@@ -1,5 +1,4 @@
|
||||
#!/usr/bin/env python2
|
||||
# This file is part of the coreboot project.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
|
@@ -1,4 +1,3 @@
|
||||
/* This file is part of pgtblgen. */
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <stdio.h>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user