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.

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

+13 -38
+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 -2
kernel/cpu.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* CPU control. 2 3 * (C) 2001, 2002, 2003, 2004 Rusty Russell 3 - * 4 - * This code is licenced under the GPL. 5 4 */ 6 5 #include <linux/sched/mm.h> 7 6 #include <linux/proc_fs.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.
+1 -2
kernel/relay.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * Public API and common code for kernel->userspace relay file support. 3 4 * ··· 10 9 * Moved to kernel/relay.c by Paul Mundt, 2006. 11 10 * November 2006 - CPU hotplug support by Mathieu Desnoyers 12 11 * (mathieu.desnoyers@polymtl.ca) 13 - * 14 - * This file is released under the GPL. 15 12 */ 16 13 #include <linux/errno.h> 17 14 #include <linux/stddef.h>