Skip to content

Commit da58dec

Browse files
committed
Various Makefiles: Add SPDX-License-Identifier tags
After consulting with some of the SPDX team, the conclusion is that Makefiles are worth adding SPDX-License-Identifier tags too, and most of ours have one. This adds tags to ones that lack them and converts a few that had full (or in one case, very partial) license blobs into the equivalent tag. Cc: Kate Stewart <kstewart@linuxfoundation.org> Signed-off-by: Tom Rini <trini@konsulko.com>
1 parent 522b021 commit da58dec

File tree

55 files changed

+169
-82
lines changed

Some content is hidden

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

55 files changed

+169
-82
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#
2+
# SPDX-License-Identifier: GPL-2.0+
3+
#
4+
15
VERSION = 2015
26
PATCHLEVEL = 10
37
SUBLEVEL =

arch/arc/dts/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#
2+
# SPDX-License-Identifier: GPL-2.0+
3+
#
4+
15
dtb-$(CONFIG_TARGET_ARCANGEL4) += arcangel4.dtb
26
dtb-$(CONFIG_TARGET_TB100) += abilis_tb100.dtb
37

arch/arm/cpu/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1+
#
2+
# SPDX-License-Identifier: GPL-2.0+
3+
#
4+
15
obj- += dummy.o

arch/arm/dts/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#
2+
# SPDX-License-Identifier: GPL-2.0+
3+
#
4+
15
dtb-$(CONFIG_S5PC100) += s5pc1xx-smdkc100.dtb
26
dtb-$(CONFIG_S5PC110) += s5pc1xx-goni.dtb
37
dtb-$(CONFIG_EXYNOS4) += exynos4210-origen.dtb \

arch/arm/mach-at91/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#
2+
# SPDX-License-Identifier: GPL-2.0+
3+
#
4+
15
obj-$(CONFIG_AT91_WANTS_COMMON_PHY) += phy.o
26
ifneq ($(CONFIG_SPL_BUILD),)
37
obj-$(CONFIG_AT91SAM9260) += sdram.o spl_at91.o

arch/arm/mach-tegra/tegra114/Makefile

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,7 @@
11
#
22
# Copyright (c) 2010-2013, NVIDIA CORPORATION. All rights reserved.
33
#
4-
# This program is free software; you can redistribute it and/or modify it
5-
# under the terms and conditions of the GNU General Public License,
6-
# version 2, as published by the Free Software Foundation.
7-
#
8-
# This program is distributed in the hope it will be useful, but WITHOUT
9-
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10-
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11-
# more details.
12-
#
13-
# You should have received a copy of the GNU General Public License
14-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
4+
# SPDX-License-Identifier: GPL-2.0
155
#
166

177
obj-$(CONFIG_SPL_BUILD) += cpu.o

arch/arm/mach-tegra/tegra30/Makefile

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,7 @@
11
#
22
# Copyright (c) 2010-2012, NVIDIA CORPORATION. All rights reserved.
33
#
4-
# This program is free software; you can redistribute it and/or modify it
5-
# under the terms and conditions of the GNU General Public License,
6-
# version 2, as published by the Free Software Foundation.
7-
#
8-
# This program is distributed in the hope it will be useful, but WITHOUT
9-
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10-
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11-
# more details.
12-
#
13-
# You should have received a copy of the GNU General Public License
14-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
4+
# SPDX-License-Identifier: GPL-2.0
155
#
166

177
obj-$(CONFIG_SPL_BUILD) += cpu.o
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#
2+
# SPDX-License-Identifier: GPL-2.0+
3+
#
4+
15
obj-$(CONFIG_ARCH_UNIPHIER_PH1_SLD3) += bcu-ph1-sld3.o
26
obj-$(CONFIG_ARCH_UNIPHIER_PH1_LD4) += bcu-ph1-ld4.o
37
obj-$(CONFIG_ARCH_UNIPHIER_PH1_SLD8) += bcu-ph1-ld4.o

arch/arm/mach-uniphier/boot-mode/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#
2+
# SPDX-License-Identifier: GPL-2.0+
3+
#
4+
15
obj-y += boot-mode.o
26

37
obj-$(CONFIG_ARCH_UNIPHIER_PH1_SLD3) += boot-mode-ph1-sld3.o

arch/arm/mach-uniphier/clk/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#
2+
# SPDX-License-Identifier: GPL-2.0+
3+
#
4+
15
obj-$(CONFIG_ARCH_UNIPHIER_PH1_SLD3) += clk-ph1-ld4.o
26
obj-$(CONFIG_ARCH_UNIPHIER_PH1_LD4) += clk-ph1-ld4.o
37
obj-$(CONFIG_ARCH_UNIPHIER_PH1_PRO4) += clk-ph1-pro4.o

0 commit comments

Comments
 (0)