contrib: add GPL license tag on files that miss it
Some file miss completely the license tag. Add the SPDX tag, using the same GPL-2.0-or-later license of the OpenOCD project. The SPDX tag on files *.c is incorrect, as it should use the C99 single line comment using '//'. But current checkpatch doesn't allow C99 comments, so keep using standard C comments, by now. Change-Id: I24bd362eeb6b74f09aceb9b757d45cbfa4afe334 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/7160 Tested-by: jenkins
This commit is contained in:
parent
a126229dff
commit
36597636f2
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# Copy this file to /etc/udev/rules.d/
|
# Copy this file to /etc/udev/rules.d/
|
||||||
# If rules fail to reload automatically, you can refresh udev rules
|
# If rules fail to reload automatically, you can refresh udev rules
|
||||||
# with the command "udevadm control --reload"
|
# with the command "udevadm control --reload"
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
BR2_armeb=y
|
BR2_armeb=y
|
||||||
BR2_cortex_a7=y
|
BR2_cortex_a7=y
|
||||||
BR2_TOOLCHAIN_EXTERNAL=y
|
BR2_TOOLCHAIN_EXTERNAL=y
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# This is an example of how to do a cross-build of OpenOCD using pkg-config.
|
# This is an example of how to do a cross-build of OpenOCD using pkg-config.
|
||||||
# Cross-building with pkg-config is deceptively hard and most guides and
|
# Cross-building with pkg-config is deceptively hard and most guides and
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/perl
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
# Automatically generates the StellarisParts struct in src/flash/nor/stellaris.c
|
# Automatically generates the StellarisParts struct in src/flash/nor/stellaris.c
|
||||||
# Uses the header files from TI/Luminary's StellarisWare complete Firmware Development Package
|
# Uses the header files from TI/Luminary's StellarisWare complete Firmware Development Package
|
||||||
# available from: http://www.luminarymicro.com/products/software_updates.html
|
# available from: http://www.luminarymicro.com/products/software_updates.html
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
.PHONY: arm clean-arm
|
.PHONY: arm clean-arm
|
||||||
|
|
||||||
all: arm stm8
|
all: arm stm8
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
BIN2C = ../../../src/helper/bin2char.sh
|
BIN2C = ../../../src/helper/bin2char.sh
|
||||||
|
|
||||||
ARM_CROSS_COMPILE ?= arm-none-eabi-
|
ARM_CROSS_COMPILE ?= arm-none-eabi-
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
BIN2C = ../../../../src/helper/bin2char.sh
|
BIN2C = ../../../../src/helper/bin2char.sh
|
||||||
|
|
||||||
CROSS_COMPILE ?= arm-none-eabi-
|
CROSS_COMPILE ?= arm-none-eabi-
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
|
|
||||||
/* identify the Entry Point */
|
/* identify the Entry Point */
|
||||||
ENTRY(reset_handler)
|
ENTRY(reset_handler)
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
BIN2C = ../../../src/helper/bin2char.sh
|
BIN2C = ../../../src/helper/bin2char.sh
|
||||||
|
|
||||||
ARM_CROSS_COMPILE ?= arm-none-eabi-
|
ARM_CROSS_COMPILE ?= arm-none-eabi-
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
soft_reset_halt
|
soft_reset_halt
|
||||||
load_image at91sam7x_ocl.bin 0x200000
|
load_image at91sam7x_ocl.bin 0x200000
|
||||||
resume 0x200000
|
resume 0x200000
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
##############################################################################################
|
##############################################################################################
|
||||||
# Start of default section
|
# Start of default section
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
BIN2C = ../../../../src/helper/bin2char.sh
|
BIN2C = ../../../../src/helper/bin2char.sh
|
||||||
|
|
||||||
CROSS_COMPILE ?= arm-none-eabi-
|
CROSS_COMPILE ?= arm-none-eabi-
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
|
|
||||||
/* To be built with arm-none-eabi-gcc -c -mthumb -mcpu=cortex-m0 -O3 bluenrgx.c */
|
/* To be built with arm-none-eabi-gcc -c -mthumb -mcpu=cortex-m0 -O3 bluenrgx.c */
|
||||||
/* Then postprocess output of command "arm-none-eabi-objdump -d bluenrgx.o" to make a C array of bytes */
|
/* Then postprocess output of command "arm-none-eabi-objdump -d bluenrgx.o" to make a C array of bytes */
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
BIN2C = ../../../../src/helper/bin2char.sh
|
BIN2C = ../../../../src/helper/bin2char.sh
|
||||||
|
|
||||||
CROSS_COMPILE ?= arm-none-eabi-
|
CROSS_COMPILE ?= arm-none-eabi-
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
BIN2C = ../../../../src/helper/bin2char.sh
|
BIN2C = ../../../../src/helper/bin2char.sh
|
||||||
|
|
||||||
CROSS_COMPILE ?= riscv64-unknown-elf-
|
CROSS_COMPILE ?= riscv64-unknown-elf-
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
|
|
||||||
OUTPUT_ARCH( "riscv" )
|
OUTPUT_ARCH( "riscv" )
|
||||||
|
|
||||||
SECTIONS
|
SECTIONS
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
|
|
||||||
#if __riscv_xlen == 64
|
#if __riscv_xlen == 64
|
||||||
# define LREG ld
|
# define LREG ld
|
||||||
# define SREG sd
|
# define SREG sd
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
BIN2C = ../../../../src/helper/bin2char.sh
|
BIN2C = ../../../../src/helper/bin2char.sh
|
||||||
|
|
||||||
CROSS_COMPILE ?= arm-none-eabi-
|
CROSS_COMPILE ?= arm-none-eabi-
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Spansion FM4 flash sector erase algorithm
|
* Spansion FM4 flash sector erase algorithm
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Spansion FM4 flash macros
|
* Spansion FM4 flash macros
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Spansion FM4 flash write algorithm
|
* Spansion FM4 flash write algorithm
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
BIN2C = ../../../../src/helper/bin2char.sh
|
BIN2C = ../../../../src/helper/bin2char.sh
|
||||||
|
|
||||||
CROSS_COMPILE ?= riscv-none-embed-
|
CROSS_COMPILE ?= riscv-none-embed-
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
BIN2C = ../../../../src/helper/bin2char.sh
|
BIN2C = ../../../../src/helper/bin2char.sh
|
||||||
|
|
||||||
CROSS_COMPILE ?= arm-none-eabi-
|
CROSS_COMPILE ?= arm-none-eabi-
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
BIN2C = ../../../../src/helper/bin2char.sh
|
BIN2C = ../../../../src/helper/bin2char.sh
|
||||||
|
|
||||||
CROSS_COMPILE ?= arm-none-eabi-
|
CROSS_COMPILE ?= arm-none-eabi-
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
BIN2C = ../../../../src/helper/bin2char.sh
|
BIN2C = ../../../../src/helper/bin2char.sh
|
||||||
|
|
||||||
CROSS_COMPILE ?= arm-none-eabi-
|
CROSS_COMPILE ?= arm-none-eabi-
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
BIN2C = ../../../../src/helper/bin2char.sh
|
BIN2C = ../../../../src/helper/bin2char.sh
|
||||||
|
|
||||||
CROSS_COMPILE ?= arm-none-eabi-
|
CROSS_COMPILE ?= arm-none-eabi-
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
CROSS_COMPILE=arm-linux-gnueabihf-
|
CROSS_COMPILE=arm-linux-gnueabihf-
|
||||||
BIN2C = ../../../../src/helper/bin2char.sh
|
BIN2C = ../../../../src/helper/bin2char.sh
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
BIN2C = ../../../../src/helper/bin2char.sh
|
BIN2C = ../../../../src/helper/bin2char.sh
|
||||||
|
|
||||||
CROSS_COMPILE ?= arm-none-eabi-
|
CROSS_COMPILE ?= arm-none-eabi-
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
BIN2C = ../../../../src/helper/bin2char.sh
|
BIN2C = ../../../../src/helper/bin2char.sh
|
||||||
|
|
||||||
SRCS=stmqspi_erase_check.S stmqspi_crc32.S stmqspi_read.S stmqspi_write.S \
|
SRCS=stmqspi_erase_check.S stmqspi_crc32.S stmqspi_read.S stmqspi_write.S \
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/perl
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
#
|
#
|
||||||
# Helper for generating GPIO setup for STM32F0, F4, F7, H7, L0, L1, L4, L4+
|
# Helper for generating GPIO setup for STM32F0, F4, F7, H7, L0, L1, L4, L4+
|
||||||
# and F1 (for 'stmqspi' and 'cmspi' drivers).
|
# and F1 (for 'stmqspi' and 'cmspi' drivers).
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
BIN2C = ../../../../src/helper/bin2char.sh
|
BIN2C = ../../../../src/helper/bin2char.sh
|
||||||
|
|
||||||
CROSS_COMPILE ?= arm-none-eabi-
|
CROSS_COMPILE ?= arm-none-eabi-
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
BIN2C = ../../../src/helper/bin2char.sh
|
BIN2C = ../../../src/helper/bin2char.sh
|
||||||
|
|
||||||
ARM_CROSS_COMPILE ?= arm-none-eabi-
|
ARM_CROSS_COMPILE ?= arm-none-eabi-
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Since at least FreeRTOS V7.5.3 uxTopUsedPriority is no longer
|
* Since at least FreeRTOS V7.5.3 uxTopUsedPriority is no longer
|
||||||
* present in the kernel, so it has to be supplied by other means for
|
* present in the kernel, so it has to be supplied by other means for
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* uC/OS-III does not provide a fixed layout for OS_TCB, which makes it
|
* uC/OS-III does not provide a fixed layout for OS_TCB, which makes it
|
||||||
* impossible to determine the appropriate offsets within the structure
|
* impossible to determine the appropriate offsets within the structure
|
||||||
|
|
Loading…
Reference in New Issue