diff options
author | Antonio Borneo <borneo.antonio@gmail.com> | 2022-06-25 18:19:46 +0200 |
---|---|---|
committer | Antonio Borneo <borneo.antonio@gmail.com> | 2022-07-23 13:06:38 +0000 |
commit | 96202cda1906be3b698614a6a7977cc5e6407cf6 (patch) | |
tree | a33e42baafdf48daf5f086042a14780fa30fa4b8 /src/target | |
parent | 5e96b012af91c4dc6eae680b67a594e9a22b3ead (diff) | |
download | riscv-openocd-96202cda1906be3b698614a6a7977cc5e6407cf6.zip riscv-openocd-96202cda1906be3b698614a6a7977cc5e6407cf6.tar.gz riscv-openocd-96202cda1906be3b698614a6a7977cc5e6407cf6.tar.bz2 |
openocd: build: add SPDX tag
Add the SPDX tag to makefiles, configuration scripts and tcl files
present in the folders under src/
Change-Id: I1e4552aafe46ef4893d510da9d732c5f181784a4
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: https://review.openocd.org/c/openocd/+/7051
Tested-by: jenkins
Diffstat (limited to 'src/target')
-rw-r--r-- | src/target/Makefile.am | 2 | ||||
-rw-r--r-- | src/target/espressif/Makefile.am | 2 | ||||
-rw-r--r-- | src/target/openrisc/Makefile.am | 2 | ||||
-rw-r--r-- | src/target/riscv/Makefile.am | 2 | ||||
-rw-r--r-- | src/target/startup.tcl | 2 | ||||
-rw-r--r-- | src/target/xtensa/Makefile.am | 2 |
6 files changed, 12 insertions, 0 deletions
diff --git a/src/target/Makefile.am b/src/target/Makefile.am index 799c3dd..4687092 100644 --- a/src/target/Makefile.am +++ b/src/target/Makefile.am @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + %C%_libtarget_la_LIBADD = %D%/openrisc/libopenrisc.la \ %D%/riscv/libriscv.la \ %D%/xtensa/libxtensa.la \ diff --git a/src/target/espressif/Makefile.am b/src/target/espressif/Makefile.am index 2ea31d8..df002b3 100644 --- a/src/target/espressif/Makefile.am +++ b/src/target/espressif/Makefile.am @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + noinst_LTLIBRARIES += %D%/libespressif.la %C%_libespressif_la_SOURCES = \ %D%/esp_xtensa.c \ diff --git a/src/target/openrisc/Makefile.am b/src/target/openrisc/Makefile.am index 5a2549a..b9c0f83 100644 --- a/src/target/openrisc/Makefile.am +++ b/src/target/openrisc/Makefile.am @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + noinst_LTLIBRARIES += %D%/libopenrisc.la %C%_libopenrisc_la_SOURCES = \ %D%/or1k.c \ diff --git a/src/target/riscv/Makefile.am b/src/target/riscv/Makefile.am index 83f1a8c..4b6a74f 100644 --- a/src/target/riscv/Makefile.am +++ b/src/target/riscv/Makefile.am @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + noinst_LTLIBRARIES += %D%/libriscv.la %C%_libriscv_la_SOURCES = \ %D%/asm.h \ diff --git a/src/target/startup.tcl b/src/target/startup.tcl index 0e46992..290e79d 100644 --- a/src/target/startup.tcl +++ b/src/target/startup.tcl @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + # Defines basic Tcl procs for OpenOCD target module proc new_target_name { } { diff --git a/src/target/xtensa/Makefile.am b/src/target/xtensa/Makefile.am index f6cee99..a11e585 100644 --- a/src/target/xtensa/Makefile.am +++ b/src/target/xtensa/Makefile.am @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + noinst_LTLIBRARIES += %D%/libxtensa.la %C%_libxtensa_la_SOURCES = \ %D%/xtensa.c \ |