Skip to content

Commit

Permalink
Various Makefiles: Add SPDX-License-Identifier tags
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
  • Loading branch information
trini committed Nov 10, 2015
1 parent 522b021 commit da58dec
Show file tree
Hide file tree
Showing 55 changed files with 169 additions and 82 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

VERSION = 2015
PATCHLEVEL = 10
SUBLEVEL =
Expand Down
4 changes: 4 additions & 0 deletions arch/arc/dts/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

dtb-$(CONFIG_TARGET_ARCANGEL4) += arcangel4.dtb
dtb-$(CONFIG_TARGET_TB100) += abilis_tb100.dtb

Expand Down
4 changes: 4 additions & 0 deletions arch/arm/cpu/Makefile
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj- += dummy.o
4 changes: 4 additions & 0 deletions arch/arm/dts/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

dtb-$(CONFIG_S5PC100) += s5pc1xx-smdkc100.dtb
dtb-$(CONFIG_S5PC110) += s5pc1xx-goni.dtb
dtb-$(CONFIG_EXYNOS4) += exynos4210-origen.dtb \
Expand Down
4 changes: 4 additions & 0 deletions arch/arm/mach-at91/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-$(CONFIG_AT91_WANTS_COMMON_PHY) += phy.o
ifneq ($(CONFIG_SPL_BUILD),)
obj-$(CONFIG_AT91SAM9260) += sdram.o spl_at91.o
Expand Down
12 changes: 1 addition & 11 deletions arch/arm/mach-tegra/tegra114/Makefile
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
#
# Copyright (c) 2010-2013, NVIDIA CORPORATION. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms and conditions of the GNU General Public License,
# version 2, as published by the Free Software Foundation.
#
# This program is distributed in the hope it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# SPDX-License-Identifier: GPL-2.0
#

obj-$(CONFIG_SPL_BUILD) += cpu.o
Expand Down
12 changes: 1 addition & 11 deletions arch/arm/mach-tegra/tegra30/Makefile
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
#
# Copyright (c) 2010-2012, NVIDIA CORPORATION. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms and conditions of the GNU General Public License,
# version 2, as published by the Free Software Foundation.
#
# This program is distributed in the hope it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# SPDX-License-Identifier: GPL-2.0
#

obj-$(CONFIG_SPL_BUILD) += cpu.o
Expand Down
4 changes: 4 additions & 0 deletions arch/arm/mach-uniphier/bcu/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-$(CONFIG_ARCH_UNIPHIER_PH1_SLD3) += bcu-ph1-sld3.o
obj-$(CONFIG_ARCH_UNIPHIER_PH1_LD4) += bcu-ph1-ld4.o
obj-$(CONFIG_ARCH_UNIPHIER_PH1_SLD8) += bcu-ph1-ld4.o
4 changes: 4 additions & 0 deletions arch/arm/mach-uniphier/boot-mode/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-y += boot-mode.o

obj-$(CONFIG_ARCH_UNIPHIER_PH1_SLD3) += boot-mode-ph1-sld3.o
Expand Down
4 changes: 4 additions & 0 deletions arch/arm/mach-uniphier/clk/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-$(CONFIG_ARCH_UNIPHIER_PH1_SLD3) += clk-ph1-ld4.o
obj-$(CONFIG_ARCH_UNIPHIER_PH1_LD4) += clk-ph1-ld4.o
obj-$(CONFIG_ARCH_UNIPHIER_PH1_PRO4) += clk-ph1-pro4.o
Expand Down
4 changes: 4 additions & 0 deletions arch/arm/mach-uniphier/ddrphy/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-$(CONFIG_ARCH_UNIPHIER_PH1_LD4) += ddrphy-training.o ddrphy-ph1-ld4.o
obj-$(CONFIG_ARCH_UNIPHIER_PH1_PRO4) += ddrphy-training.o ddrphy-ph1-pro4.o
obj-$(CONFIG_ARCH_UNIPHIER_PH1_SLD8) += ddrphy-training.o ddrphy-ph1-sld8.o
4 changes: 4 additions & 0 deletions arch/arm/mach-uniphier/early-clk/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-$(CONFIG_ARCH_UNIPHIER_PH1_SLD3) += early-clk-ph1-ld4.o
obj-$(CONFIG_ARCH_UNIPHIER_PH1_LD4) += early-clk-ph1-ld4.o
obj-$(CONFIG_ARCH_UNIPHIER_PH1_PRO4) += early-clk-ph1-ld4.o
Expand Down
4 changes: 4 additions & 0 deletions arch/arm/mach-uniphier/early-pinctrl/Makefile
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-$(CONFIG_ARCH_UNIPHIER_PH1_SLD3) += early-pinctrl-ph1-sld3.o
4 changes: 4 additions & 0 deletions arch/arm/mach-uniphier/init/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-y += init.o

