Skip to content

Commit d295082

Browse files
committed
Merge tag 'spdx-7.0-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx
Pull SPDX updates from Greg KH: "Here are two small changes that add some missing SPDX license lines to some core kernel files. These are: - adding SPDX license lines to kdb files - adding SPDX license lines to the remaining kernel/ files Both of these have been in linux-next for a while with no reported issues" * tag 'spdx-7.0-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx: kernel: debug: Add SPDX license ids to kdb files kernel: add SPDX-License-Identifier lines
2 parents 17f8d20 + c86d39d commit d295082

13 files changed

Lines changed: 13 additions & 38 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/cpu.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1+
// SPDX-License-Identifier: GPL-2.0
12
/* CPU control.
23
* (C) 2001, 2002, 2003, 2004 Rusty Russell
3-
*
4-
* This code is licenced under the GPL.
54
*/
65
#include <linux/sched/mm.h>
76
#include <linux/proc_fs.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.

0 commit comments

Comments
 (0)