From 05d531dc823637f78a1dca592ea0a998f8d3c501 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Fri, 8 Nov 2024 14:38:56 +0100 Subject: [PATCH] boards/arm/str71x: migrate to SPDX identifier Most tools used for compliance and SBOM generation use SPDX identifiers This change brings us a step closer to an easy SBOM generation. Signed-off-by: Alin Jerpelea --- boards/arm/str71x/olimex-strp711/include/board.h | 2 ++ boards/arm/str71x/olimex-strp711/scripts/Make.defs | 2 ++ boards/arm/str71x/olimex-strp711/scripts/ld.script | 2 ++ boards/arm/str71x/olimex-strp711/src/Makefile | 2 ++ boards/arm/str71x/olimex-strp711/src/str71_appinit.c | 2 ++ boards/arm/str71x/olimex-strp711/src/str71_buttons.c | 2 ++ boards/arm/str71x/olimex-strp711/src/str71_enc28j60.c | 2 ++ boards/arm/str71x/olimex-strp711/src/str71_leds.c | 2 ++ boards/arm/str71x/olimex-strp711/src/str71_spi.c | 2 ++ 9 files changed, 18 insertions(+) diff --git a/boards/arm/str71x/olimex-strp711/include/board.h b/boards/arm/str71x/olimex-strp711/include/board.h index 1b95164883c..6ea4662a399 100644 --- a/boards/arm/str71x/olimex-strp711/include/board.h +++ b/boards/arm/str71x/olimex-strp711/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/str71x/olimex-strp711/include/board.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/boards/arm/str71x/olimex-strp711/scripts/Make.defs b/boards/arm/str71x/olimex-strp711/scripts/Make.defs index 711ddda2b33..65d1c1a68f0 100644 --- a/boards/arm/str71x/olimex-strp711/scripts/Make.defs +++ b/boards/arm/str71x/olimex-strp711/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################## # boards/arm/str71x/olimex-strp711/scripts/Make.defs # +# SPDX-License-Identifier: Apache-2.0 +# # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. The diff --git a/boards/arm/str71x/olimex-strp711/scripts/ld.script b/boards/arm/str71x/olimex-strp711/scripts/ld.script index ef1879aa80f..f22db48034a 100644 --- a/boards/arm/str71x/olimex-strp711/scripts/ld.script +++ b/boards/arm/str71x/olimex-strp711/scripts/ld.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/str71x/olimex-strp711/scripts/ld.script * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/boards/arm/str71x/olimex-strp711/src/Makefile b/boards/arm/str71x/olimex-strp711/src/Makefile index 0caf1821e25..d0fa559d33e 100644 --- a/boards/arm/str71x/olimex-strp711/src/Makefile +++ b/boards/arm/str71x/olimex-strp711/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/arm/str71x/olimex-strp711/src/Makefile # +# SPDX-License-Identifier: Apache-2.0 +# # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. The diff --git a/boards/arm/str71x/olimex-strp711/src/str71_appinit.c b/boards/arm/str71x/olimex-strp711/src/str71_appinit.c index a7fee878c09..ffc5f7d1a17 100644 --- a/boards/arm/str71x/olimex-strp711/src/str71_appinit.c +++ b/boards/arm/str71x/olimex-strp711/src/str71_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/str71x/olimex-strp711/src/str71_appinit.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/boards/arm/str71x/olimex-strp711/src/str71_buttons.c b/boards/arm/str71x/olimex-strp711/src/str71_buttons.c index 7f41e23989c..b4043e49b43 100644 --- a/boards/arm/str71x/olimex-strp711/src/str71_buttons.c +++ b/boards/arm/str71x/olimex-strp711/src/str71_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/str71x/olimex-strp711/src/str71_buttons.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/boards/arm/str71x/olimex-strp711/src/str71_enc28j60.c b/boards/arm/str71x/olimex-strp711/src/str71_enc28j60.c index faf1dcc498f..2f1fe96542a 100644 --- a/boards/arm/str71x/olimex-strp711/src/str71_enc28j60.c +++ b/boards/arm/str71x/olimex-strp711/src/str71_enc28j60.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/str71x/olimex-strp711/src/str71_enc28j60.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/boards/arm/str71x/olimex-strp711/src/str71_leds.c b/boards/arm/str71x/olimex-strp711/src/str71_leds.c index c0af6a4eec1..8d1e5facfaf 100644 --- a/boards/arm/str71x/olimex-strp711/src/str71_leds.c +++ b/boards/arm/str71x/olimex-strp711/src/str71_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/str71x/olimex-strp711/src/str71_leds.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/boards/arm/str71x/olimex-strp711/src/str71_spi.c b/boards/arm/str71x/olimex-strp711/src/str71_spi.c index 44cfbbbd635..b982176fbe8 100644 --- a/boards/arm/str71x/olimex-strp711/src/str71_spi.c +++ b/boards/arm/str71x/olimex-strp711/src/str71_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/str71x/olimex-strp711/src/str71_spi.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The