diff mbox series

[2/4] Apply GPL-2.0-only REUSE header to root folder

Message ID 20210420190440.20328-3-toertel@gmail.com
State Accepted
Headers show
Series Make files in root folder REUSE compliant | expand

Commit Message

Mark Jonas April 20, 2021, 7:04 p.m. UTC
Signed-off-by: Mark Jonas <toertel@gmail.com>
---
 Kconfig        |  4 ++++
 Makefile       |  4 ++++
 Makefile.deps  |  4 ++++
 Makefile.flags |  6 +++++-
 Makefile.help  |  4 ++++
 README.md      | 10 ++++++++--
 6 files changed, 29 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/Kconfig b/Kconfig
index 75f9eaa..2f0c710 100644
--- a/Kconfig
+++ b/Kconfig
@@ -1,3 +1,7 @@ 
+# SPDX-FileCopyrightText: 2013 Stefano Babic <sbabic@denx.de>
+#
+# SPDX-License-Identifier: GPL-2.0-only
+
 #
 # For a description of the syntax of this configuration file,
 # see scripts/kbuild/config-language.txt.
diff --git a/Makefile b/Makefile
index cc15452..6d52a3a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,7 @@ 
+# SPDX-FileCopyrightText: 2013 Stefano Babic <sbabic@denx.de>
+#
+# SPDX-License-Identifier: GPL-2.0-only
+
 VERSION = 2020
 PATCHLEVEL = 11
 SUBLEVEL = 0
diff --git a/Makefile.deps b/Makefile.deps
index 6404ed9..13ff29d 100644
--- a/Makefile.deps
+++ b/Makefile.deps
@@ -1,3 +1,7 @@ 
+# SPDX-FileCopyrightText: 2013 Stefano Babic <sbabic@denx.de>
+#
+# SPDX-License-Identifier: GPL-2.0-only
+
 ifeq ($(HAVE_LUA),)
 export HAVE_LUA = y
 endif
diff --git a/Makefile.flags b/Makefile.flags
index 7003af1..667a1cd 100644
--- a/Makefile.flags
+++ b/Makefile.flags
@@ -1,3 +1,7 @@ 
+# SPDX-FileCopyrightText: 2013 Stefano Babic <sbabic@denx.de>
+#
+# SPDX-License-Identifier: GPL-2.0-only
+
 # ==========================================================================
 # Build system
 # ==========================================================================
@@ -116,7 +120,7 @@  endif
 ifeq ($(CONFIG_LUA),y)
 ifeq ($(CONFIG_HANDLER_IN_LUA),y)
 ifeq ($(CONFIG_EMBEDDED_LUA_HANDLER),y)
-ifneq ($(CONFIG_EMBEDDED_LUA_HANDLER_SOURCE),)	
+ifneq ($(CONFIG_EMBEDDED_LUA_HANDLER_SOURCE),)
 LDFLAGS_swupdate += -Wl,--format=binary -Wl,$(CONFIG_EMBEDDED_LUA_HANDLER_SOURCE) -Wl,--format=default
 KBUILD_CPPFLAGS += -DEMBEDDED_LUA_SRC_START="_binary_$(subst ",,$(subst .,_,$(subst /,_,$(CONFIG_EMBEDDED_LUA_HANDLER_SOURCE))))_start"
 KBUILD_CPPFLAGS += -DEMBEDDED_LUA_SRC_END="_binary_$(subst ",,$(subst .,_,$(subst /,_,$(CONFIG_EMBEDDED_LUA_HANDLER_SOURCE))))_end"
diff --git a/Makefile.help b/Makefile.help
index da1896e..43b8f04 100644
--- a/Makefile.help
+++ b/Makefile.help
@@ -1,3 +1,7 @@ 
+# SPDX-FileCopyrightText: 2013 Stefano Babic <sbabic@denx.de>
+#
+# SPDX-License-Identifier: GPL-2.0-only
+
 # ==========================================================================
 # Build system
 # ==========================================================================
diff --git a/README.md b/README.md
index 3abd78c..228bbe9 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,9 @@ 
+<!--
+SPDX-FileCopyrightText: 2013 Stefano Babic <sbabic@denx.de>
+
+SPDX-License-Identifier: GPL-2.0-only
+-->
+
 <p align ="center"><img src=SWUpdate.svg width=200 height=200 /></p>
 
 SWUpdate - Software Update for Embedded Linux Devices
@@ -40,7 +46,7 @@  SWUpdate is a framework with a lot of configurable options:
 - Fail safe and atomic update
 - Lua interpreter to extend the update rules on your needs
 - Hardware / Software compatibility.
-- Small footprint to generate a rescue system to restore the device. 
+- Small footprint to generate a rescue system to restore the device.
 - Cryptographic sign and verification of updates
 	- support for OpenSSL
 	- support for mbedTLS
@@ -66,7 +72,7 @@  the [meta-swupdate](https://layers.openembedded.org/layerindex/branch/master/lay
 It is also integrated in [Buildroot](https://github.com/buildroot/buildroot/blob/master/package/swupdate/swupdate.config).
 Debian (and Debian-like distributions) has merged a [package](https://packages.debian.org/unstable/swupdate).
 
-Examples using meta-swupdate with evaluation boards (Beaglebone, RPI3) are provided in 
+Examples using meta-swupdate with evaluation boards (Beaglebone, RPI3) are provided in
 [meta-swupdate-boards](https://layers.openembedded.org/layerindex/branch/master/layer/meta-swupdate-boards/) layer.
 
 ## License