Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kernel: debug: Add SPDX license ids to kdb files

Add GPL-2.0 license id to some files related to kdb and kgdb,
replacing references to GPL or COPYING.

These files were introduced into the kernel in 2008 and 2010.

Signed-off-by: Tim Bird <tim.bird@sony.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Tim Bird and committed by
Greg Kroah-Hartman
c86d39d6 330eb955

+11 -34
+1 -4
include/linux/kdb.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0 */ 1 2 #ifndef _KDB_H 2 3 #define _KDB_H 3 4 4 5 /* 5 6 * Kernel Debugger Architecture Independent Global Headers 6 - * 7 - * This file is subject to the terms and conditions of the GNU General Public 8 - * License. See the file "COPYING" in the main directory of this archive 9 - * for more details. 10 7 * 11 8 * Copyright (c) 2000-2007 Silicon Graphics, Inc. All Rights Reserved. 12 9 * Copyright (C) 2000 Stephane Eranian <eranian@hpl.hp.com>
+1 -3
include/linux/kgdb.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0 */ 1 2 /* 2 3 * This provides the callbacks and functions that KGDB needs to share between 3 4 * the core, I/O and arch-specific portions. ··· 7 6 * Tom Rini <trini@kernel.crashing.org> 8 7 * 9 8 * 2001-2004 (c) Amit S. Kale and 2003-2005 (c) MontaVista Software, Inc. 10 - * This file is licensed under the terms of the GNU General Public License 11 - * version 2. This program is licensed "as is" without any warranty of any 12 - * kind, whether express or implied. 13 9 */ 14 10 #ifndef _KGDB_H_ 15 11 #define _KGDB_H_
+1 -4
kernel/debug/debug_core.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0 */ 1 2 /* 2 3 * Created by: Jason Wessel <jason.wessel@windriver.com> 3 4 * 4 5 * Copyright (c) 2009 Wind River Systems, Inc. All Rights Reserved. 5 - * 6 - * This file is licensed under the terms of the GNU General Public 7 - * License version 2. This program is licensed "as is" without any 8 - * warranty of any kind, whether express or implied. 9 6 */ 10 7 11 8 #ifndef _DEBUG_CORE_H_
+1 -4
kernel/debug/kdb/kdb_bp.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * Kernel Debugger Architecture Independent Breakpoint Handler 3 - * 4 - * This file is subject to the terms and conditions of the GNU General Public 5 - * License. See the file "COPYING" in the main directory of this archive 6 - * for more details. 7 4 * 8 5 * Copyright (c) 1999-2004 Silicon Graphics, Inc. All Rights Reserved. 9 6 * Copyright (c) 2009 Wind River Systems, Inc. All Rights Reserved.
+1 -4
kernel/debug/kdb/kdb_bt.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * Kernel Debugger Architecture Independent Stack Traceback 3 - * 4 - * This file is subject to the terms and conditions of the GNU General Public 5 - * License. See the file "COPYING" in the main directory of this archive 6 - * for more details. 7 4 * 8 5 * Copyright (c) 1999-2004 Silicon Graphics, Inc. All Rights Reserved. 9 6 * Copyright (c) 2009 Wind River Systems, Inc. All Rights Reserved.
+1
kernel/debug/kdb/kdb_debugger.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * Created by: Jason Wessel <jason.wessel@windriver.com> 3 4 *
+1 -4
kernel/debug/kdb/kdb_io.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * Kernel Debugger Architecture Independent Console I/O handler 3 - * 4 - * This file is subject to the terms and conditions of the GNU General Public 5 - * License. See the file "COPYING" in the main directory of this archive 6 - * for more details. 7 4 * 8 5 * Copyright (c) 1999-2006 Silicon Graphics, Inc. All Rights Reserved. 9 6 * Copyright (c) 2009 Wind River Systems, Inc. All Rights Reserved.
+1 -3
kernel/debug/kdb/kdb_keyboard.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * Kernel Debugger Architecture Dependent Console I/O handler 3 - * 4 - * This file is subject to the terms and conditions of the GNU General Public 5 - * License. 6 4 * 7 5 * Copyright (c) 1999-2006 Silicon Graphics, Inc. All Rights Reserved. 8 6 * Copyright (c) 2009 Wind River Systems, Inc. All Rights Reserved.
+1 -4
kernel/debug/kdb/kdb_main.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * Kernel Debugger Architecture Independent Main Code 3 - * 4 - * This file is subject to the terms and conditions of the GNU General Public 5 - * License. See the file "COPYING" in the main directory of this archive 6 - * for more details. 7 4 * 8 5 * Copyright (C) 1999-2004 Silicon Graphics, Inc. All Rights Reserved. 9 6 * Copyright (C) 2000 Stephane Eranian <eranian@hpl.hp.com>
+1
kernel/debug/kdb/kdb_private.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0 */ 1 2 #ifndef _KDBPRIVATE_H 2 3 #define _KDBPRIVATE_H 3 4
+1 -4
kernel/debug/kdb/kdb_support.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * Kernel Debugger Architecture Independent Support Functions 3 - * 4 - * This file is subject to the terms and conditions of the GNU General Public 5 - * License. See the file "COPYING" in the main directory of this archive 6 - * for more details. 7 4 * 8 5 * Copyright (c) 1999-2004 Silicon Graphics, Inc. All Rights Reserved. 9 6 * Copyright (c) 2009 Wind River Systems, Inc. All Rights Reserved.