obj-$(CONFIG_ARCH_UNIPHIER_PH1_SLD3) += init-ph1-sld3.o
Expand Down
4 changes: 4 additions & 0 deletions arch/arm/mach-uniphier/memconf/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-y += memconf.o
obj-$(CONFIG_ARCH_UNIPHIER_PH1_SLD3) += memconf-ph1-sld3.o
obj-$(CONFIG_ARCH_UNIPHIER_PROXSTREAM2) += memconf-proxstream2.o
Expand Down
4 changes: 4 additions & 0 deletions arch/arm/mach-uniphier/pinctrl/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-$(CONFIG_ARCH_UNIPHIER_PH1_SLD3) += pinctrl-ph1-sld3.o
obj-$(CONFIG_ARCH_UNIPHIER_PH1_LD4) += pinctrl-ph1-ld4.o
obj-$(CONFIG_ARCH_UNIPHIER_PH1_PRO4) += pinctrl-ph1-pro4.o
Expand Down
4 changes: 4 additions & 0 deletions arch/arm/mach-uniphier/pll/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-$(CONFIG_ARCH_UNIPHIER_PH1_SLD3) += pll-init-ph1-sld3.o \
pll-spectrum-ph1-sld3.o
obj-$(CONFIG_ARCH_UNIPHIER_PH1_LD4) += pll-init-ph1-ld4.o \
Expand Down
4 changes: 4 additions & 0 deletions arch/arm/mach-uniphier/sbc/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-$(CONFIG_ARCH_UNIPHIER_PH1_SLD3) += sbc-ph1-sld3.o
obj-$(CONFIG_ARCH_UNIPHIER_PH1_LD4) += sbc-ph1-ld4.o
obj-$(CONFIG_ARCH_UNIPHIER_PH1_PRO4) += sbc-ph1-pro4.o
Expand Down
4 changes: 4 additions & 0 deletions arch/arm/mach-uniphier/umc/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-$(CONFIG_ARCH_UNIPHIER_PH1_LD4) += umc-ph1-ld4.o
obj-$(CONFIG_ARCH_UNIPHIER_PH1_PRO4) += umc-ph1-pro4.o
obj-$(CONFIG_ARCH_UNIPHIER_PH1_SLD8) += umc-ph1-sld8.o
2 changes: 1 addition & 1 deletion arch/blackfin/cpu/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# (C) Copyright 2000-2006
# Wolfgang Denk, DENX Software Engineering, [email protected].
#
# Licensed under the GPL-2 or later.
# SPDX-License-Identifier: GPL-2.0+
#

extra-y := init.elf
Expand Down
4 changes: 4 additions & 0 deletions arch/microblaze/dts/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

dtb-y += microblaze-generic.dtb

targets += $(dtb-y)
Expand Down
4 changes: 4 additions & 0 deletions arch/nios2/dts/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

dtb-y += $(CONFIG_DEFAULT_DEVICE_TREE:"%"=%).dtb

targets += $(dtb-y)
Expand Down
4 changes: 4 additions & 0 deletions arch/powerpc/cpu/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-$(CONFIG_MPC83xx) += mpc8xxx/
obj-$(CONFIG_MPC85xx) += mpc8xxx/
obj-$(CONFIG_MPC86xx) += mpc8xxx/
4 changes: 1 addition & 3 deletions arch/powerpc/cpu/mpc8xxx/Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
#
# Copyright 2009-2010 Freescale Semiconductor, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# Version 2 as published by the Free Software Foundation.
# SPDX-License-Identifier: GPL-2.0
#

MINIMAL=
Expand Down
4 changes: 4 additions & 0 deletions arch/powerpc/dts/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

dtb-$(CONFIG_TARGET_CANYONLANDS) += arches.dtb canyonlands.dtb glacier.dtb

