Skip to content

Commit 5987b19

Browse files
authored
Merge pull request #21747 from krzysztof-cabaj/cpu_change_to_SPDX_part4
cpu: move licenses from comments to SPDX format (part4)
2 parents 1a4af8f + f3894d6 commit 5987b19

File tree

214 files changed

+503
-1152
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

214 files changed

+503
-1152
lines changed

cpu/native/Kconfig

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
# Copyright (c) 2020 HAW Hamburg
2-
#
3-
# This file is subject to the terms and conditions of the GNU Lesser
4-
# General Public License v2.1. See the file LICENSE in the top level
5-
# directory for more details.
6-
#
1+
# SPDX-FileCopyrightText: 2020 HAW Hamburg
2+
# SPDX-License-Identifier: LGPL-2.1-only
73

84
config CPU_ARCH_NATIVE
95
bool

cpu/native/async_read.c

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
/*
2-
* Copyright (C) 2015 Ludwig Knüpfer <[email protected]>,
3-
* Martine Lenders <[email protected]>
4-
* Kaspar Schleiser <[email protected]>
5-
* Ell-i open source co-operative
6-
* Takuo Yonezawa <[email protected]>
7-
*
8-
* This file is subject to the terms and conditions of the GNU Lesser
9-
* General Public License v2.1. See the file LICENSE in the top level
10-
* directory for more details.
2+
* SPDX-FileCopyrightText: 2015 Ludwig Knüpfer <[email protected]>,
3+
* SPDX-FileCopyrightText: 2015 Martine Lenders <[email protected]>
4+
* SPDX-FileCopyrightText: 2015 Kaspar Schleiser <[email protected]>
5+
* SPDX-FileCopyrightText: 2015 Ell-i open source co-operative
6+
* SPDX-FileCopyrightText: 2015 Takuo Yonezawa <[email protected]>
7+
* SPDX-License-Identifier: LGPL-2.1-only
118
*/
129

1310
/**

cpu/native/backtrace/backtrace.c

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
/*
2-
* Copyright (C) 2017 Freie Universität Berlin
3-
*
4-
* This file is subject to the terms and conditions of the GNU Lesser
5-
* General Public License v2.1. See the file LICENSE in the top level
6-
* directory for more details.
2+
* SPDX-FileCopyrightText: 2017 Freie Universität Berlin
3+
* SPDX-License-Identifier: LGPL-2.1-only
74
*/
85

96
/**

cpu/native/cli_eui_provider/eui_provider.c

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
/*
2-
* Copyright (C) 2020 Benjamin Valentin
3-
*
4-
* This file is subject to the terms and conditions of the GNU Lesser
5-
* General Public License v2.1. See the file LICENSE in the top level
6-
* directory for more details.
2+
* SPDX-FileCopyrightText: 2020 Benjamin Valentin
3+
* SPDX-License-Identifier: LGPL-2.1-only
74
*/
85

96
/**

cpu/native/cpu.c

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
/*
2-
* Copyright (C) 2016 Kaspar Schleiser <[email protected]>
3-
* 2013 Ludwig Knüpfer <[email protected]>
4-
*
5-
* This file is subject to the terms and conditions of the GNU Lesser
6-
* General Public License v2.1. See the file LICENSE in the top level
7-
* directory for more details.
2+
* SPDX-FileCopyrightText: 2016 Kaspar Schleiser <[email protected]>
3+
* SPDX-FileCopyrightText: 2013 Ludwig Knüpfer <[email protected]>
4+
* SPDX-License-Identifier: LGPL-2.1-only
85
*/
96

107
/**

cpu/native/fs/native_fs.c

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
/*
2-
* Copyright (C) 2023 ML!PA Consulting GmbH
3-
*
4-
* This file is subject to the terms and conditions of the GNU Lesser
5-
* General Public License v2.1. See the file LICENSE in the top level
6-
* directory for more details.
2+
* SPDX-FileCopyrightText: 2023 ML!PA Consulting GmbH
3+
* SPDX-License-Identifier: LGPL-2.1-only
74
*/
85

96
/**

cpu/native/include/architecture_arch.h

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
/*
2-
* Copyright (C) 2020 Otto-von-Guericke-Universität Magdeburg
3-
*
4-
* This file is subject to the terms and conditions of the GNU Lesser
5-
* General Public License v2.1. See the file LICENSE in the top level
6-
* directory for more details.
2+
* SPDX-FileCopyrightText: 2020 Otto-von-Guericke-Universität Magdeburg
3+
* SPDX-License-Identifier: LGPL-2.1-only
74
*/
85

96
#pragma once

cpu/native/include/async_read.h

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
/*
2-
* Copyright (C) 2015 Takuo Yonezawa <[email protected]>
3-
*
4-
* This file is subject to the terms and conditions of the GNU Lesser General
5-
* Public License v2.1. See the file LICENSE in the top level directory for
6-
* more details.
2+
* SPDX-FileCopyrightText: 2015 Takuo Yonezawa <[email protected]>
3+
* SPDX-License-Identifier: LGPL-2.1-only
74
*/
85

96
#pragma once

cpu/native/include/atomic_utils_arch.h

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
/*
2-
* Copyright (C) 2020 Otto-von-Guericke-Universität Magdeburg
3-
*
4-
* This file is subject to the terms and conditions of the GNU Lesser General
5-
* Public License v2.1. See the file LICENSE in the top level directory for more
6-
* details.
2+
* SPDX-FileCopyrightText: 2020 Otto-von-Guericke-Universität Magdeburg
3+
* SPDX-License-Identifier: LGPL-2.1-only
74
*/
85

96
#pragma once

cpu/native/include/backtrace.h

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
/*
2-
* Copyright (C) 2017 Freie Universität Berlin
3-
*
4-
* This file is subject to the terms and conditions of the GNU Lesser
5-
* General Public License v2.1. See the file LICENSE in the top level
6-
* directory for more details.
2+
* SPDX-FileCopyrightText: 2017 Freie Universität Berlin
3+
* SPDX-License-Identifier: LGPL-2.1-only
74
*/
85

96
#pragma once

0 commit comments

Comments
 (0)