Skip to content

Commit c86d39d

Browse files
tbird20dgregkh
authored andcommitted
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>
1 parent 330eb95 commit c86d39d

11 files changed

Lines changed: 11 additions & 34 deletions

File tree

include/linux/kdb.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1+
/* SPDX-License-Identifier: GPL-2.0 */
12
#ifndef _KDB_H
23
#define _KDB_H
34

45
/*
56
* Kernel Debugger Architecture Independent Global Headers
67
*
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-
*
118
* Copyright (c) 2000-2007 Silicon Graphics, Inc. All Rights Reserved.
129
* Copyright (C) 2000 Stephane Eranian <eranian@hpl.hp.com>
1310
* Copyright (C) 2009 Jason Wessel <jason.wessel@windriver.com>

include/linux/kgdb.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* SPDX-License-Identifier: GPL-2.0 */
12
/*
23
* This provides the callbacks and functions that KGDB needs to share between
34
* the core, I/O and arch-specific portions.
@@ -6,9 +7,6 @@
67
* Tom Rini <trini@kernel.crashing.org>
78
*
89
* 2001-2004 (c) Amit S. Kale and 2003-2005 (c) MontaVista Software, Inc.
9-
* This file is licensed under the terms of the GNU General Public License
10-
* version 2. This program is licensed "as is" without any warranty of any
11-
* kind, whether express or implied.
1210
*/
1311
#ifndef _KGDB_H_
1412
#define _KGDB_H_

kernel/debug/debug_core.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1+
/* SPDX-License-Identifier: GPL-2.0 */
12
/*
23
* Created by: Jason Wessel <jason.wessel@windriver.com>
34
*
45
* 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.
96
*/
107

118
#ifndef _DEBUG_CORE_H_

kernel/debug/kdb/kdb_bp.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1+
// SPDX-License-Identifier: GPL-2.0
12
/*
23
* Kernel Debugger Architecture Independent Breakpoint Handler
34
*
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-
*
85
* Copyright (c) 1999-2004 Silicon Graphics, Inc. All Rights Reserved.
96
* Copyright (c) 2009 Wind River Systems, Inc. All Rights Reserved.
107
*/

kernel/debug/kdb/kdb_bt.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1+
// SPDX-License-Identifier: GPL-2.0
12
/*
23
* Kernel Debugger Architecture Independent Stack Traceback
34
*
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-
*
85
* Copyright (c) 1999-2004 Silicon Graphics, Inc. All Rights Reserved.
96
* Copyright (c) 2009 Wind River Systems, Inc. All Rights Reserved.
107
*/

kernel/debug/kdb/kdb_debugger.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// SPDX-License-Identifier: GPL-2.0
12
/*
23
* Created by: Jason Wessel <jason.wessel@windriver.com>
34
*

kernel/debug/kdb/kdb_io.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1+
// SPDX-License-Identifier: GPL-2.0
12
/*
23
* Kernel Debugger Architecture Independent Console I/O handler
34
*
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-
*
85
* Copyright (c) 1999-2006 Silicon Graphics, Inc. All Rights Reserved.
96
* Copyright (c) 2009 Wind River Systems, Inc. All Rights Reserved.
107
*/

kernel/debug/kdb/kdb_keyboard.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1+
// SPDX-License-Identifier: GPL-2.0
12
/*
23
* Kernel Debugger Architecture Dependent Console I/O handler
34
*
4-
* This file is subject to the terms and conditions of the GNU General Public
5-
* License.
6-
*
75
* Copyright (c) 1999-2006 Silicon Graphics, Inc. All Rights Reserved.
86
* Copyright (c) 2009 Wind River Systems, Inc. All Rights Reserved.
97
*/

kernel/debug/kdb/kdb_main.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1+
// SPDX-License-Identifier: GPL-2.0
12
/*
23
* Kernel Debugger Architecture Independent Main Code
34
*
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-
*
85
* Copyright (C) 1999-2004 Silicon Graphics, Inc. All Rights Reserved.
96
* Copyright (C) 2000 Stephane Eranian <eranian@hpl.hp.com>
107
* Xscale (R) modifications copyright (C) 2003 Intel Corporation.

kernel/debug/kdb/kdb_private.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* SPDX-License-Identifier: GPL-2.0 */
12
#ifndef _KDBPRIVATE_H
23
#define _KDBPRIVATE_H
34

0 commit comments

Comments
 (0)