targets += $(dtb-y)
Expand Down
4 changes: 4 additions & 0 deletions arch/sandbox/dts/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

dtb-$(CONFIG_SANDBOX) += sandbox.dtb
dtb-$(CONFIG_UT_DM) += test.dtb

Expand Down
4 changes: 4 additions & 0 deletions arch/x86/dts/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

dtb-y += bayleybay.dtb \
chromebook_link.dtb \
chromebox_panther.dtb \
Expand Down
14 changes: 1 addition & 13 deletions board/atmark-techno/armadillo-800eva/Makefile
Original file line number Diff line number Diff line change
@@ -1,20 +1,8 @@
#
# Copyright (C) 2012 Nobuhiro Iwamatsu <[email protected]>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of
# the License.
# SPDX-License-Identifier: GPL-2.0
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307 USA

obj-y += armadillo-800eva.o

2 changes: 2 additions & 0 deletions board/birdland/bav335x/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
#
# Copyright (C) 2012-2014, Birdland Audio - http://birdland.com/oem
#
# SPDX-License-Identifier: GPL-2.0+
#

ifeq ($(CONFIG_SKIP_LOWLEVEL_INIT),)
obj-y := mux.o
Expand Down
9 changes: 1 addition & 8 deletions board/compal/paz00/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,7 @@
# See file CREDITS for list of people who contributed to this
# project.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms and conditions of the GNU General Public License,
# version 2, as published by the Free Software Foundation.
#
# This program is distributed in the hope it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
# SPDX-License-Identifier: GPL-2.0
#

obj-y := paz00.o
5 changes: 1 addition & 4 deletions board/gdsys/p1022/Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
#
# Copyright 2010 Freescale Semiconductor, Inc.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option)
# any later version.
# SPDX-License-Identifier: GPL-2.0+
#

obj-y += law.o
Expand Down
2 changes: 2 additions & 0 deletions board/intercontrol/digsy_mtc/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#
# Author: Grzegorz Bernacki, Semihalf, [email protected]
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-y := digsy_mtc.o cmd_mtc.o
obj-$(CONFIG_VIDEO) += cmd_disp.o
12 changes: 1 addition & 11 deletions board/nvidia/beaver/Makefile
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
#
# Copyright (c) 2010-2013, NVIDIA CORPORATION. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms and conditions of the GNU General Public License,
# version 2, as published by the Free Software Foundation.
#
# This program is distributed in the hope it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# SPDX-License-Identifier: GPL-2.0
#

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

obj-y := dalmore.o
3 changes: 3 additions & 0 deletions board/seco/common/Makefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-$(CONFIG_TARGET_SECOMX6) += mx6.o
2 changes: 2 additions & 0 deletions board/varisys/cyrus/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-y += $(BOARD).o
obj-y += ddr.o
Expand Down
3 changes: 3 additions & 0 deletions doc/DocBook/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
# to document the SRC - and how to read it.
# To add a new book the only step required is to add the book to the
# list of DOCBOOKS.
#
# SPDX-License-Identifier: GPL-2.0
#

DOCBOOKS := linker_lists.xml stdio.xml

Expand Down
4 changes: 4 additions & 0 deletions drivers/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

obj-$(CONFIG_$(SPL_)DM) += core/
obj-$(CONFIG_$(SPL_)CLK) += clk/
obj-$(CONFIG_$(SPL_)LED) += led/
Expand Down
4 changes: 4 additions & 0 deletions drivers/bios_emulator/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# SPDX-License-Identifier: GPL-2.0+
#

X86DIR = x86emu

obj-y = atibios.o biosemu.o besys.o bios.o \
Expand Down
4 changes: 1 addition & 3 deletions drivers/ddr/fsl/Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
#
# Copyright 2008-2014 Freescale Semiconductor, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# Version 2 as published by the Free Software Foundation.
# SPDX-License-Identifier: GPL-2.0
#

obj-$(CONFIG_SYS_FSL_DDR1) += main.o util.o ctrl_regs.o options.o \
Expand Down
2 changes: 2 additions & 0 deletions drivers/memory/Makefile
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# SPDX-License-Identifier: GPL-2.0+

obj-$(CONFIG_TI_AEMIF) += ti-aemif.o
Loading

0 comments on commit da58dec

Please sign in to comment.