SPDX: Convert a few files that were missed before

As part of the main conversion a few files were missed.  These files had
additional whitespace after the '*' and before the SPDX tag and my
previous regex was too strict.  This time I did a grep for all SPDX tags
and then filtered out anything that matched the correct styles.

Fixes: 83d290c56f ("SPDX: Convert all of our single license tags to Linux Kernel style")
Reported-by: Heinrich Schuchardt <xypron.debian@gmx.de>
Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Tom Rini 2018-05-07 17:02:21 -04:00
parent b14619ba62
commit f739fcd831
52 changed files with 54 additions and 106 deletions

View File

@ -1,8 +1,7 @@
/* SPDX-License-Identifier: GPL-2.0 */
/* /*
* Copyright (C) 2013,2014 Renesas Electronics Corporation * Copyright (C) 2013,2014 Renesas Electronics Corporation
* Copyright (C) 2014 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> * Copyright (C) 2014 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
*
* SPDX-License-Identifier: GPL-2.0
*/ */
#ifndef __EHCI_RMOBILE_H__ #ifndef __EHCI_RMOBILE_H__

View File

@ -145,10 +145,10 @@ process_sdram_config() {
( (
cat << EOF cat << EOF
/* SPDX-License-Identifier: BSD-3-Clause */
/* /*
* Altera SoCFPGA SDRAM configuration * Altera SoCFPGA SDRAM configuration
* *
* SPDX-License-Identifier: BSD-3-Clause
*/ */
#ifndef __SOCFPGA_SDRAM_CONFIG_H__ #ifndef __SOCFPGA_SDRAM_CONFIG_H__

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0+ */
/* /*
* Thumb-1 drop-in for the linux/include/asm-arm/proc-armv/system.h * Thumb-1 drop-in for the linux/include/asm-arm/proc-armv/system.h
* *
@ -7,8 +8,6 @@
* The original file does not build in Thumb mode. However, in U-Boot * The original file does not build in Thumb mode. However, in U-Boot
* we don't use interrupt context, so we can redefine these as empty * we don't use interrupt context, so we can redefine these as empty
* memory barriers, which makes Thumb-1 compiler happy. * memory barriers, which makes Thumb-1 compiler happy.
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
/* /*

View File

@ -1,8 +1,7 @@
// SPDX-License-Identifier: GPL-2.0+
/****************************************************************************** /******************************************************************************
* (c) Copyright 2010-2014 Xilinx, Inc. All rights reserved. * (c) Copyright 2010-2014 Xilinx, Inc. All rights reserved.
* (c) Copyright 2017 Opal Kelly Inc. * (c) Copyright 2017 Opal Kelly Inc.
*
* SPDX-License-Identifier: GPL-2.0+
*****************************************************************************/ *****************************************************************************/
#include <asm/arch/ps7_init_gpl.h> #include <asm/arch/ps7_init_gpl.h>

View File

@ -1,9 +1,6 @@
// SPDX-License-Identifier: GPL-2.0+
/****************************************************************************** /******************************************************************************
* (c) Copyright 2010-2014 Xilinx, Inc. All rights reserved. * (c) Copyright 2010-2014 Xilinx, Inc. All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0+
*
*
******************************************************************************/ ******************************************************************************/
/****************************************************************************/ /****************************************************************************/
/** /**

View File

@ -1,9 +1,6 @@
// SPDX-License-Identifier: GPL-2.0+
/****************************************************************************** /******************************************************************************
* (c) Copyright 2010-2014 Xilinx, Inc. All rights reserved. * (c) Copyright 2010-2014 Xilinx, Inc. All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0+
*
*
******************************************************************************/ ******************************************************************************/
/****************************************************************************/ /****************************************************************************/
/** /**

View File

@ -1,9 +1,6 @@
// SPDX-License-Identifier: GPL-2.0+
/****************************************************************************** /******************************************************************************
* (c) Copyright 2010-2014 Xilinx, Inc. All rights reserved. * (c) Copyright 2010-2014 Xilinx, Inc. All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0+
*
*
******************************************************************************/ ******************************************************************************/
/****************************************************************************/ /****************************************************************************/
/** /**

View File

@ -1,9 +1,6 @@
// SPDX-License-Identifier: GPL-2.0+
/****************************************************************************** /******************************************************************************
* (c) Copyright 2010-2014 Xilinx, Inc. All rights reserved. * (c) Copyright 2010-2014 Xilinx, Inc. All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0+
*
*
******************************************************************************/ ******************************************************************************/
/****************************************************************************/ /****************************************************************************/
/** /**

View File

@ -1,9 +1,8 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* EFI application loader * EFI application loader
* *
* Copyright (c) 2016 Alexander Graf * Copyright (c) 2016 Alexander Graf
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#include <charset.h> #include <charset.h>

View File

@ -1,7 +1,7 @@
<!-- <!--
Copyright (c) 2018 Heinrich Schuchardt SPDX-License-Identifier: GPL-2.0+
SPDX-License-Identifier: GPL-2.0+ Copyright (c) 2018 Heinrich Schuchardt
--> -->
# UEFI on U-Boot # UEFI on U-Boot

View File

@ -1,8 +1,7 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* Copyright 2014 - 2015 Freescale Semiconductor, Inc. * Copyright 2014 - 2015 Freescale Semiconductor, Inc.
* *
* SPDX-License-Identifier: GPL-2.0+
*
* Driver for the Vitesse VSC9953 L2 Switch * Driver for the Vitesse VSC9953 L2 Switch
*/ */

View File

@ -1,10 +1,9 @@
// SPDX-License-Identifier: GPL-2.0
/* /*
* EHCI HCD (Host Controller Driver) for USB. * EHCI HCD (Host Controller Driver) for USB.
* *
* Copyright (C) 2013,2014 Renesas Electronics Corporation * Copyright (C) 2013,2014 Renesas Electronics Corporation
* Copyright (C) 2014 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> * Copyright (C) 2014 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
*
* SPDX-License-Identifier: GPL-2.0
*/ */
#include <common.h> #include <common.h>

View File

@ -1,8 +1,7 @@
# SPDX-License-Identifier: GPL-2.0+
# #
# Copyright (C) 2015 Google, Inc # Copyright (C) 2015 Google, Inc
# Written by Simon Glass <sjg@chromium.org> # Written by Simon Glass <sjg@chromium.org>
#
# SPDX-License-Identifier: GPL-2.0+
obj-$(CONFIG_VIDEO_BRIDGE) += video-bridge-uclass.o obj-$(CONFIG_VIDEO_BRIDGE) += video-bridge-uclass.o
obj-$(CONFIG_VIDEO_BRIDGE_PARADE_PS862X) += ps862x.o obj-$(CONFIG_VIDEO_BRIDGE_PARADE_PS862X) += ps862x.o

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0+ */
/* /*
* Portable Executable and Common Object Constants * Portable Executable and Common Object Constants
* *
@ -5,8 +6,6 @@
* *
* based on the "Microsoft Portable Executable and Common Object File Format * based on the "Microsoft Portable Executable and Common Object File Format
* Specification", revision 11, 2017-01-23 * Specification", revision 11, 2017-01-23
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#ifndef _ASM_PE_H #ifndef _ASM_PE_H

View File

@ -1,9 +1,8 @@
/* SPDX-License-Identifier: GPL-2.0+ */
/* /*
* charset conversion utils * charset conversion utils
* *
* Copyright (c) 2017 Rob Clark * Copyright (c) 2017 Rob Clark
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#ifndef __CHARSET_H_ #ifndef __CHARSET_H_

View File

@ -1,9 +1,8 @@
/* SPDX-License-Identifier: GPL-2.0+ */
/* /*
* EFI application loader * EFI application loader
* *
* Copyright (c) 2017 Heinrich Schuchardt * Copyright (c) 2017 Heinrich Schuchardt
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#ifndef _EFI_DRIVER_H #ifndef _EFI_DRIVER_H

View File

@ -1,9 +1,8 @@
/* SPDX-License-Identifier: GPL-2.0+ */
/* /*
* EFI application loader * EFI application loader
* *
* Copyright (c) 2016 Alexander Graf * Copyright (c) 2016 Alexander Graf
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#ifndef _EFI_LOADER_H #ifndef _EFI_LOADER_H

View File

@ -1,9 +1,8 @@
/* SPDX-License-Identifier: GPL-2.0+ */
/* /*
* EFI application loader * EFI application loader
* *
* Copyright (c) 2017 Heinrich Schuchardt <xypron.glpk@gmx.de> * Copyright (c) 2017 Heinrich Schuchardt <xypron.glpk@gmx.de>
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#ifndef _EFI_SELFTEST_H #ifndef _EFI_SELFTEST_H

View File

@ -1,9 +1,9 @@
/* SPDX-License-Identifier: GPL-2.0 */
/* /*
* LiMon Monitor (LiMon) - Network. * LiMon Monitor (LiMon) - Network.
* *
* Copyright 1994 - 2000 Neil Russell. * Copyright 1994 - 2000 Neil Russell.
* (See License) * (See License)
* SPDX-License-Identifier: GPL-2.0
* *
* History * History
* 9/16/00 bor adapted to TQM823L/STK8xxL board, RARP/TFTP boot added * 9/16/00 bor adapted to TQM823L/STK8xxL board, RARP/TFTP boot added

View File

@ -1,11 +1,10 @@
/* SPDX-License-Identifier: GPL-2.0+ */
/* /*
* Portable Executable binary format structures * Portable Executable binary format structures
* *
* Copyright (c) 2016 Alexander Graf * Copyright (c) 2016 Alexander Graf
* *
* Based on wine code * Based on wine code
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#ifndef _PE_H #ifndef _PE_H

View File

@ -1,9 +1,8 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* charset conversion utils * charset conversion utils
* *
* Copyright (c) 2017 Rob Clark * Copyright (c) 2017 Rob Clark
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#include <charset.h> #include <charset.h>

View File

@ -1,8 +1,6 @@
# SPDX-License-Identifier: GPL-2.0+
# #
# (C) Copyright 2017 Heinrich Schuchardt # (C) Copyright 2017 Heinrich Schuchardt
#
# SPDX-License-Identifier: GPL-2.0+
#
# This file only gets included with CONFIG_EFI_LOADER set, so all # This file only gets included with CONFIG_EFI_LOADER set, so all
# object inclusion implicitly depends on it # object inclusion implicitly depends on it

View File

@ -1,10 +1,9 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* EFI block driver * EFI block driver
* *
* Copyright (c) 2017 Heinrich Schuchardt * Copyright (c) 2017 Heinrich Schuchardt
* *
* SPDX-License-Identifier: GPL-2.0+
*
* The EFI uclass creates a handle for this driver and installs the * The EFI uclass creates a handle for this driver and installs the
* driver binding protocol on it. * driver binding protocol on it.
* *

View File

@ -1,10 +1,9 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* Uclass for EFI drivers * Uclass for EFI drivers
* *
* Copyright (c) 2017 Heinrich Schuchardt * Copyright (c) 2017 Heinrich Schuchardt
* *
* SPDX-License-Identifier: GPL-2.0+
*
* For each EFI driver the uclass * For each EFI driver the uclass
* - creates a handle * - creates a handle
* - installs the driver binding protocol * - installs the driver binding protocol

View File

@ -1,8 +1,7 @@
# SPDX-License-Identifier: GPL-2.0+
# #
# (C) Copyright 2016 Alexander Graf # (C) Copyright 2016 Alexander Graf
# #
# SPDX-License-Identifier: GPL-2.0+
#
# This file only gets included with CONFIG_EFI_LOADER set, so all # This file only gets included with CONFIG_EFI_LOADER set, so all
# object inclusion implicitly depends on it # object inclusion implicitly depends on it

View File

@ -1,9 +1,8 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* EFI utils * EFI utils
* *
* Copyright (c) 2017 Rob Clark * Copyright (c) 2017 Rob Clark
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#include <common.h> #include <common.h>

View File

@ -1,9 +1,8 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* EFI application boot time services * EFI application boot time services
* *
* Copyright (c) 2016 Alexander Graf * Copyright (c) 2016 Alexander Graf
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#include <common.h> #include <common.h>

View File

@ -1,9 +1,8 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* EFI application console interface * EFI application console interface
* *
* Copyright (c) 2016 Alexander Graf * Copyright (c) 2016 Alexander Graf
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#include <common.h> #include <common.h>

View File

@ -1,9 +1,8 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* EFI device path interface * EFI device path interface
* *
* Copyright (c) 2017 Heinrich Schuchardt * Copyright (c) 2017 Heinrich Schuchardt
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#include <common.h> #include <common.h>

View File

@ -1,9 +1,8 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* EFI device path interface * EFI device path interface
* *
* Copyright (c) 2017 Leif Lindholm * Copyright (c) 2017 Leif Lindholm
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#include <common.h> #include <common.h>

View File

@ -1,9 +1,8 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* EFI application disk support * EFI application disk support
* *
* Copyright (c) 2016 Alexander Graf * Copyright (c) 2016 Alexander Graf
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#include <common.h> #include <common.h>

View File

@ -1,9 +1,8 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* EFI utils * EFI utils
* *
* Copyright (c) 2017 Rob Clark * Copyright (c) 2017 Rob Clark
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#include <common.h> #include <common.h>

View File

@ -1,9 +1,8 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* EFI application disk support * EFI application disk support
* *
* Copyright (c) 2016 Alexander Graf * Copyright (c) 2016 Alexander Graf
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#include <common.h> #include <common.h>

View File

@ -1,11 +1,10 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* EFI image loader * EFI image loader
* *
* based partly on wine code * based partly on wine code
* *
* Copyright (c) 2016 Alexander Graf * Copyright (c) 2016 Alexander Graf
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#include <common.h> #include <common.h>

View File

@ -1,9 +1,8 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* EFI application memory management * EFI application memory management
* *
* Copyright (c) 2016 Alexander Graf * Copyright (c) 2016 Alexander Graf
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#include <common.h> #include <common.h>

View File

@ -1,9 +1,8 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* EFI application network access support * EFI application network access support
* *
* Copyright (c) 2016 Alexander Graf * Copyright (c) 2016 Alexander Graf
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#include <common.h> #include <common.h>

View File

@ -1,9 +1,8 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* EFI application runtime services * EFI application runtime services
* *
* Copyright (c) 2016 Alexander Graf * Copyright (c) 2016 Alexander Graf
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#include <common.h> #include <common.h>

View File

@ -1,9 +1,8 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* EFI application tables support * EFI application tables support
* *
* Copyright (c) 2016 Alexander Graf * Copyright (c) 2016 Alexander Graf
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#include <common.h> #include <common.h>

View File

@ -1,9 +1,8 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* EFI utils * EFI utils
* *
* Copyright (c) 2017 Rob Clark * Copyright (c) 2017 Rob Clark
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#include <malloc.h> #include <malloc.h>

View File

@ -1,9 +1,8 @@
// SPDX-License-Identifier: GPL-2.0+
/* /*
* EFI watchdog * EFI watchdog
* *
* Copyright (c) 2017 Heinrich Schuchardt * Copyright (c) 2017 Heinrich Schuchardt
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#include <common.h> #include <common.h>

View File

@ -1,8 +1,6 @@
: # SPDX-License-Identifier: GPL-2.0+
#
# (C) Copyright 2017, Heinrich Schuchardt <xypron.glpk@gmx.de> # (C) Copyright 2017, Heinrich Schuchardt <xypron.glpk@gmx.de>
#
# SPDX-License-Identifier: GPL-2.0+
#
# This file only gets included with CONFIG_EFI_LOADER set, so all # This file only gets included with CONFIG_EFI_LOADER set, so all
# object inclusion implicitly depends on it # object inclusion implicitly depends on it

View File

@ -1,9 +1,8 @@
/* SPDX-License-Identifier: GPL-2.0+ */
/* /*
* Non-zero 8 byte strings of a disk image * Non-zero 8 byte strings of a disk image
* *
* Generated with tools/file2include * Generated with tools/file2include
*
* SPDX-License-Identifier: GPL-2.0+
*/ */
#define EFI_ST_DISK_IMG { 0x00010000, { \ #define EFI_ST_DISK_IMG { 0x00010000, { \

View File

@ -1,9 +1,8 @@
// SPDX-License-Identifier: BSD-2-Clause
/* /*
LZ4 - Fast LZ compression algorithm LZ4 - Fast LZ compression algorithm
Copyright (C) 2011-2015, Yann Collet. Copyright (C) 2011-2015, Yann Collet.
SPDX-License-Identifier: BSD-2-Clause
You can contact the author at : You can contact the author at :
- LZ4 source repository : https://github.com/Cyan4973/lz4 - LZ4 source repository : https://github.com/Cyan4973/lz4
- LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c - LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c

View File

@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-2.0
/* /*
* Copied from Linux Monitor (LiMon) - Networking. * Copied from Linux Monitor (LiMon) - Networking.
* *
@ -6,7 +7,6 @@
* Copyright 2000 Roland Borde * Copyright 2000 Roland Borde
* Copyright 2000 Paolo Scaffardi * Copyright 2000 Paolo Scaffardi
* Copyright 2000-2002 Wolfgang Denk, wd@denx.de * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
* SPDX-License-Identifier: GPL-2.0
*/ */
#include <common.h> #include <common.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0 */
/* /*
* Copied from Linux Monitor (LiMon) - Networking. * Copied from Linux Monitor (LiMon) - Networking.
* *
@ -6,7 +7,6 @@
* Copyright 2000 Roland Borde * Copyright 2000 Roland Borde
* Copyright 2000 Paolo Scaffardi * Copyright 2000 Paolo Scaffardi
* Copyright 2000-2002 Wolfgang Denk, wd@denx.de * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
* SPDX-License-Identifier: GPL-2.0
*/ */
#ifndef __ARP_H__ #ifndef __ARP_H__

View File

@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-2.0
/* /*
* Copied from Linux Monitor (LiMon) - Networking. * Copied from Linux Monitor (LiMon) - Networking.
* *
@ -6,7 +7,6 @@
* Copyright 2000 Roland Borde * Copyright 2000 Roland Borde
* Copyright 2000 Paolo Scaffardi * Copyright 2000 Paolo Scaffardi
* Copyright 2000-2002 Wolfgang Denk, wd@denx.de * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
* SPDX-License-Identifier: GPL-2.0
*/ */
#include <common.h> #include <common.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0 */
/* /*
* Copied from Linux Monitor (LiMon) - Networking. * Copied from Linux Monitor (LiMon) - Networking.
* *
@ -6,7 +7,6 @@
* Copyright 2000 Roland Borde * Copyright 2000 Roland Borde
* Copyright 2000 Paolo Scaffardi * Copyright 2000 Paolo Scaffardi
* Copyright 2000-2002 Wolfgang Denk, wd@denx.de * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
* SPDX-License-Identifier: GPL-2.0
*/ */
#if defined(CONFIG_CMD_CDP) #if defined(CONFIG_CMD_CDP)

View File

@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-2.0
/* /*
* Copied from Linux Monitor (LiMon) - Networking. * Copied from Linux Monitor (LiMon) - Networking.
* *
@ -6,7 +7,6 @@
* Copyright 2000 Roland Borde * Copyright 2000 Roland Borde
* Copyright 2000 Paolo Scaffardi * Copyright 2000 Paolo Scaffardi
* Copyright 2000-2002 Wolfgang Denk, wd@denx.de * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
* SPDX-License-Identifier: GPL-2.0
*/ */
/* /*

View File

@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-2.0
/* /*
* Copied from Linux Monitor (LiMon) - Networking. * Copied from Linux Monitor (LiMon) - Networking.
* *
@ -6,7 +7,6 @@
* Copyright 2000 Roland Borde * Copyright 2000 Roland Borde
* Copyright 2000 Paolo Scaffardi * Copyright 2000 Paolo Scaffardi
* Copyright 2000-2002 Wolfgang Denk, wd@denx.de * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
* SPDX-License-Identifier: GPL-2.0
*/ */
#include "ping.h" #include "ping.h"

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: GPL-2.0 */
/* /*
* Copied from Linux Monitor (LiMon) - Networking. * Copied from Linux Monitor (LiMon) - Networking.
* *
@ -6,7 +7,6 @@
* Copyright 2000 Roland Borde * Copyright 2000 Roland Borde
* Copyright 2000 Paolo Scaffardi * Copyright 2000 Paolo Scaffardi
* Copyright 2000-2002 Wolfgang Denk, wd@denx.de * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
* SPDX-License-Identifier: GPL-2.0
*/ */
#ifndef __PING_H__ #ifndef __PING_H__

View File

@ -1,9 +1,7 @@
#!/bin/bash #!/bin/bash
# SPDX-License-Identifier: GPL-2.0+
# #
# (C) Copyright 2014 Suriyan Ramasami # (C) Copyright 2014 Suriyan Ramasami
#
# SPDX-License-Identifier: GPL-2.0+
#
# Invoke this test script from U-Boot base directory as ./test/fs/fs-test.sh # Invoke this test script from U-Boot base directory as ./test/fs/fs-test.sh
# It currently tests the fs/sb and native commands for ext4 and fat partitions # It currently tests the fs/sb and native commands for ext4 and fat partitions

View File

@ -757,7 +757,7 @@ static void print_version(void)
{ {
printf("ifdtool v%s -- ", IFDTOOL_VERSION); printf("ifdtool v%s -- ", IFDTOOL_VERSION);
printf("Copyright (C) 2014 Google Inc.\n\n"); printf("Copyright (C) 2014 Google Inc.\n\n");
printf("SPDX-License-Identifier: GPL-2.0+\n"); printf("SPDX-License-Identifier: GPL-2.0+\n");
} }
static void print_usage(const char *name) static void print_usage(const char *name)