From fff8275aec8e34f6e477f811e2ac724d869bde79 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 14:06:51 +0100 Subject: [PATCH 01/53] boards/arm64/a64: 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/arm64/a64/pinephone/include/board.h | 2 ++ boards/arm64/a64/pinephone/include/board_memorymap.h | 2 ++ boards/arm64/a64/pinephone/scripts/Make.defs | 2 ++ boards/arm64/a64/pinephone/scripts/dramboot.ld | 2 ++ boards/arm64/a64/pinephone/src/Makefile | 2 ++ boards/arm64/a64/pinephone/src/pinephone.h | 2 ++ boards/arm64/a64/pinephone/src/pinephone_appinit.c | 2 ++ boards/arm64/a64/pinephone/src/pinephone_autoleds.c | 2 ++ boards/arm64/a64/pinephone/src/pinephone_boardinit.c | 2 ++ boards/arm64/a64/pinephone/src/pinephone_bringup.c | 2 ++ boards/arm64/a64/pinephone/src/pinephone_display.c | 2 ++ boards/arm64/a64/pinephone/src/pinephone_display.h | 2 ++ boards/arm64/a64/pinephone/src/pinephone_lcd.c | 2 ++ boards/arm64/a64/pinephone/src/pinephone_lcd.h | 2 ++ boards/arm64/a64/pinephone/src/pinephone_pmic.c | 2 ++ boards/arm64/a64/pinephone/src/pinephone_pmic.h | 2 ++ boards/arm64/a64/pinephone/src/pinephone_reset.c | 2 ++ boards/arm64/a64/pinephone/src/pinephone_touch.c | 2 ++ boards/arm64/a64/pinephone/src/pinephone_touch.h | 2 ++ boards/arm64/a64/pinephone/src/pinephone_userleds.c | 2 ++ 20 files changed, 40 insertions(+) diff --git a/boards/arm64/a64/pinephone/include/board.h b/boards/arm64/a64/pinephone/include/board.h index 7716e44d1bb9b..56a386c6d164a 100644 --- a/boards/arm64/a64/pinephone/include/board.h +++ b/boards/arm64/a64/pinephone/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/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/arm64/a64/pinephone/include/board_memorymap.h b/boards/arm64/a64/pinephone/include/board_memorymap.h index 06840ed967767..8b9cd6225c204 100644 --- a/boards/arm64/a64/pinephone/include/board_memorymap.h +++ b/boards/arm64/a64/pinephone/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/include/board_memorymap.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/arm64/a64/pinephone/scripts/Make.defs b/boards/arm64/a64/pinephone/scripts/Make.defs index 7d400486fdf2e..8c7b28b9423b9 100644 --- a/boards/arm64/a64/pinephone/scripts/Make.defs +++ b/boards/arm64/a64/pinephone/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/a64/pinephone/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/arm64/a64/pinephone/scripts/dramboot.ld b/boards/arm64/a64/pinephone/scripts/dramboot.ld index 22890c0aefca7..aa3a27a940225 100644 --- a/boards/arm64/a64/pinephone/scripts/dramboot.ld +++ b/boards/arm64/a64/pinephone/scripts/dramboot.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/scripts/dramboot.ld * + * 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/arm64/a64/pinephone/src/Makefile b/boards/arm64/a64/pinephone/src/Makefile index 353d3ae634446..8376a6844c5a1 100644 --- a/boards/arm64/a64/pinephone/src/Makefile +++ b/boards/arm64/a64/pinephone/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/a64/pinephone/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/arm64/a64/pinephone/src/pinephone.h b/boards/arm64/a64/pinephone/src/pinephone.h index 6c7625cbe86a4..7970618920b40 100644 --- a/boards/arm64/a64/pinephone/src/pinephone.h +++ b/boards/arm64/a64/pinephone/src/pinephone.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/src/pinephone.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/arm64/a64/pinephone/src/pinephone_appinit.c b/boards/arm64/a64/pinephone/src/pinephone_appinit.c index 844bcdffc2990..2331583e1fffe 100644 --- a/boards/arm64/a64/pinephone/src/pinephone_appinit.c +++ b/boards/arm64/a64/pinephone/src/pinephone_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/src/pinephone_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/arm64/a64/pinephone/src/pinephone_autoleds.c b/boards/arm64/a64/pinephone/src/pinephone_autoleds.c index 95da43057544d..7ce321eb06599 100644 --- a/boards/arm64/a64/pinephone/src/pinephone_autoleds.c +++ b/boards/arm64/a64/pinephone/src/pinephone_autoleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/src/pinephone_autoleds.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/arm64/a64/pinephone/src/pinephone_boardinit.c b/boards/arm64/a64/pinephone/src/pinephone_boardinit.c index 2b3c20a827843..7547e9203c9e4 100644 --- a/boards/arm64/a64/pinephone/src/pinephone_boardinit.c +++ b/boards/arm64/a64/pinephone/src/pinephone_boardinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/src/pinephone_boardinit.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/arm64/a64/pinephone/src/pinephone_bringup.c b/boards/arm64/a64/pinephone/src/pinephone_bringup.c index 3ea296a35b213..71d3d330d0bed 100644 --- a/boards/arm64/a64/pinephone/src/pinephone_bringup.c +++ b/boards/arm64/a64/pinephone/src/pinephone_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/src/pinephone_bringup.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/arm64/a64/pinephone/src/pinephone_display.c b/boards/arm64/a64/pinephone/src/pinephone_display.c index 8e4216a0fac02..3354a11742ce3 100644 --- a/boards/arm64/a64/pinephone/src/pinephone_display.c +++ b/boards/arm64/a64/pinephone/src/pinephone_display.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/src/pinephone_display.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/arm64/a64/pinephone/src/pinephone_display.h b/boards/arm64/a64/pinephone/src/pinephone_display.h index 714009042e9a3..f39986b0e8649 100644 --- a/boards/arm64/a64/pinephone/src/pinephone_display.h +++ b/boards/arm64/a64/pinephone/src/pinephone_display.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/src/pinephone_display.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/arm64/a64/pinephone/src/pinephone_lcd.c b/boards/arm64/a64/pinephone/src/pinephone_lcd.c index ec8b6c6788c5d..57d93704a8612 100644 --- a/boards/arm64/a64/pinephone/src/pinephone_lcd.c +++ b/boards/arm64/a64/pinephone/src/pinephone_lcd.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/src/pinephone_lcd.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/arm64/a64/pinephone/src/pinephone_lcd.h b/boards/arm64/a64/pinephone/src/pinephone_lcd.h index 77ad379498e6d..6637e65ff4193 100644 --- a/boards/arm64/a64/pinephone/src/pinephone_lcd.h +++ b/boards/arm64/a64/pinephone/src/pinephone_lcd.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/src/pinephone_lcd.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/arm64/a64/pinephone/src/pinephone_pmic.c b/boards/arm64/a64/pinephone/src/pinephone_pmic.c index 7622956049427..9223eee8e32ca 100644 --- a/boards/arm64/a64/pinephone/src/pinephone_pmic.c +++ b/boards/arm64/a64/pinephone/src/pinephone_pmic.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/src/pinephone_pmic.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/arm64/a64/pinephone/src/pinephone_pmic.h b/boards/arm64/a64/pinephone/src/pinephone_pmic.h index c284845437fb7..749d2702c8caa 100644 --- a/boards/arm64/a64/pinephone/src/pinephone_pmic.h +++ b/boards/arm64/a64/pinephone/src/pinephone_pmic.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/src/pinephone_pmic.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/arm64/a64/pinephone/src/pinephone_reset.c b/boards/arm64/a64/pinephone/src/pinephone_reset.c index 4667e0facf42a..aca3e635f24b8 100644 --- a/boards/arm64/a64/pinephone/src/pinephone_reset.c +++ b/boards/arm64/a64/pinephone/src/pinephone_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/src/pinephone_reset.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/arm64/a64/pinephone/src/pinephone_touch.c b/boards/arm64/a64/pinephone/src/pinephone_touch.c index 64be5ed085336..138140e2a84ff 100644 --- a/boards/arm64/a64/pinephone/src/pinephone_touch.c +++ b/boards/arm64/a64/pinephone/src/pinephone_touch.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/src/pinephone_touch.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/arm64/a64/pinephone/src/pinephone_touch.h b/boards/arm64/a64/pinephone/src/pinephone_touch.h index 2f777d3dab0b7..78087d4b5beb2 100644 --- a/boards/arm64/a64/pinephone/src/pinephone_touch.h +++ b/boards/arm64/a64/pinephone/src/pinephone_touch.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/src/pinephone_touch.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/arm64/a64/pinephone/src/pinephone_userleds.c b/boards/arm64/a64/pinephone/src/pinephone_userleds.c index 1e6754d6cc1e0..89ca321d88160 100644 --- a/boards/arm64/a64/pinephone/src/pinephone_userleds.c +++ b/boards/arm64/a64/pinephone/src/pinephone_userleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/a64/pinephone/src/pinephone_userleds.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 From b96579e4a0bd0305567512fdf58230dcde3d699e Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 14:08:35 +0100 Subject: [PATCH 02/53] boards/arm64/fvp-v8r: 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/arm64/fvp-v8r/fvp-armv8r/include/board.h | 2 ++ boards/arm64/fvp-v8r/fvp-armv8r/include/board_memorymap.h | 2 ++ boards/arm64/fvp-v8r/fvp-armv8r/scripts/Make.defs | 2 ++ boards/arm64/fvp-v8r/fvp-armv8r/scripts/dramboot.ld | 2 ++ boards/arm64/fvp-v8r/fvp-armv8r/src/Makefile | 2 ++ boards/arm64/fvp-v8r/fvp-armv8r/src/fvp-armv8r.h | 2 ++ boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_appinit.c | 2 ++ boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_boardinit.c | 2 ++ boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_bringup.c | 2 ++ 9 files changed, 18 insertions(+) diff --git a/boards/arm64/fvp-v8r/fvp-armv8r/include/board.h b/boards/arm64/fvp-v8r/fvp-armv8r/include/board.h index fe6e5b3665a4f..8d31ab4c1d993 100644 --- a/boards/arm64/fvp-v8r/fvp-armv8r/include/board.h +++ b/boards/arm64/fvp-v8r/fvp-armv8r/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/fvp-v8r/fvp-armv8r/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/arm64/fvp-v8r/fvp-armv8r/include/board_memorymap.h b/boards/arm64/fvp-v8r/fvp-armv8r/include/board_memorymap.h index b1b108922d9f2..66d3d1191739b 100644 --- a/boards/arm64/fvp-v8r/fvp-armv8r/include/board_memorymap.h +++ b/boards/arm64/fvp-v8r/fvp-armv8r/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/fvp-v8r/fvp-armv8r/include/board_memorymap.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/arm64/fvp-v8r/fvp-armv8r/scripts/Make.defs b/boards/arm64/fvp-v8r/fvp-armv8r/scripts/Make.defs index effa105a44c52..5250046eb7402 100644 --- a/boards/arm64/fvp-v8r/fvp-armv8r/scripts/Make.defs +++ b/boards/arm64/fvp-v8r/fvp-armv8r/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/fvp-v8r/fvp-armv8r/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/arm64/fvp-v8r/fvp-armv8r/scripts/dramboot.ld b/boards/arm64/fvp-v8r/fvp-armv8r/scripts/dramboot.ld index f65db05a23751..6437c6afeb5c4 100644 --- a/boards/arm64/fvp-v8r/fvp-armv8r/scripts/dramboot.ld +++ b/boards/arm64/fvp-v8r/fvp-armv8r/scripts/dramboot.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/fvp-v8r/fvp-armv8r/scripts/dramboot.ld * + * 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/arm64/fvp-v8r/fvp-armv8r/src/Makefile b/boards/arm64/fvp-v8r/fvp-armv8r/src/Makefile index 376cec7da2e4c..5548900d9f0f7 100644 --- a/boards/arm64/fvp-v8r/fvp-armv8r/src/Makefile +++ b/boards/arm64/fvp-v8r/fvp-armv8r/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/fvp-v8r/fvp-armv8r/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/arm64/fvp-v8r/fvp-armv8r/src/fvp-armv8r.h b/boards/arm64/fvp-v8r/fvp-armv8r/src/fvp-armv8r.h index 6943109650aab..76bd1a041a6bc 100644 --- a/boards/arm64/fvp-v8r/fvp-armv8r/src/fvp-armv8r.h +++ b/boards/arm64/fvp-v8r/fvp-armv8r/src/fvp-armv8r.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/fvp-v8r/fvp-armv8r/src/fvp-armv8r.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/arm64/fvp-v8r/fvp-armv8r/src/fvp_appinit.c b/boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_appinit.c index 7a9be1b6c5b0d..7f7cf19f4aaf1 100644 --- a/boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_appinit.c +++ b/boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_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/arm64/fvp-v8r/fvp-armv8r/src/fvp_boardinit.c b/boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_boardinit.c index 470d7648dae04..4bc287e08d35b 100644 --- a/boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_boardinit.c +++ b/boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_boardinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_boardinit.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/arm64/fvp-v8r/fvp-armv8r/src/fvp_bringup.c b/boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_bringup.c index f4585b9308afd..f048a428552ba 100644 --- a/boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_bringup.c +++ b/boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/fvp-v8r/fvp-armv8r/src/fvp_bringup.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 From 2f33a3d92c92748d3548b84fba6c9295bd0f2a75 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 14:10:02 +0100 Subject: [PATCH 03/53] boards/arm64/imx8: 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/arm64/imx8/imx8qm-mek/include/board.h | 2 ++ boards/arm64/imx8/imx8qm-mek/include/board_memorymap.h | 2 ++ boards/arm64/imx8/imx8qm-mek/scripts/Make.defs | 2 ++ boards/arm64/imx8/imx8qm-mek/scripts/dramboot.ld | 2 ++ boards/arm64/imx8/imx8qm-mek/src/Makefile | 2 ++ boards/arm64/imx8/imx8qm-mek/src/imx8_appinit.c | 2 ++ boards/arm64/imx8/imx8qm-mek/src/imx8_boardinit.c | 2 ++ boards/arm64/imx8/imx8qm-mek/src/imx8_bringup.c | 2 ++ boards/arm64/imx8/imx8qm-mek/src/imx8qm-mek.h | 2 ++ 9 files changed, 18 insertions(+) diff --git a/boards/arm64/imx8/imx8qm-mek/include/board.h b/boards/arm64/imx8/imx8qm-mek/include/board.h index 1febff4812b68..1ad51553bc13a 100644 --- a/boards/arm64/imx8/imx8qm-mek/include/board.h +++ b/boards/arm64/imx8/imx8qm-mek/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx8/imx8qm-mek/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/arm64/imx8/imx8qm-mek/include/board_memorymap.h b/boards/arm64/imx8/imx8qm-mek/include/board_memorymap.h index e7e567ea7c2b3..328b9c3ab0aea 100644 --- a/boards/arm64/imx8/imx8qm-mek/include/board_memorymap.h +++ b/boards/arm64/imx8/imx8qm-mek/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx8/imx8qm-mek/include/board_memorymap.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/arm64/imx8/imx8qm-mek/scripts/Make.defs b/boards/arm64/imx8/imx8qm-mek/scripts/Make.defs index 1fad60565c324..ddfffcfeb1fee 100644 --- a/boards/arm64/imx8/imx8qm-mek/scripts/Make.defs +++ b/boards/arm64/imx8/imx8qm-mek/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/imx8/imx8qm-mek/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/arm64/imx8/imx8qm-mek/scripts/dramboot.ld b/boards/arm64/imx8/imx8qm-mek/scripts/dramboot.ld index 7eefd2495b98d..346cc6499c3d0 100644 --- a/boards/arm64/imx8/imx8qm-mek/scripts/dramboot.ld +++ b/boards/arm64/imx8/imx8qm-mek/scripts/dramboot.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx8/imx8qm-mek/scripts/dramboot.ld * + * 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/arm64/imx8/imx8qm-mek/src/Makefile b/boards/arm64/imx8/imx8qm-mek/src/Makefile index 3c1c8afa97a96..f9124aafc25ef 100644 --- a/boards/arm64/imx8/imx8qm-mek/src/Makefile +++ b/boards/arm64/imx8/imx8qm-mek/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/imx8/imx8qm-mek/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/arm64/imx8/imx8qm-mek/src/imx8_appinit.c b/boards/arm64/imx8/imx8qm-mek/src/imx8_appinit.c index d5a04d3937677..9d91bc538f6b8 100644 --- a/boards/arm64/imx8/imx8qm-mek/src/imx8_appinit.c +++ b/boards/arm64/imx8/imx8qm-mek/src/imx8_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx8/imx8qm-mek/src/imx8_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/arm64/imx8/imx8qm-mek/src/imx8_boardinit.c b/boards/arm64/imx8/imx8qm-mek/src/imx8_boardinit.c index 2fe7a59578a31..93dffa0191d39 100644 --- a/boards/arm64/imx8/imx8qm-mek/src/imx8_boardinit.c +++ b/boards/arm64/imx8/imx8qm-mek/src/imx8_boardinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx8/imx8qm-mek/src/imx8_boardinit.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/arm64/imx8/imx8qm-mek/src/imx8_bringup.c b/boards/arm64/imx8/imx8qm-mek/src/imx8_bringup.c index 7e2b690f7afd4..0db3ddf72ae5c 100644 --- a/boards/arm64/imx8/imx8qm-mek/src/imx8_bringup.c +++ b/boards/arm64/imx8/imx8qm-mek/src/imx8_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx8/imx8qm-mek/src/imx8_bringup.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/arm64/imx8/imx8qm-mek/src/imx8qm-mek.h b/boards/arm64/imx8/imx8qm-mek/src/imx8qm-mek.h index 6dba0232a0b7e..371f5831f3c76 100644 --- a/boards/arm64/imx8/imx8qm-mek/src/imx8qm-mek.h +++ b/boards/arm64/imx8/imx8qm-mek/src/imx8qm-mek.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx8/imx8qm-mek/src/imx8qm-mek.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 From f8cc9ab1459010daab61d1a5931b11d33a074528 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 14:12:23 +0100 Subject: [PATCH 04/53] boards/arm64/imx9: 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/arm64/imx9/imx93-evk/include/board.h | 2 ++ boards/arm64/imx9/imx93-evk/include/board_memorymap.h | 2 ++ boards/arm64/imx9/imx93-evk/scripts/Make.defs | 2 ++ boards/arm64/imx9/imx93-evk/scripts/dramboot.ld | 2 ++ boards/arm64/imx9/imx93-evk/scripts/ocramboot.ld | 2 ++ boards/arm64/imx9/imx93-evk/src/Makefile | 2 ++ boards/arm64/imx9/imx93-evk/src/imx93-evk.h | 2 ++ boards/arm64/imx9/imx93-evk/src/imx9_appinit.c | 2 ++ boards/arm64/imx9/imx93-evk/src/imx9_boardinit.c | 2 ++ boards/arm64/imx9/imx93-evk/src/imx9_bringup.c | 2 ++ boards/arm64/imx9/imx93-evk/src/imx9_i2c.c | 2 ++ boards/arm64/imx9/imx93-evk/src/imx9_pwm.c | 2 ++ boards/arm64/imx9/imx93-evk/src/imx9_spi.c | 2 ++ boards/arm64/imx9/imx93-evk/src/imx9_usdhc.c | 2 ++ 14 files changed, 28 insertions(+) diff --git a/boards/arm64/imx9/imx93-evk/include/board.h b/boards/arm64/imx9/imx93-evk/include/board.h index d1f53ce920bc2..20b165b2c8d53 100644 --- a/boards/arm64/imx9/imx93-evk/include/board.h +++ b/boards/arm64/imx9/imx93-evk/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/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/arm64/imx9/imx93-evk/include/board_memorymap.h b/boards/arm64/imx9/imx93-evk/include/board_memorymap.h index 07649afbc5df5..e1b1601a12a74 100644 --- a/boards/arm64/imx9/imx93-evk/include/board_memorymap.h +++ b/boards/arm64/imx9/imx93-evk/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/include/board_memorymap.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/arm64/imx9/imx93-evk/scripts/Make.defs b/boards/arm64/imx9/imx93-evk/scripts/Make.defs index 670686a3eb831..a193b61bab924 100644 --- a/boards/arm64/imx9/imx93-evk/scripts/Make.defs +++ b/boards/arm64/imx9/imx93-evk/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/imx9/imx93-evk/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/arm64/imx9/imx93-evk/scripts/dramboot.ld b/boards/arm64/imx9/imx93-evk/scripts/dramboot.ld index f437d8d13745a..a4da84b0deb59 100644 --- a/boards/arm64/imx9/imx93-evk/scripts/dramboot.ld +++ b/boards/arm64/imx9/imx93-evk/scripts/dramboot.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/scripts/dramboot.ld * + * 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/arm64/imx9/imx93-evk/scripts/ocramboot.ld b/boards/arm64/imx9/imx93-evk/scripts/ocramboot.ld index f87d22f8cd0cc..245619ee6b44f 100644 --- a/boards/arm64/imx9/imx93-evk/scripts/ocramboot.ld +++ b/boards/arm64/imx9/imx93-evk/scripts/ocramboot.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/scripts/ocramboot.ld * + * 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/arm64/imx9/imx93-evk/src/Makefile b/boards/arm64/imx9/imx93-evk/src/Makefile index 4a6efc427d0a0..84c12c8f698f8 100644 --- a/boards/arm64/imx9/imx93-evk/src/Makefile +++ b/boards/arm64/imx9/imx93-evk/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/imx9/imx93-evk/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/arm64/imx9/imx93-evk/src/imx93-evk.h b/boards/arm64/imx9/imx93-evk/src/imx93-evk.h index f8125289f4571..d0584c113d52e 100644 --- a/boards/arm64/imx9/imx93-evk/src/imx93-evk.h +++ b/boards/arm64/imx9/imx93-evk/src/imx93-evk.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/src/imx93-evk.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/arm64/imx9/imx93-evk/src/imx9_appinit.c b/boards/arm64/imx9/imx93-evk/src/imx9_appinit.c index 289395145ce57..39d4132d3c8c0 100644 --- a/boards/arm64/imx9/imx93-evk/src/imx9_appinit.c +++ b/boards/arm64/imx9/imx93-evk/src/imx9_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/src/imx9_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/arm64/imx9/imx93-evk/src/imx9_boardinit.c b/boards/arm64/imx9/imx93-evk/src/imx9_boardinit.c index 876b9014de6f0..3bf91acfb7826 100644 --- a/boards/arm64/imx9/imx93-evk/src/imx9_boardinit.c +++ b/boards/arm64/imx9/imx93-evk/src/imx9_boardinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/src/imx9_boardinit.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/arm64/imx9/imx93-evk/src/imx9_bringup.c b/boards/arm64/imx9/imx93-evk/src/imx9_bringup.c index 57d2887c98cab..a4c28c5bc8adb 100644 --- a/boards/arm64/imx9/imx93-evk/src/imx9_bringup.c +++ b/boards/arm64/imx9/imx93-evk/src/imx9_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/src/imx9_bringup.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/arm64/imx9/imx93-evk/src/imx9_i2c.c b/boards/arm64/imx9/imx93-evk/src/imx9_i2c.c index 8b687e9a0c281..d86c3ba835119 100644 --- a/boards/arm64/imx9/imx93-evk/src/imx9_i2c.c +++ b/boards/arm64/imx9/imx93-evk/src/imx9_i2c.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/src/imx9_i2c.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/arm64/imx9/imx93-evk/src/imx9_pwm.c b/boards/arm64/imx9/imx93-evk/src/imx9_pwm.c index 494331617ad81..fa25ad8cf55bf 100644 --- a/boards/arm64/imx9/imx93-evk/src/imx9_pwm.c +++ b/boards/arm64/imx9/imx93-evk/src/imx9_pwm.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/src/imx9_pwm.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/arm64/imx9/imx93-evk/src/imx9_spi.c b/boards/arm64/imx9/imx93-evk/src/imx9_spi.c index ffa9fd118f13a..6ff3434cbfbf7 100644 --- a/boards/arm64/imx9/imx93-evk/src/imx9_spi.c +++ b/boards/arm64/imx9/imx93-evk/src/imx9_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/src/imx9_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 diff --git a/boards/arm64/imx9/imx93-evk/src/imx9_usdhc.c b/boards/arm64/imx9/imx93-evk/src/imx9_usdhc.c index 54116fa795d54..2a9e3a87213cc 100644 --- a/boards/arm64/imx9/imx93-evk/src/imx9_usdhc.c +++ b/boards/arm64/imx9/imx93-evk/src/imx9_usdhc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/src/imx9_usdhc.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 From e2130adee48348bbefa41c08f3c25b1156d6097b Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 14:14:40 +0100 Subject: [PATCH 05/53] boards/arm64/qemu: 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/arm64/qemu/qemu-armv8a/CMakeLists.txt | 2 ++ boards/arm64/qemu/qemu-armv8a/include/board.h | 2 ++ boards/arm64/qemu/qemu-armv8a/include/board_memorymap.h | 2 ++ boards/arm64/qemu/qemu-armv8a/scripts/Make.defs | 2 ++ boards/arm64/qemu/qemu-armv8a/scripts/dramboot.ld | 2 ++ boards/arm64/qemu/qemu-armv8a/scripts/gnu-elf.ld | 2 ++ boards/arm64/qemu/qemu-armv8a/scripts/ld-kernel.script | 2 ++ boards/arm64/qemu/qemu-armv8a/src/CMakeLists.txt | 2 ++ boards/arm64/qemu/qemu-armv8a/src/Makefile | 2 ++ boards/arm64/qemu/qemu-armv8a/src/qemu-armv8a.h | 2 ++ boards/arm64/qemu/qemu-armv8a/src/qemu_appinit.c | 2 ++ boards/arm64/qemu/qemu-armv8a/src/qemu_boardinit.c | 2 ++ boards/arm64/qemu/qemu-armv8a/src/qemu_bringup.c | 2 ++ boards/arm64/qemu/qemu-armv8a/src/qemu_power.c | 2 ++ 14 files changed, 28 insertions(+) diff --git a/boards/arm64/qemu/qemu-armv8a/CMakeLists.txt b/boards/arm64/qemu/qemu-armv8a/CMakeLists.txt index a35ee63f43a41..85f1e2fac3ff0 100644 --- a/boards/arm64/qemu/qemu-armv8a/CMakeLists.txt +++ b/boards/arm64/qemu/qemu-armv8a/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/arm64/qemu/qemu-armv8a/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/arm64/qemu/qemu-armv8a/include/board.h b/boards/arm64/qemu/qemu-armv8a/include/board.h index 0e20db048714f..fdae9b0cd2443 100644 --- a/boards/arm64/qemu/qemu-armv8a/include/board.h +++ b/boards/arm64/qemu/qemu-armv8a/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/qemu/qemu-armv8a/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/arm64/qemu/qemu-armv8a/include/board_memorymap.h b/boards/arm64/qemu/qemu-armv8a/include/board_memorymap.h index 87671d5ddb1f6..a15bc38512665 100644 --- a/boards/arm64/qemu/qemu-armv8a/include/board_memorymap.h +++ b/boards/arm64/qemu/qemu-armv8a/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/qemu/qemu-armv8a/include/board_memorymap.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/arm64/qemu/qemu-armv8a/scripts/Make.defs b/boards/arm64/qemu/qemu-armv8a/scripts/Make.defs index dff2e06434360..b5a50feb29fdf 100644 --- a/boards/arm64/qemu/qemu-armv8a/scripts/Make.defs +++ b/boards/arm64/qemu/qemu-armv8a/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/qemu/qemu-armv8a/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/arm64/qemu/qemu-armv8a/scripts/dramboot.ld b/boards/arm64/qemu/qemu-armv8a/scripts/dramboot.ld index effd3a8236e47..361d8125b7292 100644 --- a/boards/arm64/qemu/qemu-armv8a/scripts/dramboot.ld +++ b/boards/arm64/qemu/qemu-armv8a/scripts/dramboot.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/qemu/qemu-armv8a/scripts/dramboot.ld * + * 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/arm64/qemu/qemu-armv8a/scripts/gnu-elf.ld b/boards/arm64/qemu/qemu-armv8a/scripts/gnu-elf.ld index 7a42b64451abd..679f5fe5b895d 100644 --- a/boards/arm64/qemu/qemu-armv8a/scripts/gnu-elf.ld +++ b/boards/arm64/qemu/qemu-armv8a/scripts/gnu-elf.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/qemu/qemu-armv8a/scripts/gnu-elf.ld * + * 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/arm64/qemu/qemu-armv8a/scripts/ld-kernel.script b/boards/arm64/qemu/qemu-armv8a/scripts/ld-kernel.script index e6c951f3f63cb..ec97d1d84a78f 100644 --- a/boards/arm64/qemu/qemu-armv8a/scripts/ld-kernel.script +++ b/boards/arm64/qemu/qemu-armv8a/scripts/ld-kernel.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/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/arm64/qemu/qemu-armv8a/src/CMakeLists.txt b/boards/arm64/qemu/qemu-armv8a/src/CMakeLists.txt index 30fc3ba38a0ae..385e0ed5f2d6d 100644 --- a/boards/arm64/qemu/qemu-armv8a/src/CMakeLists.txt +++ b/boards/arm64/qemu/qemu-armv8a/src/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/arm64/qemu/qemu-armv8a/src/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/arm64/qemu/qemu-armv8a/src/Makefile b/boards/arm64/qemu/qemu-armv8a/src/Makefile index b594a278bc4b4..b7ab9588723c9 100644 --- a/boards/arm64/qemu/qemu-armv8a/src/Makefile +++ b/boards/arm64/qemu/qemu-armv8a/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/qemu/qemu-armv8a/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/arm64/qemu/qemu-armv8a/src/qemu-armv8a.h b/boards/arm64/qemu/qemu-armv8a/src/qemu-armv8a.h index ce8c175630b58..2f3026107e58c 100644 --- a/boards/arm64/qemu/qemu-armv8a/src/qemu-armv8a.h +++ b/boards/arm64/qemu/qemu-armv8a/src/qemu-armv8a.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/qemu/qemu-armv8a/src/qemu-armv8a.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/arm64/qemu/qemu-armv8a/src/qemu_appinit.c b/boards/arm64/qemu/qemu-armv8a/src/qemu_appinit.c index 116681d816875..72507c91b5b6c 100644 --- a/boards/arm64/qemu/qemu-armv8a/src/qemu_appinit.c +++ b/boards/arm64/qemu/qemu-armv8a/src/qemu_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/qemu/qemu-armv8a/src/qemu_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/arm64/qemu/qemu-armv8a/src/qemu_boardinit.c b/boards/arm64/qemu/qemu-armv8a/src/qemu_boardinit.c index 0a00a1d1a31a3..c2cfdc14b0e01 100644 --- a/boards/arm64/qemu/qemu-armv8a/src/qemu_boardinit.c +++ b/boards/arm64/qemu/qemu-armv8a/src/qemu_boardinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/qemu/qemu-armv8a/src/qemu_boardinit.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/arm64/qemu/qemu-armv8a/src/qemu_bringup.c b/boards/arm64/qemu/qemu-armv8a/src/qemu_bringup.c index 799551b545e89..9bb4cd5f87a2d 100644 --- a/boards/arm64/qemu/qemu-armv8a/src/qemu_bringup.c +++ b/boards/arm64/qemu/qemu-armv8a/src/qemu_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/qemu/qemu-armv8a/src/qemu_bringup.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/arm64/qemu/qemu-armv8a/src/qemu_power.c b/boards/arm64/qemu/qemu-armv8a/src/qemu_power.c index 1fa90fb131653..73a709175cc52 100644 --- a/boards/arm64/qemu/qemu-armv8a/src/qemu_power.c +++ b/boards/arm64/qemu/qemu-armv8a/src/qemu_power.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/qemu/qemu-armv8a/src/qemu_power.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 From 567ba1dfd165fb568057685bd3c8b36bab4d6605 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 14:17:29 +0100 Subject: [PATCH 06/53] boards/arm64/rk3399: 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/arm64/rk3399/nanopi_m4/include/board.h | 2 ++ boards/arm64/rk3399/nanopi_m4/scripts/Make.defs | 2 ++ boards/arm64/rk3399/nanopi_m4/scripts/dramboot.ld | 2 ++ boards/arm64/rk3399/nanopi_m4/src/Makefile | 2 ++ boards/arm64/rk3399/nanopi_m4/src/etc/init.d/rc.sysinit | 2 ++ boards/arm64/rk3399/nanopi_m4/src/etc/init.d/rcS | 2 ++ boards/arm64/rk3399/nanopi_m4/src/nanopi_m4.h | 2 ++ boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_appinit.c | 2 ++ boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_boardinit.c | 2 ++ boards/arm64/rk3399/pinephonepro/include/board.h | 2 ++ boards/arm64/rk3399/pinephonepro/include/board_memorymap.h | 2 ++ boards/arm64/rk3399/pinephonepro/scripts/Make.defs | 2 ++ boards/arm64/rk3399/pinephonepro/scripts/dramboot.ld | 2 ++ boards/arm64/rk3399/pinephonepro/src/Makefile | 2 ++ boards/arm64/rk3399/pinephonepro/src/pinephonepro.h | 2 ++ boards/arm64/rk3399/pinephonepro/src/pinephonepro_appinit.c | 2 ++ boards/arm64/rk3399/pinephonepro/src/pinephonepro_boardinit.c | 2 ++ boards/arm64/rk3399/pinephonepro/src/pinephonepro_bringup.c | 2 ++ boards/arm64/rk3399/pinephonepro/src/pinephonepro_reset.c | 2 ++ 19 files changed, 38 insertions(+) diff --git a/boards/arm64/rk3399/nanopi_m4/include/board.h b/boards/arm64/rk3399/nanopi_m4/include/board.h index 3e843ce66feef..d3e8c9a20227a 100644 --- a/boards/arm64/rk3399/nanopi_m4/include/board.h +++ b/boards/arm64/rk3399/nanopi_m4/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/rk3399/nanopi_m4/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/arm64/rk3399/nanopi_m4/scripts/Make.defs b/boards/arm64/rk3399/nanopi_m4/scripts/Make.defs index b0e30151488de..7df3d5d7681d4 100644 --- a/boards/arm64/rk3399/nanopi_m4/scripts/Make.defs +++ b/boards/arm64/rk3399/nanopi_m4/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/rk3399/nanopi_m4/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/arm64/rk3399/nanopi_m4/scripts/dramboot.ld b/boards/arm64/rk3399/nanopi_m4/scripts/dramboot.ld index 671e27653ca71..29ba6ca36278e 100644 --- a/boards/arm64/rk3399/nanopi_m4/scripts/dramboot.ld +++ b/boards/arm64/rk3399/nanopi_m4/scripts/dramboot.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/rk3399/nanopi_m4/scripts/dramboot.ld * + * 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/arm64/rk3399/nanopi_m4/src/Makefile b/boards/arm64/rk3399/nanopi_m4/src/Makefile index e64f06871d03b..44c09add7eff6 100644 --- a/boards/arm64/rk3399/nanopi_m4/src/Makefile +++ b/boards/arm64/rk3399/nanopi_m4/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/rk3399/nanopi_m4/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/arm64/rk3399/nanopi_m4/src/etc/init.d/rc.sysinit b/boards/arm64/rk3399/nanopi_m4/src/etc/init.d/rc.sysinit index b7da80a42e6b4..19dbef71f005c 100644 --- a/boards/arm64/rk3399/nanopi_m4/src/etc/init.d/rc.sysinit +++ b/boards/arm64/rk3399/nanopi_m4/src/etc/init.d/rc.sysinit @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/rk3399/nanopi_m4/src/etc/init.d/rc.sysinit * + * 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/arm64/rk3399/nanopi_m4/src/etc/init.d/rcS b/boards/arm64/rk3399/nanopi_m4/src/etc/init.d/rcS index 7a11a837d21f3..ccec6292b5b19 100644 --- a/boards/arm64/rk3399/nanopi_m4/src/etc/init.d/rcS +++ b/boards/arm64/rk3399/nanopi_m4/src/etc/init.d/rcS @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/rk3399/nanopi_m4/src/etc/init.d/rcS * + * 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/arm64/rk3399/nanopi_m4/src/nanopi_m4.h b/boards/arm64/rk3399/nanopi_m4/src/nanopi_m4.h index cb21bb154ba44..3a4a21f7409c4 100644 --- a/boards/arm64/rk3399/nanopi_m4/src/nanopi_m4.h +++ b/boards/arm64/rk3399/nanopi_m4/src/nanopi_m4.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/rk3399/nanopi_m4/src/nanopi_m4.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/arm64/rk3399/nanopi_m4/src/nanopi_m4_appinit.c b/boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_appinit.c index 81b035ab2d1d8..03ae07d5a1df6 100644 --- a/boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_appinit.c +++ b/boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_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/arm64/rk3399/nanopi_m4/src/nanopi_m4_boardinit.c b/boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_boardinit.c index c735c0d5fd567..ea2f99ca8b2a6 100644 --- a/boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_boardinit.c +++ b/boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_boardinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/rk3399/nanopi_m4/src/nanopi_m4_boardinit.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/arm64/rk3399/pinephonepro/include/board.h b/boards/arm64/rk3399/pinephonepro/include/board.h index 204c5bc2ec3a5..364d7f7dd7b61 100644 --- a/boards/arm64/rk3399/pinephonepro/include/board.h +++ b/boards/arm64/rk3399/pinephonepro/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/rk3399/pinephonepro/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/arm64/rk3399/pinephonepro/include/board_memorymap.h b/boards/arm64/rk3399/pinephonepro/include/board_memorymap.h index 7640a97a9a192..d4e7ca59064c4 100644 --- a/boards/arm64/rk3399/pinephonepro/include/board_memorymap.h +++ b/boards/arm64/rk3399/pinephonepro/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/rk3399/pinephonepro/include/board_memorymap.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/arm64/rk3399/pinephonepro/scripts/Make.defs b/boards/arm64/rk3399/pinephonepro/scripts/Make.defs index 33517536c23e5..8a940f88cca24 100644 --- a/boards/arm64/rk3399/pinephonepro/scripts/Make.defs +++ b/boards/arm64/rk3399/pinephonepro/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/rk3399/pinephonepro/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/arm64/rk3399/pinephonepro/scripts/dramboot.ld b/boards/arm64/rk3399/pinephonepro/scripts/dramboot.ld index b9d118b60cfac..b3dc95a855126 100644 --- a/boards/arm64/rk3399/pinephonepro/scripts/dramboot.ld +++ b/boards/arm64/rk3399/pinephonepro/scripts/dramboot.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/rk3399/pinephone/scripts/dramboot.ld * + * 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/arm64/rk3399/pinephonepro/src/Makefile b/boards/arm64/rk3399/pinephonepro/src/Makefile index c8d544bbc43b6..ad8f030577a9c 100644 --- a/boards/arm64/rk3399/pinephonepro/src/Makefile +++ b/boards/arm64/rk3399/pinephonepro/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/rk3399/pinephonepro/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/arm64/rk3399/pinephonepro/src/pinephonepro.h b/boards/arm64/rk3399/pinephonepro/src/pinephonepro.h index 5f50e71b8a384..5b476a1121a6b 100644 --- a/boards/arm64/rk3399/pinephonepro/src/pinephonepro.h +++ b/boards/arm64/rk3399/pinephonepro/src/pinephonepro.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/rk3399/pinephonepro/src/pinephonepro.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/arm64/rk3399/pinephonepro/src/pinephonepro_appinit.c b/boards/arm64/rk3399/pinephonepro/src/pinephonepro_appinit.c index ea732f9ca6aba..9208f94f71d27 100644 --- a/boards/arm64/rk3399/pinephonepro/src/pinephonepro_appinit.c +++ b/boards/arm64/rk3399/pinephonepro/src/pinephonepro_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/rk3399/pinephonepro/src/pinephonepro_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/arm64/rk3399/pinephonepro/src/pinephonepro_boardinit.c b/boards/arm64/rk3399/pinephonepro/src/pinephonepro_boardinit.c index a72ca8ebf6549..15011b194e0c9 100644 --- a/boards/arm64/rk3399/pinephonepro/src/pinephonepro_boardinit.c +++ b/boards/arm64/rk3399/pinephonepro/src/pinephonepro_boardinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/rk3399/pinephonepro/src/pinephonepro_boardinit.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/arm64/rk3399/pinephonepro/src/pinephonepro_bringup.c b/boards/arm64/rk3399/pinephonepro/src/pinephonepro_bringup.c index b6e1d85a60d0f..827b49d9bf34c 100644 --- a/boards/arm64/rk3399/pinephonepro/src/pinephonepro_bringup.c +++ b/boards/arm64/rk3399/pinephonepro/src/pinephonepro_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/rk3399/pinephonepro/src/pinephonepro_bringup.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/arm64/rk3399/pinephonepro/src/pinephonepro_reset.c b/boards/arm64/rk3399/pinephonepro/src/pinephonepro_reset.c index 0e44a2eb643d5..dbb512448cabd 100644 --- a/boards/arm64/rk3399/pinephonepro/src/pinephonepro_reset.c +++ b/boards/arm64/rk3399/pinephonepro/src/pinephonepro_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/rk3399/pinephonepro/src/pinephonepro_reset.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 From 65bd9dd154eb09322fa4e97b3d488e786bb6af4f Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 14:18:15 +0100 Subject: [PATCH 07/53] boards/arm64/vdk: 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/arm64/vdk/vdk-armv8r/scripts/dramboot.ld | 2 ++ 1 file changed, 2 insertions(+) diff --git a/boards/arm64/vdk/vdk-armv8r/scripts/dramboot.ld b/boards/arm64/vdk/vdk-armv8r/scripts/dramboot.ld index 97af33072bf34..b7bb26ae722f3 100644 --- a/boards/arm64/vdk/vdk-armv8r/scripts/dramboot.ld +++ b/boards/arm64/vdk/vdk-armv8r/scripts/dramboot.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/vdk/vdk-armv8r/scripts/dramboot.ld * + * 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 From fc34e5b9577ab461422baa6c3e83abd350c5add9 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 14:20:07 +0100 Subject: [PATCH 08/53] boards/arm64/zynq-mpsoc: 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/arm64/zynq-mpsoc/zcu111/include/board.h | 2 ++ boards/arm64/zynq-mpsoc/zcu111/scripts/Make.defs | 2 ++ boards/arm64/zynq-mpsoc/zcu111/scripts/dramboot.ld | 2 ++ boards/arm64/zynq-mpsoc/zcu111/src/Makefile | 2 ++ boards/arm64/zynq-mpsoc/zcu111/src/etc/init.d/rc.sysinit | 2 ++ boards/arm64/zynq-mpsoc/zcu111/src/etc/init.d/rcS | 2 ++ boards/arm64/zynq-mpsoc/zcu111/src/zcu111.h | 2 ++ boards/arm64/zynq-mpsoc/zcu111/src/zcu111_appinit.c | 2 ++ boards/arm64/zynq-mpsoc/zcu111/src/zcu111_autoleds.c | 2 ++ boards/arm64/zynq-mpsoc/zcu111/src/zcu111_boardinit.c | 2 ++ boards/arm64/zynq-mpsoc/zcu111/src/zcu111_reset.c | 2 ++ 11 files changed, 22 insertions(+) diff --git a/boards/arm64/zynq-mpsoc/zcu111/include/board.h b/boards/arm64/zynq-mpsoc/zcu111/include/board.h index 4932c5cef768b..701f14a95188f 100644 --- a/boards/arm64/zynq-mpsoc/zcu111/include/board.h +++ b/boards/arm64/zynq-mpsoc/zcu111/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/zynq-mpsoc/zcu111/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/arm64/zynq-mpsoc/zcu111/scripts/Make.defs b/boards/arm64/zynq-mpsoc/zcu111/scripts/Make.defs index 8cb8139eb2ac7..2fc4f69da2de4 100644 --- a/boards/arm64/zynq-mpsoc/zcu111/scripts/Make.defs +++ b/boards/arm64/zynq-mpsoc/zcu111/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/zynq-mpsoc/zcu111/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/arm64/zynq-mpsoc/zcu111/scripts/dramboot.ld b/boards/arm64/zynq-mpsoc/zcu111/scripts/dramboot.ld index 618a2f6dba9b9..fd6d676d6e70f 100644 --- a/boards/arm64/zynq-mpsoc/zcu111/scripts/dramboot.ld +++ b/boards/arm64/zynq-mpsoc/zcu111/scripts/dramboot.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/zynq-mpsoc/zcu111/scripts/dramboot.ld * + * 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/arm64/zynq-mpsoc/zcu111/src/Makefile b/boards/arm64/zynq-mpsoc/zcu111/src/Makefile index 400da33ae6867..f6217519a05bc 100644 --- a/boards/arm64/zynq-mpsoc/zcu111/src/Makefile +++ b/boards/arm64/zynq-mpsoc/zcu111/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/zynq-mpsoc/zcu111/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/arm64/zynq-mpsoc/zcu111/src/etc/init.d/rc.sysinit b/boards/arm64/zynq-mpsoc/zcu111/src/etc/init.d/rc.sysinit index e5f967c6fa13f..848368f98e87f 100644 --- a/boards/arm64/zynq-mpsoc/zcu111/src/etc/init.d/rc.sysinit +++ b/boards/arm64/zynq-mpsoc/zcu111/src/etc/init.d/rc.sysinit @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/zynq-mpsoc/zcu111/src/etc/init.d/rc.sysinit * + * 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/arm64/zynq-mpsoc/zcu111/src/etc/init.d/rcS b/boards/arm64/zynq-mpsoc/zcu111/src/etc/init.d/rcS index d57c92d5ed8d8..3a33c9aeac9e6 100644 --- a/boards/arm64/zynq-mpsoc/zcu111/src/etc/init.d/rcS +++ b/boards/arm64/zynq-mpsoc/zcu111/src/etc/init.d/rcS @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/zynq-mpsoc/zcu111/src/etc/init.d/rcS * + * 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/arm64/zynq-mpsoc/zcu111/src/zcu111.h b/boards/arm64/zynq-mpsoc/zcu111/src/zcu111.h index 57ff7b1e34135..b6167fbf018de 100644 --- a/boards/arm64/zynq-mpsoc/zcu111/src/zcu111.h +++ b/boards/arm64/zynq-mpsoc/zcu111/src/zcu111.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/zynq-mpsoc/zcu111/src/zcu111.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/arm64/zynq-mpsoc/zcu111/src/zcu111_appinit.c b/boards/arm64/zynq-mpsoc/zcu111/src/zcu111_appinit.c index 4a281ac10da0c..242e58ccf2cbe 100644 --- a/boards/arm64/zynq-mpsoc/zcu111/src/zcu111_appinit.c +++ b/boards/arm64/zynq-mpsoc/zcu111/src/zcu111_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/zynq-mpsoc/zcu111/src/zcu111_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/arm64/zynq-mpsoc/zcu111/src/zcu111_autoleds.c b/boards/arm64/zynq-mpsoc/zcu111/src/zcu111_autoleds.c index 404b317463b50..871fc5bcbab3a 100644 --- a/boards/arm64/zynq-mpsoc/zcu111/src/zcu111_autoleds.c +++ b/boards/arm64/zynq-mpsoc/zcu111/src/zcu111_autoleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/zynq-mpsoc/zcu111/src/zcu111_autoleds.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/arm64/zynq-mpsoc/zcu111/src/zcu111_boardinit.c b/boards/arm64/zynq-mpsoc/zcu111/src/zcu111_boardinit.c index 5caadf593018a..1f694cb1631ba 100644 --- a/boards/arm64/zynq-mpsoc/zcu111/src/zcu111_boardinit.c +++ b/boards/arm64/zynq-mpsoc/zcu111/src/zcu111_boardinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/zynq-mpsoc/zcu111/src/zcu111_boardinit.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/arm64/zynq-mpsoc/zcu111/src/zcu111_reset.c b/boards/arm64/zynq-mpsoc/zcu111/src/zcu111_reset.c index 251b59b67881b..03a174bc541d0 100644 --- a/boards/arm64/zynq-mpsoc/zcu111/src/zcu111_reset.c +++ b/boards/arm64/zynq-mpsoc/zcu111/src/zcu111_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/zynq-mpsoc/zcu111/src/zcu111_reset.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 From 35cc9c0438a25bd513d77b3f5516704657c862c6 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 14:28:34 +0100 Subject: [PATCH 09/53] boards/avr/at32uc3: 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/avr/at32uc3/avr32dev1/include/board.h | 2 ++ boards/avr/at32uc3/avr32dev1/scripts/Make.defs | 2 ++ boards/avr/at32uc3/avr32dev1/scripts/avr32dev1.ld | 2 ++ boards/avr/at32uc3/avr32dev1/src/Makefile | 2 ++ boards/avr/at32uc3/avr32dev1/src/avr32_appinit.c | 2 ++ boards/avr/at32uc3/avr32dev1/src/avr32_boot.c | 2 ++ boards/avr/at32uc3/avr32dev1/src/avr32_bringup.c | 2 ++ boards/avr/at32uc3/avr32dev1/src/avr32_buttons.c | 2 ++ boards/avr/at32uc3/avr32dev1/src/avr32_leds.c | 2 ++ boards/avr/at32uc3/avr32dev1/src/avr32dev1.h | 2 ++ boards/avr/at32uc3/mizar32a/include/board.h | 2 ++ boards/avr/at32uc3/mizar32a/scripts/Make.defs | 2 ++ boards/avr/at32uc3/mizar32a/scripts/mizar32a.ld | 2 ++ boards/avr/at32uc3/mizar32a/src/Makefile | 2 ++ boards/avr/at32uc3/mizar32a/src/avr32_appinit.c | 2 ++ boards/avr/at32uc3/mizar32a/src/avr32_boot.c | 2 ++ boards/avr/at32uc3/mizar32a/src/avr32_bringup.c | 2 ++ boards/avr/at32uc3/mizar32a/src/avr32_buttons.c | 2 ++ boards/avr/at32uc3/mizar32a/src/avr32_leds.c | 2 ++ boards/avr/at32uc3/mizar32a/src/mizar32a.h | 2 ++ 20 files changed, 40 insertions(+) diff --git a/boards/avr/at32uc3/avr32dev1/include/board.h b/boards/avr/at32uc3/avr32dev1/include/board.h index 947488cbaee2b..727753c41a8d4 100644 --- a/boards/avr/at32uc3/avr32dev1/include/board.h +++ b/boards/avr/at32uc3/avr32dev1/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at32uc3/avr32dev1/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/avr/at32uc3/avr32dev1/scripts/Make.defs b/boards/avr/at32uc3/avr32dev1/scripts/Make.defs index 272f56e325c87..07f92e5ea93a1 100644 --- a/boards/avr/at32uc3/avr32dev1/scripts/Make.defs +++ b/boards/avr/at32uc3/avr32dev1/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/avr/at32uc3/avr32dev1/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/avr/at32uc3/avr32dev1/scripts/avr32dev1.ld b/boards/avr/at32uc3/avr32dev1/scripts/avr32dev1.ld index bbf513faa2035..fa925f28503e5 100644 --- a/boards/avr/at32uc3/avr32dev1/scripts/avr32dev1.ld +++ b/boards/avr/at32uc3/avr32dev1/scripts/avr32dev1.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at32uc3/avr32dev1/scripts/avr32dev1.ld * + * 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/avr/at32uc3/avr32dev1/src/Makefile b/boards/avr/at32uc3/avr32dev1/src/Makefile index 898afb25e7ca1..d37964d7697a2 100644 --- a/boards/avr/at32uc3/avr32dev1/src/Makefile +++ b/boards/avr/at32uc3/avr32dev1/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/avr/at32uc3/avr32dev1/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/avr/at32uc3/avr32dev1/src/avr32_appinit.c b/boards/avr/at32uc3/avr32dev1/src/avr32_appinit.c index e12a504afc9e5..8c8592fd0e7f4 100644 --- a/boards/avr/at32uc3/avr32dev1/src/avr32_appinit.c +++ b/boards/avr/at32uc3/avr32dev1/src/avr32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at32uc3/avr32dev1/src/avr32_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/avr/at32uc3/avr32dev1/src/avr32_boot.c b/boards/avr/at32uc3/avr32dev1/src/avr32_boot.c index 5581373d3aa46..3dd38f2ed876a 100644 --- a/boards/avr/at32uc3/avr32dev1/src/avr32_boot.c +++ b/boards/avr/at32uc3/avr32dev1/src/avr32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at32uc3/avr32dev1/src/avr32_boot.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/avr/at32uc3/avr32dev1/src/avr32_bringup.c b/boards/avr/at32uc3/avr32dev1/src/avr32_bringup.c index b37dd6c70bf5e..fd9df4bfe244a 100644 --- a/boards/avr/at32uc3/avr32dev1/src/avr32_bringup.c +++ b/boards/avr/at32uc3/avr32dev1/src/avr32_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at32uc3/avr32dev1/src/avr32_bringup.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/avr/at32uc3/avr32dev1/src/avr32_buttons.c b/boards/avr/at32uc3/avr32dev1/src/avr32_buttons.c index 2f74ae2d555d2..7e4a6a0f175e7 100644 --- a/boards/avr/at32uc3/avr32dev1/src/avr32_buttons.c +++ b/boards/avr/at32uc3/avr32dev1/src/avr32_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at32uc3/avr32dev1/src/avr32_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/avr/at32uc3/avr32dev1/src/avr32_leds.c b/boards/avr/at32uc3/avr32dev1/src/avr32_leds.c index 9b2077605e277..d87d20b6a98aa 100644 --- a/boards/avr/at32uc3/avr32dev1/src/avr32_leds.c +++ b/boards/avr/at32uc3/avr32dev1/src/avr32_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at32uc3/avr32dev1/src/avr32_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/avr/at32uc3/avr32dev1/src/avr32dev1.h b/boards/avr/at32uc3/avr32dev1/src/avr32dev1.h index bbfe8b43030a5..6573c71eab448 100644 --- a/boards/avr/at32uc3/avr32dev1/src/avr32dev1.h +++ b/boards/avr/at32uc3/avr32dev1/src/avr32dev1.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at32uc3/avr32dev1/src/avr32dev1.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/avr/at32uc3/mizar32a/include/board.h b/boards/avr/at32uc3/mizar32a/include/board.h index 824e15131e732..8a9c27920b395 100644 --- a/boards/avr/at32uc3/mizar32a/include/board.h +++ b/boards/avr/at32uc3/mizar32a/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at32uc3/mizar32a/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/avr/at32uc3/mizar32a/scripts/Make.defs b/boards/avr/at32uc3/mizar32a/scripts/Make.defs index 47af28a66e497..137bf8fb92646 100644 --- a/boards/avr/at32uc3/mizar32a/scripts/Make.defs +++ b/boards/avr/at32uc3/mizar32a/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/avr/at32uc3/mizar32a/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/avr/at32uc3/mizar32a/scripts/mizar32a.ld b/boards/avr/at32uc3/mizar32a/scripts/mizar32a.ld index 000c66948b229..cc5c8b107adea 100644 --- a/boards/avr/at32uc3/mizar32a/scripts/mizar32a.ld +++ b/boards/avr/at32uc3/mizar32a/scripts/mizar32a.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at32uc3/mizar32a/scripts/mizar32a.ld * + * 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/avr/at32uc3/mizar32a/src/Makefile b/boards/avr/at32uc3/mizar32a/src/Makefile index bd8cca74d0319..f714dd728cd16 100644 --- a/boards/avr/at32uc3/mizar32a/src/Makefile +++ b/boards/avr/at32uc3/mizar32a/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/avr/at32uc3/mizar32a/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/avr/at32uc3/mizar32a/src/avr32_appinit.c b/boards/avr/at32uc3/mizar32a/src/avr32_appinit.c index 53f30adcb7279..e2d62ffbc473b 100644 --- a/boards/avr/at32uc3/mizar32a/src/avr32_appinit.c +++ b/boards/avr/at32uc3/mizar32a/src/avr32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at32uc3/mizar32a/src/avr32_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/avr/at32uc3/mizar32a/src/avr32_boot.c b/boards/avr/at32uc3/mizar32a/src/avr32_boot.c index 934fb54bc1837..96db4c2d25773 100644 --- a/boards/avr/at32uc3/mizar32a/src/avr32_boot.c +++ b/boards/avr/at32uc3/mizar32a/src/avr32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at32uc3/mizar32a/src/avr32_boot.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/avr/at32uc3/mizar32a/src/avr32_bringup.c b/boards/avr/at32uc3/mizar32a/src/avr32_bringup.c index 10534776d5859..f0b8ae09ccef3 100644 --- a/boards/avr/at32uc3/mizar32a/src/avr32_bringup.c +++ b/boards/avr/at32uc3/mizar32a/src/avr32_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at32uc3/mizar32a/src/avr32_bringup.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/avr/at32uc3/mizar32a/src/avr32_buttons.c b/boards/avr/at32uc3/mizar32a/src/avr32_buttons.c index a16a5bd68a852..b04c5f3ad36a8 100644 --- a/boards/avr/at32uc3/mizar32a/src/avr32_buttons.c +++ b/boards/avr/at32uc3/mizar32a/src/avr32_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at32uc3/mizar32a/src/avr32_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/avr/at32uc3/mizar32a/src/avr32_leds.c b/boards/avr/at32uc3/mizar32a/src/avr32_leds.c index a8d15cf0ab556..e5fae605d9936 100644 --- a/boards/avr/at32uc3/mizar32a/src/avr32_leds.c +++ b/boards/avr/at32uc3/mizar32a/src/avr32_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at32uc3/mizar32a/src/avr32_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/avr/at32uc3/mizar32a/src/mizar32a.h b/boards/avr/at32uc3/mizar32a/src/mizar32a.h index e4d0febc3f32e..042c8ae985511 100644 --- a/boards/avr/at32uc3/mizar32a/src/mizar32a.h +++ b/boards/avr/at32uc3/mizar32a/src/mizar32a.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at32uc3/mizar32a/src/mizar32a.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 From 6e49d2dac9070ecb7b1bd0e462ad1776ab4a6a11 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 14:30:48 +0100 Subject: [PATCH 10/53] boards/avr/at90usb: 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/avr/at90usb/micropendous3/include/board.h | 2 ++ boards/avr/at90usb/micropendous3/scripts/Make.defs | 2 ++ boards/avr/at90usb/micropendous3/scripts/micropendous3.ld | 2 ++ boards/avr/at90usb/micropendous3/src/Makefile | 2 ++ boards/avr/at90usb/micropendous3/src/at90usb_boot.c | 2 ++ boards/avr/at90usb/micropendous3/src/micropendous3.h | 2 ++ boards/avr/at90usb/teensy-2.0/include/board.h | 2 ++ boards/avr/at90usb/teensy-2.0/scripts/Make.defs | 2 ++ boards/avr/at90usb/teensy-2.0/scripts/flash.ld | 2 ++ boards/avr/at90usb/teensy-2.0/src/Makefile | 2 ++ boards/avr/at90usb/teensy-2.0/src/at90usb_appinit.c | 2 ++ boards/avr/at90usb/teensy-2.0/src/at90usb_boot.c | 2 ++ boards/avr/at90usb/teensy-2.0/src/at90usb_leds.c | 2 ++ boards/avr/at90usb/teensy-2.0/src/at90usb_spi.c | 2 ++ boards/avr/at90usb/teensy-2.0/src/at90usb_usbmsc.c | 2 ++ boards/avr/at90usb/teensy-2.0/src/teensy-20.h | 2 ++ 16 files changed, 32 insertions(+) diff --git a/boards/avr/at90usb/micropendous3/include/board.h b/boards/avr/at90usb/micropendous3/include/board.h index 12480c355c8ac..8d85c4d696c51 100644 --- a/boards/avr/at90usb/micropendous3/include/board.h +++ b/boards/avr/at90usb/micropendous3/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at90usb/micropendous3/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/avr/at90usb/micropendous3/scripts/Make.defs b/boards/avr/at90usb/micropendous3/scripts/Make.defs index 42575dfbdf829..d23c3498b6bc9 100644 --- a/boards/avr/at90usb/micropendous3/scripts/Make.defs +++ b/boards/avr/at90usb/micropendous3/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/avr/at90usb/micropendous3/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/avr/at90usb/micropendous3/scripts/micropendous3.ld b/boards/avr/at90usb/micropendous3/scripts/micropendous3.ld index fdf28cc06db3f..b7e4a6778a2ea 100644 --- a/boards/avr/at90usb/micropendous3/scripts/micropendous3.ld +++ b/boards/avr/at90usb/micropendous3/scripts/micropendous3.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at90usb/micropendous3/scripts/micropendous3.ld * + * 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/avr/at90usb/micropendous3/src/Makefile b/boards/avr/at90usb/micropendous3/src/Makefile index 6604cb6540654..752fbf1146875 100644 --- a/boards/avr/at90usb/micropendous3/src/Makefile +++ b/boards/avr/at90usb/micropendous3/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/avr/at90usb/micropendous3/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/avr/at90usb/micropendous3/src/at90usb_boot.c b/boards/avr/at90usb/micropendous3/src/at90usb_boot.c index 2ae3c38a03df8..6ffd0a6f85d21 100644 --- a/boards/avr/at90usb/micropendous3/src/at90usb_boot.c +++ b/boards/avr/at90usb/micropendous3/src/at90usb_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at90usb/micropendous3/src/at90usb_boot.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/avr/at90usb/micropendous3/src/micropendous3.h b/boards/avr/at90usb/micropendous3/src/micropendous3.h index 92ee71e80d320..bc413036c351f 100644 --- a/boards/avr/at90usb/micropendous3/src/micropendous3.h +++ b/boards/avr/at90usb/micropendous3/src/micropendous3.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at90usb/micropendous3/src/micropendous3.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/avr/at90usb/teensy-2.0/include/board.h b/boards/avr/at90usb/teensy-2.0/include/board.h index 054ab34c079eb..c1cfefc68b3b8 100644 --- a/boards/avr/at90usb/teensy-2.0/include/board.h +++ b/boards/avr/at90usb/teensy-2.0/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at90usb/teensy-2.0/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/avr/at90usb/teensy-2.0/scripts/Make.defs b/boards/avr/at90usb/teensy-2.0/scripts/Make.defs index c63cbe8dc99e9..e993ecdb11704 100644 --- a/boards/avr/at90usb/teensy-2.0/scripts/Make.defs +++ b/boards/avr/at90usb/teensy-2.0/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/avr/at90usb/teensy-2.0/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/avr/at90usb/teensy-2.0/scripts/flash.ld b/boards/avr/at90usb/teensy-2.0/scripts/flash.ld index a46e17a03e110..b32bf0b635f82 100644 --- a/boards/avr/at90usb/teensy-2.0/scripts/flash.ld +++ b/boards/avr/at90usb/teensy-2.0/scripts/flash.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at90usb/teensy-2.0/scripts/flash.ld * + * 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/avr/at90usb/teensy-2.0/src/Makefile b/boards/avr/at90usb/teensy-2.0/src/Makefile index 0ffda84858907..4955e097ac3a8 100644 --- a/boards/avr/at90usb/teensy-2.0/src/Makefile +++ b/boards/avr/at90usb/teensy-2.0/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/avr/at90usb/teensy-2.0/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/avr/at90usb/teensy-2.0/src/at90usb_appinit.c b/boards/avr/at90usb/teensy-2.0/src/at90usb_appinit.c index c3812f35aa457..5f9705159cde9 100644 --- a/boards/avr/at90usb/teensy-2.0/src/at90usb_appinit.c +++ b/boards/avr/at90usb/teensy-2.0/src/at90usb_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at90usb/teensy-2.0/src/at90usb_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/avr/at90usb/teensy-2.0/src/at90usb_boot.c b/boards/avr/at90usb/teensy-2.0/src/at90usb_boot.c index 6dd9e0b616bf5..49aa3a62aaf28 100644 --- a/boards/avr/at90usb/teensy-2.0/src/at90usb_boot.c +++ b/boards/avr/at90usb/teensy-2.0/src/at90usb_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at90usb/teensy-2.0/src/at90usb_boot.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/avr/at90usb/teensy-2.0/src/at90usb_leds.c b/boards/avr/at90usb/teensy-2.0/src/at90usb_leds.c index 5074cc6dc2669..61b4f5c72409d 100644 --- a/boards/avr/at90usb/teensy-2.0/src/at90usb_leds.c +++ b/boards/avr/at90usb/teensy-2.0/src/at90usb_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at90usb/teensy-2.0/src/at90usb_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/avr/at90usb/teensy-2.0/src/at90usb_spi.c b/boards/avr/at90usb/teensy-2.0/src/at90usb_spi.c index 151f8954b67c9..db0b34a04a20d 100644 --- a/boards/avr/at90usb/teensy-2.0/src/at90usb_spi.c +++ b/boards/avr/at90usb/teensy-2.0/src/at90usb_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at90usb/teensy-2.0/src/at90usb_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 diff --git a/boards/avr/at90usb/teensy-2.0/src/at90usb_usbmsc.c b/boards/avr/at90usb/teensy-2.0/src/at90usb_usbmsc.c index 6061690e93f0f..0fcd615feb9a9 100644 --- a/boards/avr/at90usb/teensy-2.0/src/at90usb_usbmsc.c +++ b/boards/avr/at90usb/teensy-2.0/src/at90usb_usbmsc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at90usb/teensy-2.0/src/at90usb_usbmsc.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/avr/at90usb/teensy-2.0/src/teensy-20.h b/boards/avr/at90usb/teensy-2.0/src/teensy-20.h index 8855114dc0cc2..45f355537f68f 100644 --- a/boards/avr/at90usb/teensy-2.0/src/teensy-20.h +++ b/boards/avr/at90usb/teensy-2.0/src/teensy-20.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/at90usb/teensy-2.0/src/teensy-20.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 From 6e7f1b237cf3189b11318249c5e94eb79731f23b Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 14:34:17 +0100 Subject: [PATCH 11/53] boards/avr/atmega: 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/avr/atmega/amber/include/board.h | 2 ++ boards/avr/atmega/amber/scripts/Make.defs | 2 ++ boards/avr/atmega/amber/scripts/amber.ld | 2 ++ boards/avr/atmega/amber/src/Makefile | 2 ++ boards/avr/atmega/amber/src/amber.h | 2 ++ boards/avr/atmega/amber/src/atmega_boot.c | 2 ++ boards/avr/atmega/arduino-mega2560/include/board.h | 2 ++ boards/avr/atmega/arduino-mega2560/scripts/Make.defs | 2 ++ boards/avr/atmega/arduino-mega2560/scripts/flash.ld | 2 ++ boards/avr/atmega/arduino-mega2560/src/Makefile | 2 ++ boards/avr/atmega/arduino-mega2560/src/arduino_mega2560.h | 2 ++ boards/avr/atmega/arduino-mega2560/src/avr_boot.c | 2 ++ boards/avr/atmega/arduino-mega2560/src/avr_leds.c | 2 ++ boards/avr/atmega/mega1284p-xplained/include/board.h | 2 ++ boards/avr/atmega/mega1284p-xplained/scripts/Make.defs | 2 ++ boards/avr/atmega/mega1284p-xplained/scripts/ld.script | 2 ++ boards/avr/atmega/mega1284p-xplained/src/Makefile | 2 ++ boards/avr/atmega/mega1284p-xplained/src/avr_boot.c | 2 ++ boards/avr/atmega/mega1284p-xplained/src/avr_leds.c | 2 ++ boards/avr/atmega/mega1284p-xplained/src/mega1284p_xplained.h | 2 ++ boards/avr/atmega/moteino-mega/include/board.h | 2 ++ boards/avr/atmega/moteino-mega/scripts/Make.defs | 2 ++ boards/avr/atmega/moteino-mega/scripts/ld.script | 2 ++ boards/avr/atmega/moteino-mega/src/Makefile | 2 ++ boards/avr/atmega/moteino-mega/src/avr_boot.c | 2 ++ boards/avr/atmega/moteino-mega/src/avr_leds.c | 2 ++ boards/avr/atmega/moteino-mega/src/moteino_mega.h | 2 ++ 27 files changed, 54 insertions(+) diff --git a/boards/avr/atmega/amber/include/board.h b/boards/avr/atmega/amber/include/board.h index cfc5e2f57347e..dbdd68318ba20 100644 --- a/boards/avr/atmega/amber/include/board.h +++ b/boards/avr/atmega/amber/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/amber/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/avr/atmega/amber/scripts/Make.defs b/boards/avr/atmega/amber/scripts/Make.defs index 2fc425fc42bc7..b47b710934a09 100644 --- a/boards/avr/atmega/amber/scripts/Make.defs +++ b/boards/avr/atmega/amber/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/avr/atmega/amber/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/avr/atmega/amber/scripts/amber.ld b/boards/avr/atmega/amber/scripts/amber.ld index d13846accb796..e4e9018fb458d 100644 --- a/boards/avr/atmega/amber/scripts/amber.ld +++ b/boards/avr/atmega/amber/scripts/amber.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/amber/scripts/amber.ld * + * 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/avr/atmega/amber/src/Makefile b/boards/avr/atmega/amber/src/Makefile index 0869d277bf2c7..289fcb2c86209 100644 --- a/boards/avr/atmega/amber/src/Makefile +++ b/boards/avr/atmega/amber/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/avr/atmega/amber/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/avr/atmega/amber/src/amber.h b/boards/avr/atmega/amber/src/amber.h index 974469e70b4db..c6e969bc1badb 100644 --- a/boards/avr/atmega/amber/src/amber.h +++ b/boards/avr/atmega/amber/src/amber.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/amber/src/amber.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/avr/atmega/amber/src/atmega_boot.c b/boards/avr/atmega/amber/src/atmega_boot.c index 72fe916284000..a3b879f9d032c 100644 --- a/boards/avr/atmega/amber/src/atmega_boot.c +++ b/boards/avr/atmega/amber/src/atmega_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/amber/src/atmega_boot.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/avr/atmega/arduino-mega2560/include/board.h b/boards/avr/atmega/arduino-mega2560/include/board.h index bf05bccbb023f..ce0b9cf41a0aa 100644 --- a/boards/avr/atmega/arduino-mega2560/include/board.h +++ b/boards/avr/atmega/arduino-mega2560/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/arduino-mega2560/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/avr/atmega/arduino-mega2560/scripts/Make.defs b/boards/avr/atmega/arduino-mega2560/scripts/Make.defs index 0dd7c05281dcf..7d28cc0965ec3 100644 --- a/boards/avr/atmega/arduino-mega2560/scripts/Make.defs +++ b/boards/avr/atmega/arduino-mega2560/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/avr/atmega/arduino-mega2560/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/avr/atmega/arduino-mega2560/scripts/flash.ld b/boards/avr/atmega/arduino-mega2560/scripts/flash.ld index 75caa6fefcb8f..32329b4455ded 100644 --- a/boards/avr/atmega/arduino-mega2560/scripts/flash.ld +++ b/boards/avr/atmega/arduino-mega2560/scripts/flash.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/arduino-mega2560/scripts/flash.ld * + * 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/avr/atmega/arduino-mega2560/src/Makefile b/boards/avr/atmega/arduino-mega2560/src/Makefile index 9a5cfc70aebbe..eac8c5de54117 100644 --- a/boards/avr/atmega/arduino-mega2560/src/Makefile +++ b/boards/avr/atmega/arduino-mega2560/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/avr/atmega/arduino-mega2560/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/avr/atmega/arduino-mega2560/src/arduino_mega2560.h b/boards/avr/atmega/arduino-mega2560/src/arduino_mega2560.h index 86594f3f7522e..18c21cf934d71 100644 --- a/boards/avr/atmega/arduino-mega2560/src/arduino_mega2560.h +++ b/boards/avr/atmega/arduino-mega2560/src/arduino_mega2560.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/arduino-mega2560/src/arduino_mega2560.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/avr/atmega/arduino-mega2560/src/avr_boot.c b/boards/avr/atmega/arduino-mega2560/src/avr_boot.c index 161bf1db4dca5..41c9499803cbd 100644 --- a/boards/avr/atmega/arduino-mega2560/src/avr_boot.c +++ b/boards/avr/atmega/arduino-mega2560/src/avr_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/arduino-mega2560/src/avr_boot.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/avr/atmega/arduino-mega2560/src/avr_leds.c b/boards/avr/atmega/arduino-mega2560/src/avr_leds.c index ff4f5d1e2afca..eda9f64de3ae8 100644 --- a/boards/avr/atmega/arduino-mega2560/src/avr_leds.c +++ b/boards/avr/atmega/arduino-mega2560/src/avr_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/arduino-mega2560/src/avr_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/avr/atmega/mega1284p-xplained/include/board.h b/boards/avr/atmega/mega1284p-xplained/include/board.h index 68faf95b3dc56..0b44543c6ebac 100644 --- a/boards/avr/atmega/mega1284p-xplained/include/board.h +++ b/boards/avr/atmega/mega1284p-xplained/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/mega1284p-xplained/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/avr/atmega/mega1284p-xplained/scripts/Make.defs b/boards/avr/atmega/mega1284p-xplained/scripts/Make.defs index 549c69e5ee0a7..6d8f184bbff6f 100644 --- a/boards/avr/atmega/mega1284p-xplained/scripts/Make.defs +++ b/boards/avr/atmega/mega1284p-xplained/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/avr/atmega/mega1284p-xplained/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/avr/atmega/mega1284p-xplained/scripts/ld.script b/boards/avr/atmega/mega1284p-xplained/scripts/ld.script index 81df38fd8a001..68cec8b9ff726 100644 --- a/boards/avr/atmega/mega1284p-xplained/scripts/ld.script +++ b/boards/avr/atmega/mega1284p-xplained/scripts/ld.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/mega1284p-xplained/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/avr/atmega/mega1284p-xplained/src/Makefile b/boards/avr/atmega/mega1284p-xplained/src/Makefile index 8edca15558b7f..4fd384dbb7ecc 100644 --- a/boards/avr/atmega/mega1284p-xplained/src/Makefile +++ b/boards/avr/atmega/mega1284p-xplained/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/avr/atmega/mega1284p-xplained/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/avr/atmega/mega1284p-xplained/src/avr_boot.c b/boards/avr/atmega/mega1284p-xplained/src/avr_boot.c index 0aaef7957782a..337e26d48dcfe 100644 --- a/boards/avr/atmega/mega1284p-xplained/src/avr_boot.c +++ b/boards/avr/atmega/mega1284p-xplained/src/avr_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/mega1284p-xplained/src/avr_boot.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/avr/atmega/mega1284p-xplained/src/avr_leds.c b/boards/avr/atmega/mega1284p-xplained/src/avr_leds.c index e2f684d0116bb..50ab48f13c8e2 100644 --- a/boards/avr/atmega/mega1284p-xplained/src/avr_leds.c +++ b/boards/avr/atmega/mega1284p-xplained/src/avr_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/mega1284p-xplained/src/avr_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/avr/atmega/mega1284p-xplained/src/mega1284p_xplained.h b/boards/avr/atmega/mega1284p-xplained/src/mega1284p_xplained.h index ba99191ba5aef..53313fe7ffba4 100644 --- a/boards/avr/atmega/mega1284p-xplained/src/mega1284p_xplained.h +++ b/boards/avr/atmega/mega1284p-xplained/src/mega1284p_xplained.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/mega1284p-xplained/src/mega1284p_xplained.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/avr/atmega/moteino-mega/include/board.h b/boards/avr/atmega/moteino-mega/include/board.h index 27091f91515f4..155019d3ec799 100644 --- a/boards/avr/atmega/moteino-mega/include/board.h +++ b/boards/avr/atmega/moteino-mega/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/moteino-mega/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/avr/atmega/moteino-mega/scripts/Make.defs b/boards/avr/atmega/moteino-mega/scripts/Make.defs index 17d3c7ac00ccb..d78b0cd48490b 100644 --- a/boards/avr/atmega/moteino-mega/scripts/Make.defs +++ b/boards/avr/atmega/moteino-mega/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/avr/atmega/moteino-mega/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/avr/atmega/moteino-mega/scripts/ld.script b/boards/avr/atmega/moteino-mega/scripts/ld.script index ae18f23ce69c2..8db9829888952 100644 --- a/boards/avr/atmega/moteino-mega/scripts/ld.script +++ b/boards/avr/atmega/moteino-mega/scripts/ld.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/moteino-mega/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/avr/atmega/moteino-mega/src/Makefile b/boards/avr/atmega/moteino-mega/src/Makefile index e92b29582ad59..734a0cd51e1b9 100644 --- a/boards/avr/atmega/moteino-mega/src/Makefile +++ b/boards/avr/atmega/moteino-mega/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/avr/atmega/moteino-mega/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/avr/atmega/moteino-mega/src/avr_boot.c b/boards/avr/atmega/moteino-mega/src/avr_boot.c index 8fc3cfc45e800..fc07f7bee6fea 100644 --- a/boards/avr/atmega/moteino-mega/src/avr_boot.c +++ b/boards/avr/atmega/moteino-mega/src/avr_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/moteino-mega/src/avr_boot.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/avr/atmega/moteino-mega/src/avr_leds.c b/boards/avr/atmega/moteino-mega/src/avr_leds.c index 807afae106e74..e0f4537725877 100644 --- a/boards/avr/atmega/moteino-mega/src/avr_leds.c +++ b/boards/avr/atmega/moteino-mega/src/avr_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/moteino-mega/src/avr_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/avr/atmega/moteino-mega/src/moteino_mega.h b/boards/avr/atmega/moteino-mega/src/moteino_mega.h index 354722a8700bc..818e8b2b1f128 100644 --- a/boards/avr/atmega/moteino-mega/src/moteino_mega.h +++ b/boards/avr/atmega/moteino-mega/src/moteino_mega.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/avr/atmega/moteino-mega/src/moteino_mega.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 From fcbe46a0ed5aecc836f23662b4f7407688a72b28 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 14:40:43 +0100 Subject: [PATCH 12/53] boards/hc/m9s12: 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/hc/m9s12/demo9s12ne64/include/board.h | 2 ++ boards/hc/m9s12/demo9s12ne64/scripts/Make.defs | 2 ++ boards/hc/m9s12/demo9s12ne64/scripts/demo9s12ne64-banked.ld | 2 ++ boards/hc/m9s12/demo9s12ne64/scripts/demo9s12ne64-unbanked.ld | 2 ++ boards/hc/m9s12/demo9s12ne64/src/Makefile | 2 ++ boards/hc/m9s12/demo9s12ne64/src/demo9s12ne64.h | 2 ++ boards/hc/m9s12/demo9s12ne64/src/m9s12_appinit.c | 2 ++ boards/hc/m9s12/demo9s12ne64/src/m9s12_boot.c | 2 ++ boards/hc/m9s12/demo9s12ne64/src/m9s12_buttons.c | 2 ++ boards/hc/m9s12/demo9s12ne64/src/m9s12_leds.c | 2 ++ boards/hc/m9s12/demo9s12ne64/src/m9s12_spi.c | 2 ++ boards/hc/m9s12/ne64badge/include/board.h | 2 ++ boards/hc/m9s12/ne64badge/scripts/Make.defs | 2 ++ boards/hc/m9s12/ne64badge/scripts/ne64badge-banked.ld | 2 ++ boards/hc/m9s12/ne64badge/scripts/ne64badge-nonbanked.ld | 2 ++ boards/hc/m9s12/ne64badge/src/Makefile | 2 ++ boards/hc/m9s12/ne64badge/src/m9s12_appinit.c | 2 ++ boards/hc/m9s12/ne64badge/src/m9s12_boot.c | 2 ++ boards/hc/m9s12/ne64badge/src/m9s12_buttons.c | 2 ++ boards/hc/m9s12/ne64badge/src/m9s12_leds.c | 2 ++ boards/hc/m9s12/ne64badge/src/m9s12_spi.c | 2 ++ boards/hc/m9s12/ne64badge/src/ne64badge.h | 2 ++ 22 files changed, 44 insertions(+) diff --git a/boards/hc/m9s12/demo9s12ne64/include/board.h b/boards/hc/m9s12/demo9s12ne64/include/board.h index d0bfcda8301ea..fb823332f4645 100644 --- a/boards/hc/m9s12/demo9s12ne64/include/board.h +++ b/boards/hc/m9s12/demo9s12ne64/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/demo9s12ne64/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/hc/m9s12/demo9s12ne64/scripts/Make.defs b/boards/hc/m9s12/demo9s12ne64/scripts/Make.defs index 5f713e0c82923..63e9f2ff0d2c5 100644 --- a/boards/hc/m9s12/demo9s12ne64/scripts/Make.defs +++ b/boards/hc/m9s12/demo9s12ne64/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/hc/m9s12/demo9s12ne64/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/hc/m9s12/demo9s12ne64/scripts/demo9s12ne64-banked.ld b/boards/hc/m9s12/demo9s12ne64/scripts/demo9s12ne64-banked.ld index b453d341376b8..31f16b40723a2 100644 --- a/boards/hc/m9s12/demo9s12ne64/scripts/demo9s12ne64-banked.ld +++ b/boards/hc/m9s12/demo9s12ne64/scripts/demo9s12ne64-banked.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/demo9s12ne64/scripts/demo9s12ne64-banked.ld * + * 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/hc/m9s12/demo9s12ne64/scripts/demo9s12ne64-unbanked.ld b/boards/hc/m9s12/demo9s12ne64/scripts/demo9s12ne64-unbanked.ld index 07c811d0f5d81..7b6bc02db2694 100644 --- a/boards/hc/m9s12/demo9s12ne64/scripts/demo9s12ne64-unbanked.ld +++ b/boards/hc/m9s12/demo9s12ne64/scripts/demo9s12ne64-unbanked.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/demo9s12ne64/scripts/demo9s12ne64-unbanked.ld * + * 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/hc/m9s12/demo9s12ne64/src/Makefile b/boards/hc/m9s12/demo9s12ne64/src/Makefile index 9b38bf214b983..9d317d6a76372 100644 --- a/boards/hc/m9s12/demo9s12ne64/src/Makefile +++ b/boards/hc/m9s12/demo9s12ne64/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/hc/m9s12/demo9s12ne64/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/hc/m9s12/demo9s12ne64/src/demo9s12ne64.h b/boards/hc/m9s12/demo9s12ne64/src/demo9s12ne64.h index 88950c4d5df3e..87b35a07d9d12 100644 --- a/boards/hc/m9s12/demo9s12ne64/src/demo9s12ne64.h +++ b/boards/hc/m9s12/demo9s12ne64/src/demo9s12ne64.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/demo9s12ne64/src/demo9s12ne64.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/hc/m9s12/demo9s12ne64/src/m9s12_appinit.c b/boards/hc/m9s12/demo9s12ne64/src/m9s12_appinit.c index 68d14c7d080a6..dba0fc340935d 100644 --- a/boards/hc/m9s12/demo9s12ne64/src/m9s12_appinit.c +++ b/boards/hc/m9s12/demo9s12ne64/src/m9s12_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/demo9s12ne64/src/m9s12_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/hc/m9s12/demo9s12ne64/src/m9s12_boot.c b/boards/hc/m9s12/demo9s12ne64/src/m9s12_boot.c index dd299ea3b95c5..833273964ff19 100644 --- a/boards/hc/m9s12/demo9s12ne64/src/m9s12_boot.c +++ b/boards/hc/m9s12/demo9s12ne64/src/m9s12_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/demo9s12ne64/src/m9s12_boot.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/hc/m9s12/demo9s12ne64/src/m9s12_buttons.c b/boards/hc/m9s12/demo9s12ne64/src/m9s12_buttons.c index 955a0f1839cfd..44d44338d10cd 100644 --- a/boards/hc/m9s12/demo9s12ne64/src/m9s12_buttons.c +++ b/boards/hc/m9s12/demo9s12ne64/src/m9s12_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/demo9s12ne64/src/m9s12_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/hc/m9s12/demo9s12ne64/src/m9s12_leds.c b/boards/hc/m9s12/demo9s12ne64/src/m9s12_leds.c index 7b29b35c518c6..5977354c9eda3 100644 --- a/boards/hc/m9s12/demo9s12ne64/src/m9s12_leds.c +++ b/boards/hc/m9s12/demo9s12ne64/src/m9s12_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/demo9s12ne64/src/m9s12_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/hc/m9s12/demo9s12ne64/src/m9s12_spi.c b/boards/hc/m9s12/demo9s12ne64/src/m9s12_spi.c index 07fd234ded153..b93d6096b6955 100644 --- a/boards/hc/m9s12/demo9s12ne64/src/m9s12_spi.c +++ b/boards/hc/m9s12/demo9s12ne64/src/m9s12_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/demo9s12ne64/src/m9s12_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 diff --git a/boards/hc/m9s12/ne64badge/include/board.h b/boards/hc/m9s12/ne64badge/include/board.h index c969873f085ab..14bf2546aa053 100644 --- a/boards/hc/m9s12/ne64badge/include/board.h +++ b/boards/hc/m9s12/ne64badge/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/ne64badge/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/hc/m9s12/ne64badge/scripts/Make.defs b/boards/hc/m9s12/ne64badge/scripts/Make.defs index a171940a325ea..1b9beb634e9f2 100644 --- a/boards/hc/m9s12/ne64badge/scripts/Make.defs +++ b/boards/hc/m9s12/ne64badge/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/hc/m9s12/ne64badge/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/hc/m9s12/ne64badge/scripts/ne64badge-banked.ld b/boards/hc/m9s12/ne64badge/scripts/ne64badge-banked.ld index df3bc76f95fb9..879b9451c0cec 100644 --- a/boards/hc/m9s12/ne64badge/scripts/ne64badge-banked.ld +++ b/boards/hc/m9s12/ne64badge/scripts/ne64badge-banked.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/ne64badge/scripts/ne64badge-banked.ld * + * 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/hc/m9s12/ne64badge/scripts/ne64badge-nonbanked.ld b/boards/hc/m9s12/ne64badge/scripts/ne64badge-nonbanked.ld index fd579d5d7ce5c..89a4c8ce02ce0 100644 --- a/boards/hc/m9s12/ne64badge/scripts/ne64badge-nonbanked.ld +++ b/boards/hc/m9s12/ne64badge/scripts/ne64badge-nonbanked.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/ne64badge/scripts/ne64badge-nonbanked.ld * + * 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/hc/m9s12/ne64badge/src/Makefile b/boards/hc/m9s12/ne64badge/src/Makefile index 221cea6d3bf44..9d1d7b0fec4ce 100644 --- a/boards/hc/m9s12/ne64badge/src/Makefile +++ b/boards/hc/m9s12/ne64badge/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/hc/m9s12/ne64badge/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/hc/m9s12/ne64badge/src/m9s12_appinit.c b/boards/hc/m9s12/ne64badge/src/m9s12_appinit.c index c04c8a1a23137..3588ad515a719 100644 --- a/boards/hc/m9s12/ne64badge/src/m9s12_appinit.c +++ b/boards/hc/m9s12/ne64badge/src/m9s12_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/ne64badge/src/m9s12_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/hc/m9s12/ne64badge/src/m9s12_boot.c b/boards/hc/m9s12/ne64badge/src/m9s12_boot.c index f906fabeb9fc1..e24207e7ee031 100644 --- a/boards/hc/m9s12/ne64badge/src/m9s12_boot.c +++ b/boards/hc/m9s12/ne64badge/src/m9s12_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/ne64badge/src/m9s12_boot.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/hc/m9s12/ne64badge/src/m9s12_buttons.c b/boards/hc/m9s12/ne64badge/src/m9s12_buttons.c index d58851f899948..4ed502e7e9d13 100644 --- a/boards/hc/m9s12/ne64badge/src/m9s12_buttons.c +++ b/boards/hc/m9s12/ne64badge/src/m9s12_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/ne64badge/src/m9s12_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/hc/m9s12/ne64badge/src/m9s12_leds.c b/boards/hc/m9s12/ne64badge/src/m9s12_leds.c index 721ef090be99d..84b2e51170c0e 100644 --- a/boards/hc/m9s12/ne64badge/src/m9s12_leds.c +++ b/boards/hc/m9s12/ne64badge/src/m9s12_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/ne64badge/src/m9s12_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/hc/m9s12/ne64badge/src/m9s12_spi.c b/boards/hc/m9s12/ne64badge/src/m9s12_spi.c index 889609c48faa1..6c0bc540ec9b9 100644 --- a/boards/hc/m9s12/ne64badge/src/m9s12_spi.c +++ b/boards/hc/m9s12/ne64badge/src/m9s12_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/ne64badge/src/m9s12_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 diff --git a/boards/hc/m9s12/ne64badge/src/ne64badge.h b/boards/hc/m9s12/ne64badge/src/ne64badge.h index 10f0686ab6d0e..3533c89fbc110 100644 --- a/boards/hc/m9s12/ne64badge/src/ne64badge.h +++ b/boards/hc/m9s12/ne64badge/src/ne64badge.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/hc/m9s12/ne64badge/src/ne64badge.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 From 794bfcfb6d2ecdb7f4301bacb8355f2f69806ca2 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 14:48:02 +0100 Subject: [PATCH 13/53] boards/mips/pic32mx: 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/mips/pic32mx/mirtoo/include/board.h | 2 ++ boards/mips/pic32mx/mirtoo/scripts/Make.defs | 2 ++ boards/mips/pic32mx/mirtoo/scripts/c32-debug.ld | 2 ++ boards/mips/pic32mx/mirtoo/scripts/c32-release.ld | 2 ++ boards/mips/pic32mx/mirtoo/scripts/mips-elf-debug.ld | 2 ++ boards/mips/pic32mx/mirtoo/scripts/mips-elf-release.ld | 2 ++ boards/mips/pic32mx/mirtoo/scripts/pinguino-debug.ld | 2 ++ boards/mips/pic32mx/mirtoo/scripts/xc32-debug.ld | 2 ++ boards/mips/pic32mx/mirtoo/scripts/xc32-release.ld | 2 ++ boards/mips/pic32mx/mirtoo/src/Makefile | 2 ++ boards/mips/pic32mx/mirtoo/src/mirtoo.h | 2 ++ boards/mips/pic32mx/mirtoo/src/pic32_adc.c | 2 ++ boards/mips/pic32mx/mirtoo/src/pic32_appinit.c | 2 ++ boards/mips/pic32mx/mirtoo/src/pic32_boot.c | 2 ++ boards/mips/pic32mx/mirtoo/src/pic32_leds.c | 2 ++ boards/mips/pic32mx/mirtoo/src/pic32_spi2.c | 2 ++ boards/mips/pic32mx/pic32mx-starterkit/include/board.h | 2 ++ boards/mips/pic32mx/pic32mx-starterkit/scripts/Make.defs | 2 ++ boards/mips/pic32mx/pic32mx-starterkit/scripts/c32-release.ld | 2 ++ boards/mips/pic32mx/pic32mx-starterkit/scripts/mips-release.ld | 2 ++ .../mips/pic32mx/pic32mx-starterkit/scripts/pinguino-debug.ld | 2 ++ boards/mips/pic32mx/pic32mx-starterkit/src/Makefile | 2 ++ boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx-starterkit.h | 2 ++ boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_appinit.c | 2 ++ boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_boot.c | 2 ++ boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_leds.c | 2 ++ boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_spi.c | 2 ++ boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_usbdev.c | 2 ++ boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_usbmsc.c | 2 ++ boards/mips/pic32mx/pic32mx7mmb/include/board.h | 2 ++ boards/mips/pic32mx/pic32mx7mmb/scripts/Make.defs | 2 ++ boards/mips/pic32mx/pic32mx7mmb/scripts/c32-release.ld | 2 ++ boards/mips/pic32mx/pic32mx7mmb/scripts/mips-release.ld | 2 ++ boards/mips/pic32mx/pic32mx7mmb/scripts/pinguino-debug.ld | 2 ++ boards/mips/pic32mx/pic32mx7mmb/src/Makefile | 2 ++ boards/mips/pic32mx/pic32mx7mmb/src/pic32_appinit.c | 2 ++ boards/mips/pic32mx/pic32mx7mmb/src/pic32_boot.c | 2 ++ boards/mips/pic32mx/pic32mx7mmb/src/pic32_bringup.c | 2 ++ boards/mips/pic32mx/pic32mx7mmb/src/pic32_leds.c | 2 ++ boards/mips/pic32mx/pic32mx7mmb/src/pic32_mio283qt2.c | 2 ++ boards/mips/pic32mx/pic32mx7mmb/src/pic32_spi.c | 2 ++ boards/mips/pic32mx/pic32mx7mmb/src/pic32_touchscreen.c | 2 ++ boards/mips/pic32mx/pic32mx7mmb/src/pic32_usbdev.c | 2 ++ boards/mips/pic32mx/pic32mx7mmb/src/pic32_usbmsc.c | 2 ++ boards/mips/pic32mx/pic32mx7mmb/src/pic32mx7mmb.h | 2 ++ boards/mips/pic32mx/sure-pic32mx/include/board.h | 2 ++ boards/mips/pic32mx/sure-pic32mx/scripts/Make.defs | 2 ++ boards/mips/pic32mx/sure-pic32mx/scripts/c32-release.ld | 2 ++ boards/mips/pic32mx/sure-pic32mx/scripts/mips-release.ld | 2 ++ boards/mips/pic32mx/sure-pic32mx/scripts/pinguino-debug.ld | 2 ++ boards/mips/pic32mx/sure-pic32mx/src/Makefile | 2 ++ boards/mips/pic32mx/sure-pic32mx/src/pic32mx_appinit.c | 2 ++ boards/mips/pic32mx/sure-pic32mx/src/pic32mx_autoleds.c | 2 ++ boards/mips/pic32mx/sure-pic32mx/src/pic32mx_boot.c | 2 ++ boards/mips/pic32mx/sure-pic32mx/src/pic32mx_buttons.c | 2 ++ boards/mips/pic32mx/sure-pic32mx/src/pic32mx_lcd1602.c | 2 ++ boards/mips/pic32mx/sure-pic32mx/src/pic32mx_spi.c | 2 ++ boards/mips/pic32mx/sure-pic32mx/src/pic32mx_usbdev.c | 2 ++ boards/mips/pic32mx/sure-pic32mx/src/sure-pic32mx.h | 2 ++ boards/mips/pic32mx/ubw32/include/board.h | 2 ++ boards/mips/pic32mx/ubw32/scripts/Make.defs | 2 ++ boards/mips/pic32mx/ubw32/scripts/c32-release.ld | 2 ++ boards/mips/pic32mx/ubw32/scripts/mips-release.ld | 2 ++ boards/mips/pic32mx/ubw32/scripts/pinguino-debug.ld | 2 ++ boards/mips/pic32mx/ubw32/src/Makefile | 2 ++ boards/mips/pic32mx/ubw32/src/pic32_appinit.c | 2 ++ boards/mips/pic32mx/ubw32/src/pic32_boot.c | 2 ++ boards/mips/pic32mx/ubw32/src/pic32_buttons.c | 2 ++ boards/mips/pic32mx/ubw32/src/pic32_leds.c | 2 ++ boards/mips/pic32mx/ubw32/src/pic32_usbdev.c | 2 ++ boards/mips/pic32mx/ubw32/src/ubw32.h | 2 ++ 71 files changed, 142 insertions(+) diff --git a/boards/mips/pic32mx/mirtoo/include/board.h b/boards/mips/pic32mx/mirtoo/include/board.h index 091296fe2efc4..bbefc95a067e7 100644 --- a/boards/mips/pic32mx/mirtoo/include/board.h +++ b/boards/mips/pic32mx/mirtoo/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/mirtoo/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/mips/pic32mx/mirtoo/scripts/Make.defs b/boards/mips/pic32mx/mirtoo/scripts/Make.defs index 87ef9474ef5e2..b1078419d92c4 100644 --- a/boards/mips/pic32mx/mirtoo/scripts/Make.defs +++ b/boards/mips/pic32mx/mirtoo/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/mips/pic32mx/mirtoo/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/mips/pic32mx/mirtoo/scripts/c32-debug.ld b/boards/mips/pic32mx/mirtoo/scripts/c32-debug.ld index 97d8e3f8a5bca..0ac6a3465d3a0 100644 --- a/boards/mips/pic32mx/mirtoo/scripts/c32-debug.ld +++ b/boards/mips/pic32mx/mirtoo/scripts/c32-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/mirtoo/scripts/c32-debug.ld * + * 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/mips/pic32mx/mirtoo/scripts/c32-release.ld b/boards/mips/pic32mx/mirtoo/scripts/c32-release.ld index 9a61c75dab025..8d7dfb8ed962d 100644 --- a/boards/mips/pic32mx/mirtoo/scripts/c32-release.ld +++ b/boards/mips/pic32mx/mirtoo/scripts/c32-release.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/mirtoo/scripts/c32-release.ld * + * 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/mips/pic32mx/mirtoo/scripts/mips-elf-debug.ld b/boards/mips/pic32mx/mirtoo/scripts/mips-elf-debug.ld index bedb03fcf822d..4b726522819de 100644 --- a/boards/mips/pic32mx/mirtoo/scripts/mips-elf-debug.ld +++ b/boards/mips/pic32mx/mirtoo/scripts/mips-elf-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/mirtoo/scripts/mips-elf-debug.ld * + * 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/mips/pic32mx/mirtoo/scripts/mips-elf-release.ld b/boards/mips/pic32mx/mirtoo/scripts/mips-elf-release.ld index d042ba888113e..772008e6eaeef 100644 --- a/boards/mips/pic32mx/mirtoo/scripts/mips-elf-release.ld +++ b/boards/mips/pic32mx/mirtoo/scripts/mips-elf-release.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/mirtoo/scripts/mips-elf-release.ld * + * 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/mips/pic32mx/mirtoo/scripts/pinguino-debug.ld b/boards/mips/pic32mx/mirtoo/scripts/pinguino-debug.ld index 32928f7c74015..178487c0ba0ec 100644 --- a/boards/mips/pic32mx/mirtoo/scripts/pinguino-debug.ld +++ b/boards/mips/pic32mx/mirtoo/scripts/pinguino-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/mirtoo/scripts/pinguino-debug.ld * + * 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/mips/pic32mx/mirtoo/scripts/xc32-debug.ld b/boards/mips/pic32mx/mirtoo/scripts/xc32-debug.ld index 50c1fbe613a44..09b2d19d3d231 100644 --- a/boards/mips/pic32mx/mirtoo/scripts/xc32-debug.ld +++ b/boards/mips/pic32mx/mirtoo/scripts/xc32-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/mirtoo/scripts/xc32-debug.ld * + * 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/mips/pic32mx/mirtoo/scripts/xc32-release.ld b/boards/mips/pic32mx/mirtoo/scripts/xc32-release.ld index 7a97e141d8d72..590ea5be42ac5 100644 --- a/boards/mips/pic32mx/mirtoo/scripts/xc32-release.ld +++ b/boards/mips/pic32mx/mirtoo/scripts/xc32-release.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/mirtoo/scripts/xc32-release.ld * + * 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/mips/pic32mx/mirtoo/src/Makefile b/boards/mips/pic32mx/mirtoo/src/Makefile index 4c6e50a4f0a36..f9c20b171f924 100644 --- a/boards/mips/pic32mx/mirtoo/src/Makefile +++ b/boards/mips/pic32mx/mirtoo/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/mips/pic32mx/mirtoo/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/mips/pic32mx/mirtoo/src/mirtoo.h b/boards/mips/pic32mx/mirtoo/src/mirtoo.h index 25c48e1cfaf9f..15e9b37d17ea2 100644 --- a/boards/mips/pic32mx/mirtoo/src/mirtoo.h +++ b/boards/mips/pic32mx/mirtoo/src/mirtoo.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/mirtoo/src/mirtoo.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/mips/pic32mx/mirtoo/src/pic32_adc.c b/boards/mips/pic32mx/mirtoo/src/pic32_adc.c index 7b324a950a7f9..11514d7894891 100644 --- a/boards/mips/pic32mx/mirtoo/src/pic32_adc.c +++ b/boards/mips/pic32mx/mirtoo/src/pic32_adc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/mirtoo/src/pic32_adc.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/mips/pic32mx/mirtoo/src/pic32_appinit.c b/boards/mips/pic32mx/mirtoo/src/pic32_appinit.c index 9d69fab569b0f..01dadd1a49c0d 100644 --- a/boards/mips/pic32mx/mirtoo/src/pic32_appinit.c +++ b/boards/mips/pic32mx/mirtoo/src/pic32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/mirtoo/src/pic32_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/mips/pic32mx/mirtoo/src/pic32_boot.c b/boards/mips/pic32mx/mirtoo/src/pic32_boot.c index a0d21ef39be5c..4908f0d33b966 100644 --- a/boards/mips/pic32mx/mirtoo/src/pic32_boot.c +++ b/boards/mips/pic32mx/mirtoo/src/pic32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/mirtoo/src/pic32_boot.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/mips/pic32mx/mirtoo/src/pic32_leds.c b/boards/mips/pic32mx/mirtoo/src/pic32_leds.c index 3dd7773c69652..32cbc241498bb 100644 --- a/boards/mips/pic32mx/mirtoo/src/pic32_leds.c +++ b/boards/mips/pic32mx/mirtoo/src/pic32_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/mirtoo/src/pic32_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/mips/pic32mx/mirtoo/src/pic32_spi2.c b/boards/mips/pic32mx/mirtoo/src/pic32_spi2.c index dcfc9a40b3d9e..66166e2b5f33b 100644 --- a/boards/mips/pic32mx/mirtoo/src/pic32_spi2.c +++ b/boards/mips/pic32mx/mirtoo/src/pic32_spi2.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/mirtoo/src/pic32_spi2.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/mips/pic32mx/pic32mx-starterkit/include/board.h b/boards/mips/pic32mx/pic32mx-starterkit/include/board.h index d4fcc0d52211b..513a3dad06074 100644 --- a/boards/mips/pic32mx/pic32mx-starterkit/include/board.h +++ b/boards/mips/pic32mx/pic32mx-starterkit/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx-starterkit/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/mips/pic32mx/pic32mx-starterkit/scripts/Make.defs b/boards/mips/pic32mx/pic32mx-starterkit/scripts/Make.defs index c01b2dbd07a3d..b574e618f1eb5 100644 --- a/boards/mips/pic32mx/pic32mx-starterkit/scripts/Make.defs +++ b/boards/mips/pic32mx/pic32mx-starterkit/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/mips/pic32mx/pic32mx-starterkit/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/mips/pic32mx/pic32mx-starterkit/scripts/c32-release.ld b/boards/mips/pic32mx/pic32mx-starterkit/scripts/c32-release.ld index d5a7b348055b5..ea1986eff0512 100644 --- a/boards/mips/pic32mx/pic32mx-starterkit/scripts/c32-release.ld +++ b/boards/mips/pic32mx/pic32mx-starterkit/scripts/c32-release.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx-starterkit/scripts/c32-release.ld * + * 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/mips/pic32mx/pic32mx-starterkit/scripts/mips-release.ld b/boards/mips/pic32mx/pic32mx-starterkit/scripts/mips-release.ld index 658179973f489..1cac4206b7688 100644 --- a/boards/mips/pic32mx/pic32mx-starterkit/scripts/mips-release.ld +++ b/boards/mips/pic32mx/pic32mx-starterkit/scripts/mips-release.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx-starterkit/scripts/mips-release.ld * + * 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/mips/pic32mx/pic32mx-starterkit/scripts/pinguino-debug.ld b/boards/mips/pic32mx/pic32mx-starterkit/scripts/pinguino-debug.ld index c4cfa1b97b355..deaa350753425 100644 --- a/boards/mips/pic32mx/pic32mx-starterkit/scripts/pinguino-debug.ld +++ b/boards/mips/pic32mx/pic32mx-starterkit/scripts/pinguino-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx-starterkit/scripts/pinguino-debug.ld * + * 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/mips/pic32mx/pic32mx-starterkit/src/Makefile b/boards/mips/pic32mx/pic32mx-starterkit/src/Makefile index 110d61667bf9a..5d183b4755774 100644 --- a/boards/mips/pic32mx/pic32mx-starterkit/src/Makefile +++ b/boards/mips/pic32mx/pic32mx-starterkit/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/mips/pic32mx/pic32mx-starterkit/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/mips/pic32mx/pic32mx-starterkit/src/pic32mx-starterkit.h b/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx-starterkit.h index 63cea15251ebe..c0384b254e23b 100644 --- a/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx-starterkit.h +++ b/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx-starterkit.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx-starterkit.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/mips/pic32mx/pic32mx-starterkit/src/pic32mx_appinit.c b/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_appinit.c index 5187ebb753351..bbf13a39cad5f 100644 --- a/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_appinit.c +++ b/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_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/mips/pic32mx/pic32mx-starterkit/src/pic32mx_boot.c b/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_boot.c index 88fdd9631bee7..1474d4f30be19 100644 --- a/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_boot.c +++ b/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_boot.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/mips/pic32mx/pic32mx-starterkit/src/pic32mx_leds.c b/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_leds.c index 3d2fe7a980af9..59e83ef0bf6e1 100644 --- a/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_leds.c +++ b/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_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/mips/pic32mx/pic32mx-starterkit/src/pic32mx_spi.c b/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_spi.c index ec5bbd38737ea..7303a7def2c62 100644 --- a/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_spi.c +++ b/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_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 diff --git a/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_usbdev.c b/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_usbdev.c index 91bc9544f254c..0d6f90cfec1cc 100644 --- a/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_usbdev.c +++ b/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_usbdev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_usbdev.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/mips/pic32mx/pic32mx-starterkit/src/pic32mx_usbmsc.c b/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_usbmsc.c index 49c2136632281..e1db7b086aed3 100644 --- a/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_usbmsc.c +++ b/boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_usbmsc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx-starterkit/src/pic32mx_usbmsc.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/mips/pic32mx/pic32mx7mmb/include/board.h b/boards/mips/pic32mx/pic32mx7mmb/include/board.h index 88be543ff415f..4fa49a3a4bc10 100644 --- a/boards/mips/pic32mx/pic32mx7mmb/include/board.h +++ b/boards/mips/pic32mx/pic32mx7mmb/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx7mmb/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/mips/pic32mx/pic32mx7mmb/scripts/Make.defs b/boards/mips/pic32mx/pic32mx7mmb/scripts/Make.defs index e0f00b681591e..b98f58e9e4e1d 100644 --- a/boards/mips/pic32mx/pic32mx7mmb/scripts/Make.defs +++ b/boards/mips/pic32mx/pic32mx7mmb/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/mips/pic32mx/pic32mx7mmb/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/mips/pic32mx/pic32mx7mmb/scripts/c32-release.ld b/boards/mips/pic32mx/pic32mx7mmb/scripts/c32-release.ld index e925cf5e7d874..37bf98000f526 100644 --- a/boards/mips/pic32mx/pic32mx7mmb/scripts/c32-release.ld +++ b/boards/mips/pic32mx/pic32mx7mmb/scripts/c32-release.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx7mmb/scripts/c32-release.ld * + * 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/mips/pic32mx/pic32mx7mmb/scripts/mips-release.ld b/boards/mips/pic32mx/pic32mx7mmb/scripts/mips-release.ld index e734a5cfb973e..8c9653c7239e5 100644 --- a/boards/mips/pic32mx/pic32mx7mmb/scripts/mips-release.ld +++ b/boards/mips/pic32mx/pic32mx7mmb/scripts/mips-release.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx7mmb/scripts/mips-release.ld * + * 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/mips/pic32mx/pic32mx7mmb/scripts/pinguino-debug.ld b/boards/mips/pic32mx/pic32mx7mmb/scripts/pinguino-debug.ld index eedcad248dadf..15392276dc067 100644 --- a/boards/mips/pic32mx/pic32mx7mmb/scripts/pinguino-debug.ld +++ b/boards/mips/pic32mx/pic32mx7mmb/scripts/pinguino-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx7mmb/scripts/pinguino-debug.ld * + * 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/mips/pic32mx/pic32mx7mmb/src/Makefile b/boards/mips/pic32mx/pic32mx7mmb/src/Makefile index 414532c234407..d7d9a871b5f3f 100644 --- a/boards/mips/pic32mx/pic32mx7mmb/src/Makefile +++ b/boards/mips/pic32mx/pic32mx7mmb/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/mips/pic32mx/pic32mx7mmb/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/mips/pic32mx/pic32mx7mmb/src/pic32_appinit.c b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_appinit.c index be83b542c6b06..649a7b3448671 100644 --- a/boards/mips/pic32mx/pic32mx7mmb/src/pic32_appinit.c +++ b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx7mmb/src/pic32_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/mips/pic32mx/pic32mx7mmb/src/pic32_boot.c b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_boot.c index 7ec9c53e5952e..a5bc193e1ad3b 100644 --- a/boards/mips/pic32mx/pic32mx7mmb/src/pic32_boot.c +++ b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx7mmb/src/pic32_boot.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/mips/pic32mx/pic32mx7mmb/src/pic32_bringup.c b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_bringup.c index f49a53007a202..6e71f5357d147 100644 --- a/boards/mips/pic32mx/pic32mx7mmb/src/pic32_bringup.c +++ b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx7mmb/src/pic32_bringup.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/mips/pic32mx/pic32mx7mmb/src/pic32_leds.c b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_leds.c index 27e1136d82f7c..e4783762af6d3 100644 --- a/boards/mips/pic32mx/pic32mx7mmb/src/pic32_leds.c +++ b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx7mmb/src/pic32_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/mips/pic32mx/pic32mx7mmb/src/pic32_mio283qt2.c b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_mio283qt2.c index 51d60a7652946..39401df9dfdbe 100644 --- a/boards/mips/pic32mx/pic32mx7mmb/src/pic32_mio283qt2.c +++ b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_mio283qt2.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx7mmb/src/pic32_mio283qt2.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/mips/pic32mx/pic32mx7mmb/src/pic32_spi.c b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_spi.c index ba8d4a34872d8..eff3c1a690c25 100644 --- a/boards/mips/pic32mx/pic32mx7mmb/src/pic32_spi.c +++ b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx7mmb/src/pic32_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 diff --git a/boards/mips/pic32mx/pic32mx7mmb/src/pic32_touchscreen.c b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_touchscreen.c index becb9bb45d83b..68765e955f8cf 100644 --- a/boards/mips/pic32mx/pic32mx7mmb/src/pic32_touchscreen.c +++ b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_touchscreen.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx7mmb/src/pic32_touchscreen.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/mips/pic32mx/pic32mx7mmb/src/pic32_usbdev.c b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_usbdev.c index 5c0af99c10022..489fe1a4e6dae 100644 --- a/boards/mips/pic32mx/pic32mx7mmb/src/pic32_usbdev.c +++ b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_usbdev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx7mmb/src/pic32_usbdev.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/mips/pic32mx/pic32mx7mmb/src/pic32_usbmsc.c b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_usbmsc.c index d80c766702b81..1b7f98ca6e438 100644 --- a/boards/mips/pic32mx/pic32mx7mmb/src/pic32_usbmsc.c +++ b/boards/mips/pic32mx/pic32mx7mmb/src/pic32_usbmsc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx7mmb/src/pic32_usbmsc.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/mips/pic32mx/pic32mx7mmb/src/pic32mx7mmb.h b/boards/mips/pic32mx/pic32mx7mmb/src/pic32mx7mmb.h index ac98a58d8a4b0..04bfde73c6af7 100644 --- a/boards/mips/pic32mx/pic32mx7mmb/src/pic32mx7mmb.h +++ b/boards/mips/pic32mx/pic32mx7mmb/src/pic32mx7mmb.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/pic32mx7mmb/src/pic32mx7mmb.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/mips/pic32mx/sure-pic32mx/include/board.h b/boards/mips/pic32mx/sure-pic32mx/include/board.h index 2da92dd74b027..af6314d11d2ac 100644 --- a/boards/mips/pic32mx/sure-pic32mx/include/board.h +++ b/boards/mips/pic32mx/sure-pic32mx/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/sure-pic32mx/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/mips/pic32mx/sure-pic32mx/scripts/Make.defs b/boards/mips/pic32mx/sure-pic32mx/scripts/Make.defs index a7696b90c13fc..d471b5603b89c 100644 --- a/boards/mips/pic32mx/sure-pic32mx/scripts/Make.defs +++ b/boards/mips/pic32mx/sure-pic32mx/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/mips/pic32mx/sure-pic32mx/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/mips/pic32mx/sure-pic32mx/scripts/c32-release.ld b/boards/mips/pic32mx/sure-pic32mx/scripts/c32-release.ld index df27336b85d89..7ff991826e5f9 100644 --- a/boards/mips/pic32mx/sure-pic32mx/scripts/c32-release.ld +++ b/boards/mips/pic32mx/sure-pic32mx/scripts/c32-release.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/sure-pic32mx/scripts/c32-release.ld * + * 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/mips/pic32mx/sure-pic32mx/scripts/mips-release.ld b/boards/mips/pic32mx/sure-pic32mx/scripts/mips-release.ld index 787211577a735..7a407d90bc8c5 100644 --- a/boards/mips/pic32mx/sure-pic32mx/scripts/mips-release.ld +++ b/boards/mips/pic32mx/sure-pic32mx/scripts/mips-release.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/sure-pic32mx/scripts/mips-release.ld * + * 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/mips/pic32mx/sure-pic32mx/scripts/pinguino-debug.ld b/boards/mips/pic32mx/sure-pic32mx/scripts/pinguino-debug.ld index 2c3c3ae12f7d7..975d2c4de52b6 100644 --- a/boards/mips/pic32mx/sure-pic32mx/scripts/pinguino-debug.ld +++ b/boards/mips/pic32mx/sure-pic32mx/scripts/pinguino-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/sure-pic32mx/scripts/pinguino-debug.ld * + * 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/mips/pic32mx/sure-pic32mx/src/Makefile b/boards/mips/pic32mx/sure-pic32mx/src/Makefile index bbb49df3bb857..460a369201f25 100644 --- a/boards/mips/pic32mx/sure-pic32mx/src/Makefile +++ b/boards/mips/pic32mx/sure-pic32mx/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/mips/pic32mx/sure-pic32mx/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/mips/pic32mx/sure-pic32mx/src/pic32mx_appinit.c b/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_appinit.c index ac75651260a9e..bbd186f886472 100644 --- a/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_appinit.c +++ b/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/sure-pic32mx/src/pic32mx_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/mips/pic32mx/sure-pic32mx/src/pic32mx_autoleds.c b/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_autoleds.c index 3a59d5be9315e..b2919a5127baf 100644 --- a/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_autoleds.c +++ b/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_autoleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/sure-pic32mx/src/pic32mx_autoleds.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/mips/pic32mx/sure-pic32mx/src/pic32mx_boot.c b/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_boot.c index 6f472b391fbd1..9d126da4b704c 100644 --- a/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_boot.c +++ b/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/sure-pic32mx/src/pic32mx_boot.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/mips/pic32mx/sure-pic32mx/src/pic32mx_buttons.c b/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_buttons.c index d0ed9d4ba2350..2864b2223324b 100644 --- a/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_buttons.c +++ b/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/sure-pic32mx/src/pic32mx_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/mips/pic32mx/sure-pic32mx/src/pic32mx_lcd1602.c b/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_lcd1602.c index 40cdc26fa946f..2c97c86874e1d 100644 --- a/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_lcd1602.c +++ b/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_lcd1602.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/sure-pic32mx/src/pic32mx_lcd1602.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/mips/pic32mx/sure-pic32mx/src/pic32mx_spi.c b/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_spi.c index f7c22dca7b6a5..5e9d3a6fc90db 100644 --- a/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_spi.c +++ b/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/sure-pic32mx/src/pic32mx_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 diff --git a/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_usbdev.c b/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_usbdev.c index bd1a930b5de05..5f7cbf04ead00 100644 --- a/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_usbdev.c +++ b/boards/mips/pic32mx/sure-pic32mx/src/pic32mx_usbdev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/sure-pic32mx/src/pic32mx_usbdev.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/mips/pic32mx/sure-pic32mx/src/sure-pic32mx.h b/boards/mips/pic32mx/sure-pic32mx/src/sure-pic32mx.h index e1b6125603626..1ad04ea51c14e 100644 --- a/boards/mips/pic32mx/sure-pic32mx/src/sure-pic32mx.h +++ b/boards/mips/pic32mx/sure-pic32mx/src/sure-pic32mx.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/sure-pic32mx/src/sure-pic32mx.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/mips/pic32mx/ubw32/include/board.h b/boards/mips/pic32mx/ubw32/include/board.h index 3d4d34f7a16d9..f0c98e9682b74 100644 --- a/boards/mips/pic32mx/ubw32/include/board.h +++ b/boards/mips/pic32mx/ubw32/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/ubw32/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/mips/pic32mx/ubw32/scripts/Make.defs b/boards/mips/pic32mx/ubw32/scripts/Make.defs index 2f09e5ad2ef12..8571f2b660c66 100644 --- a/boards/mips/pic32mx/ubw32/scripts/Make.defs +++ b/boards/mips/pic32mx/ubw32/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/mips/pic32mx/ubw32/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/mips/pic32mx/ubw32/scripts/c32-release.ld b/boards/mips/pic32mx/ubw32/scripts/c32-release.ld index ff94f916bac78..1dc5419f0bd37 100644 --- a/boards/mips/pic32mx/ubw32/scripts/c32-release.ld +++ b/boards/mips/pic32mx/ubw32/scripts/c32-release.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/ubw32/scripts/c32-release.ld * + * 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/mips/pic32mx/ubw32/scripts/mips-release.ld b/boards/mips/pic32mx/ubw32/scripts/mips-release.ld index 6e002f7968efc..391560ee6b52e 100644 --- a/boards/mips/pic32mx/ubw32/scripts/mips-release.ld +++ b/boards/mips/pic32mx/ubw32/scripts/mips-release.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/ubw32/scripts/mips-release.ld * + * 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/mips/pic32mx/ubw32/scripts/pinguino-debug.ld b/boards/mips/pic32mx/ubw32/scripts/pinguino-debug.ld index a0fe39e2c929a..6f9e651e8898f 100644 --- a/boards/mips/pic32mx/ubw32/scripts/pinguino-debug.ld +++ b/boards/mips/pic32mx/ubw32/scripts/pinguino-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/ubw32/scripts/pinguino-debug.ld * + * 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/mips/pic32mx/ubw32/src/Makefile b/boards/mips/pic32mx/ubw32/src/Makefile index 5c423587a654f..e6ba5b6fdc944 100644 --- a/boards/mips/pic32mx/ubw32/src/Makefile +++ b/boards/mips/pic32mx/ubw32/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/mips/pic32mx/ubw32/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/mips/pic32mx/ubw32/src/pic32_appinit.c b/boards/mips/pic32mx/ubw32/src/pic32_appinit.c index adfa3d226f30b..fbdbc546b3f66 100644 --- a/boards/mips/pic32mx/ubw32/src/pic32_appinit.c +++ b/boards/mips/pic32mx/ubw32/src/pic32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/ubw32/src/pic32_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/mips/pic32mx/ubw32/src/pic32_boot.c b/boards/mips/pic32mx/ubw32/src/pic32_boot.c index 4b886b5ca6610..f119c6eaa1005 100644 --- a/boards/mips/pic32mx/ubw32/src/pic32_boot.c +++ b/boards/mips/pic32mx/ubw32/src/pic32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/ubw32/src/pic32_boot.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/mips/pic32mx/ubw32/src/pic32_buttons.c b/boards/mips/pic32mx/ubw32/src/pic32_buttons.c index 8bb936d81cfc6..067be58d75bb7 100644 --- a/boards/mips/pic32mx/ubw32/src/pic32_buttons.c +++ b/boards/mips/pic32mx/ubw32/src/pic32_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/ubw32/src/pic32_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/mips/pic32mx/ubw32/src/pic32_leds.c b/boards/mips/pic32mx/ubw32/src/pic32_leds.c index fae433edebd34..efc334a86e589 100644 --- a/boards/mips/pic32mx/ubw32/src/pic32_leds.c +++ b/boards/mips/pic32mx/ubw32/src/pic32_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/ubw32/src/pic32_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/mips/pic32mx/ubw32/src/pic32_usbdev.c b/boards/mips/pic32mx/ubw32/src/pic32_usbdev.c index 3ad908f656cfc..ee73542c0a33f 100644 --- a/boards/mips/pic32mx/ubw32/src/pic32_usbdev.c +++ b/boards/mips/pic32mx/ubw32/src/pic32_usbdev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/ubw32/src/pic32_usbdev.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/mips/pic32mx/ubw32/src/ubw32.h b/boards/mips/pic32mx/ubw32/src/ubw32.h index 9313b718cbf91..53730fd1ac7a5 100644 --- a/boards/mips/pic32mx/ubw32/src/ubw32.h +++ b/boards/mips/pic32mx/ubw32/src/ubw32.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mx/ubw32/src/ubw32.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 From 7756ef2e1a569c2354f01872d0014e6e95ec98cd Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 14:53:46 +0100 Subject: [PATCH 14/53] boards/mips/pic32mz: 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/mips/pic32mz/chipkit-wifire/include/board.h | 2 ++ boards/mips/pic32mz/chipkit-wifire/scripts/Make.defs | 2 ++ boards/mips/pic32mz/chipkit-wifire/scripts/c32-debug.ld | 2 ++ boards/mips/pic32mz/chipkit-wifire/scripts/mips-debug.ld | 2 ++ boards/mips/pic32mz/chipkit-wifire/scripts/pinguino-debug.ld | 2 ++ boards/mips/pic32mz/chipkit-wifire/scripts/sourcery-debug.ld | 2 ++ boards/mips/pic32mz/chipkit-wifire/scripts/xc32-debug.ld | 2 ++ boards/mips/pic32mz/chipkit-wifire/src/Makefile | 2 ++ boards/mips/pic32mz/chipkit-wifire/src/chipkit-wifire.h | 2 ++ boards/mips/pic32mz/chipkit-wifire/src/pic32mz_appinit.c | 2 ++ boards/mips/pic32mz/chipkit-wifire/src/pic32mz_autoleds.c | 2 ++ boards/mips/pic32mz/chipkit-wifire/src/pic32mz_boot.c | 2 ++ boards/mips/pic32mz/chipkit-wifire/src/pic32mz_bringup.c | 2 ++ boards/mips/pic32mz/chipkit-wifire/src/pic32mz_buttons.c | 2 ++ boards/mips/pic32mz/chipkit-wifire/src/pic32mz_spi.c | 2 ++ boards/mips/pic32mz/chipkit-wifire/src/pic32mz_userleds.c | 2 ++ boards/mips/pic32mz/flipnclick-pic32mz/include/board.h | 2 ++ boards/mips/pic32mz/flipnclick-pic32mz/scripts/Make.defs | 2 ++ boards/mips/pic32mz/flipnclick-pic32mz/scripts/c32-debug.ld | 2 ++ boards/mips/pic32mz/flipnclick-pic32mz/scripts/mips-debug.ld | 2 ++ .../mips/pic32mz/flipnclick-pic32mz/scripts/pinguino-debug.ld | 2 ++ boards/mips/pic32mz/flipnclick-pic32mz/scripts/xc32-debug.ld | 2 ++ boards/mips/pic32mz/flipnclick-pic32mz/src/Makefile | 2 ++ boards/mips/pic32mz/flipnclick-pic32mz/src/flipnclick-pic32mz.h | 2 ++ boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_appinit.c | 2 ++ boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_autoleds.c | 2 ++ boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_boot.c | 2 ++ boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_bringup.c | 2 ++ boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_buttons.c | 2 ++ boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_spi.c | 2 ++ boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_ssd1306.c | 2 ++ boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_userleds.c | 2 ++ boards/mips/pic32mz/pic32mz-starterkit/include/board.h | 2 ++ boards/mips/pic32mz/pic32mz-starterkit/scripts/Make.defs | 2 ++ boards/mips/pic32mz/pic32mz-starterkit/scripts/c32-debug.ld | 2 ++ boards/mips/pic32mz/pic32mz-starterkit/scripts/mips-debug.ld | 2 ++ .../mips/pic32mz/pic32mz-starterkit/scripts/pinguino-debug.ld | 2 ++ .../mips/pic32mz/pic32mz-starterkit/scripts/sourcery-debug.ld | 2 ++ boards/mips/pic32mz/pic32mz-starterkit/scripts/xc32-debug.ld | 2 ++ boards/mips/pic32mz/pic32mz-starterkit/src/Makefile | 2 ++ boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz-starterkit.h | 2 ++ boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_appinit.c | 2 ++ boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_autoleds.c | 2 ++ boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_boot.c | 2 ++ boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_bringup.c | 2 ++ boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_buttons.c | 2 ++ boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_spi.c | 2 ++ boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_userleds.c | 2 ++ 48 files changed, 96 insertions(+) diff --git a/boards/mips/pic32mz/chipkit-wifire/include/board.h b/boards/mips/pic32mz/chipkit-wifire/include/board.h index 744f795c29660..29c5f9acfd755 100644 --- a/boards/mips/pic32mz/chipkit-wifire/include/board.h +++ b/boards/mips/pic32mz/chipkit-wifire/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/chipkit-wifire/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/mips/pic32mz/chipkit-wifire/scripts/Make.defs b/boards/mips/pic32mz/chipkit-wifire/scripts/Make.defs index 7b43f0ceff0c4..7f72911327107 100644 --- a/boards/mips/pic32mz/chipkit-wifire/scripts/Make.defs +++ b/boards/mips/pic32mz/chipkit-wifire/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/mips/pic32mz/chipkit-wifire/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/mips/pic32mz/chipkit-wifire/scripts/c32-debug.ld b/boards/mips/pic32mz/chipkit-wifire/scripts/c32-debug.ld index 256a3c11b2f79..4e10526032c5a 100644 --- a/boards/mips/pic32mz/chipkit-wifire/scripts/c32-debug.ld +++ b/boards/mips/pic32mz/chipkit-wifire/scripts/c32-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/chipkit-wifire/scripts/c32-debug.ld * + * 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/mips/pic32mz/chipkit-wifire/scripts/mips-debug.ld b/boards/mips/pic32mz/chipkit-wifire/scripts/mips-debug.ld index 105eb4bc989ab..d7d8f79d4ef1b 100644 --- a/boards/mips/pic32mz/chipkit-wifire/scripts/mips-debug.ld +++ b/boards/mips/pic32mz/chipkit-wifire/scripts/mips-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/chipkit-wifire/scripts/mips-debug.ld * + * 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/mips/pic32mz/chipkit-wifire/scripts/pinguino-debug.ld b/boards/mips/pic32mz/chipkit-wifire/scripts/pinguino-debug.ld index 41d901892f191..5a71b86fd77fd 100644 --- a/boards/mips/pic32mz/chipkit-wifire/scripts/pinguino-debug.ld +++ b/boards/mips/pic32mz/chipkit-wifire/scripts/pinguino-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/chipkit-wifire/scripts/pinguino-debug.ld * + * 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/mips/pic32mz/chipkit-wifire/scripts/sourcery-debug.ld b/boards/mips/pic32mz/chipkit-wifire/scripts/sourcery-debug.ld index 81fcb06086f9e..1748cfb13ea30 100644 --- a/boards/mips/pic32mz/chipkit-wifire/scripts/sourcery-debug.ld +++ b/boards/mips/pic32mz/chipkit-wifire/scripts/sourcery-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/chipkit-wifire/scripts/sourcery-debug.ld * + * 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/mips/pic32mz/chipkit-wifire/scripts/xc32-debug.ld b/boards/mips/pic32mz/chipkit-wifire/scripts/xc32-debug.ld index 08b1b50dd9734..342af04107a94 100644 --- a/boards/mips/pic32mz/chipkit-wifire/scripts/xc32-debug.ld +++ b/boards/mips/pic32mz/chipkit-wifire/scripts/xc32-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/chipkit-wifire/scripts/mips-debug.ld * + * 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/mips/pic32mz/chipkit-wifire/src/Makefile b/boards/mips/pic32mz/chipkit-wifire/src/Makefile index f0e3ea77d231c..5d678cf013af7 100644 --- a/boards/mips/pic32mz/chipkit-wifire/src/Makefile +++ b/boards/mips/pic32mz/chipkit-wifire/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/mips/pic32mz/chipkit-wifire/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/mips/pic32mz/chipkit-wifire/src/chipkit-wifire.h b/boards/mips/pic32mz/chipkit-wifire/src/chipkit-wifire.h index f897e351e7be2..ca4e130476d02 100644 --- a/boards/mips/pic32mz/chipkit-wifire/src/chipkit-wifire.h +++ b/boards/mips/pic32mz/chipkit-wifire/src/chipkit-wifire.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/chipkit-wifire/src/chipkit-wifire.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/mips/pic32mz/chipkit-wifire/src/pic32mz_appinit.c b/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_appinit.c index d4ad704e9aabd..ce33b0c0320c8 100644 --- a/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_appinit.c +++ b/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/chipkit-wifire/src/pic32mz_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/mips/pic32mz/chipkit-wifire/src/pic32mz_autoleds.c b/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_autoleds.c index 64cf7f6082e11..baeda2b565005 100644 --- a/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_autoleds.c +++ b/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_autoleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/chipkit-wifire/src/pic32mz_autoleds.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/mips/pic32mz/chipkit-wifire/src/pic32mz_boot.c b/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_boot.c index 997885be407cf..cc3baface76fd 100644 --- a/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_boot.c +++ b/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/chipkit-wifire/src/pic32mz_boot.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/mips/pic32mz/chipkit-wifire/src/pic32mz_bringup.c b/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_bringup.c index 01bef61aed946..22bd33be8ec94 100644 --- a/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_bringup.c +++ b/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/chipkit-wifire/src/pic32mz_bringup.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/mips/pic32mz/chipkit-wifire/src/pic32mz_buttons.c b/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_buttons.c index 79993eec067a3..3245c64e16d4d 100644 --- a/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_buttons.c +++ b/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/chipkit-wifire/src/pic32mz_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/mips/pic32mz/chipkit-wifire/src/pic32mz_spi.c b/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_spi.c index 7645dd521d249..835c04aafc505 100644 --- a/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_spi.c +++ b/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/chipkit-wifire/src/pic32mz_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 diff --git a/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_userleds.c b/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_userleds.c index d53bd03fe1a8f..8a5512ae6ded5 100644 --- a/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_userleds.c +++ b/boards/mips/pic32mz/chipkit-wifire/src/pic32mz_userleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/chipkit-wifire/src/pic32mz_userleds.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/mips/pic32mz/flipnclick-pic32mz/include/board.h b/boards/mips/pic32mz/flipnclick-pic32mz/include/board.h index bf9cefd4e51ac..776edd0e1e791 100644 --- a/boards/mips/pic32mz/flipnclick-pic32mz/include/board.h +++ b/boards/mips/pic32mz/flipnclick-pic32mz/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/flipnclick-pic32mz/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/mips/pic32mz/flipnclick-pic32mz/scripts/Make.defs b/boards/mips/pic32mz/flipnclick-pic32mz/scripts/Make.defs index 481a798daabfc..00c13137066b0 100644 --- a/boards/mips/pic32mz/flipnclick-pic32mz/scripts/Make.defs +++ b/boards/mips/pic32mz/flipnclick-pic32mz/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/mips/pic32mz/flipnclick-pic32mz/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/mips/pic32mz/flipnclick-pic32mz/scripts/c32-debug.ld b/boards/mips/pic32mz/flipnclick-pic32mz/scripts/c32-debug.ld index 9349dbee8e66d..f88443a52f757 100644 --- a/boards/mips/pic32mz/flipnclick-pic32mz/scripts/c32-debug.ld +++ b/boards/mips/pic32mz/flipnclick-pic32mz/scripts/c32-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/flipnclick-pic32mz/scripts/c32-debug.ld * + * 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/mips/pic32mz/flipnclick-pic32mz/scripts/mips-debug.ld b/boards/mips/pic32mz/flipnclick-pic32mz/scripts/mips-debug.ld index 32ca3bf2a6f0d..1a5aff93fc36b 100644 --- a/boards/mips/pic32mz/flipnclick-pic32mz/scripts/mips-debug.ld +++ b/boards/mips/pic32mz/flipnclick-pic32mz/scripts/mips-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/flipnclick-pic32mz/scripts/mips-debug.ld * + * 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/mips/pic32mz/flipnclick-pic32mz/scripts/pinguino-debug.ld b/boards/mips/pic32mz/flipnclick-pic32mz/scripts/pinguino-debug.ld index 59c123b8782e0..6ef9e4875fd86 100644 --- a/boards/mips/pic32mz/flipnclick-pic32mz/scripts/pinguino-debug.ld +++ b/boards/mips/pic32mz/flipnclick-pic32mz/scripts/pinguino-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/flipnclick-pic32mz/scripts/pinguino-debug.ld * + * 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/mips/pic32mz/flipnclick-pic32mz/scripts/xc32-debug.ld b/boards/mips/pic32mz/flipnclick-pic32mz/scripts/xc32-debug.ld index b6314f7588699..89357e286387a 100644 --- a/boards/mips/pic32mz/flipnclick-pic32mz/scripts/xc32-debug.ld +++ b/boards/mips/pic32mz/flipnclick-pic32mz/scripts/xc32-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/flipnclick-pic32mz/scripts/xc32-debug.ld * + * 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/mips/pic32mz/flipnclick-pic32mz/src/Makefile b/boards/mips/pic32mz/flipnclick-pic32mz/src/Makefile index 12970920716a5..39147722ac6b1 100644 --- a/boards/mips/pic32mz/flipnclick-pic32mz/src/Makefile +++ b/boards/mips/pic32mz/flipnclick-pic32mz/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/mips/pic32mz/flipnclick-pic32mz/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/mips/pic32mz/flipnclick-pic32mz/src/flipnclick-pic32mz.h b/boards/mips/pic32mz/flipnclick-pic32mz/src/flipnclick-pic32mz.h index bd2745530bce8..2b6d743946327 100644 --- a/boards/mips/pic32mz/flipnclick-pic32mz/src/flipnclick-pic32mz.h +++ b/boards/mips/pic32mz/flipnclick-pic32mz/src/flipnclick-pic32mz.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/flipnclick-pic32mz/src/flipnclick-pic32mz.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/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_appinit.c b/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_appinit.c index e03904a2f25aa..5d9d8c74d1038 100644 --- a/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_appinit.c +++ b/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_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/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_autoleds.c b/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_autoleds.c index 3ab68a6c8bdf5..e4e9251522779 100644 --- a/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_autoleds.c +++ b/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_autoleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_autoleds.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/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_boot.c b/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_boot.c index 630db87763f75..943a19736bf2c 100644 --- a/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_boot.c +++ b/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_boot.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/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_bringup.c b/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_bringup.c index 40715b10b76b8..fc4dcb3c4faf2 100644 --- a/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_bringup.c +++ b/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_bringup.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/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_buttons.c b/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_buttons.c index 359b8bf1626e9..a5afb28cc3890 100644 --- a/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_buttons.c +++ b/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_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/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_spi.c b/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_spi.c index df3af5c1490fa..1ca2c4192d411 100644 --- a/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_spi.c +++ b/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_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 diff --git a/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_ssd1306.c b/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_ssd1306.c index ddadc30422032..4ebd6045014e5 100644 --- a/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_ssd1306.c +++ b/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_ssd1306.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_ssd1306.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/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_userleds.c b/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_userleds.c index 28426f18dc137..016db42b23a3a 100644 --- a/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_userleds.c +++ b/boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_userleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/flipnclick-pic32mz/src/pic32mz_userleds.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/mips/pic32mz/pic32mz-starterkit/include/board.h b/boards/mips/pic32mz/pic32mz-starterkit/include/board.h index 4abe406c88b31..b31c7c68042aa 100644 --- a/boards/mips/pic32mz/pic32mz-starterkit/include/board.h +++ b/boards/mips/pic32mz/pic32mz-starterkit/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/pic32mz-starterkit/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/mips/pic32mz/pic32mz-starterkit/scripts/Make.defs b/boards/mips/pic32mz/pic32mz-starterkit/scripts/Make.defs index 9a16cb657144b..a007e01b462fa 100644 --- a/boards/mips/pic32mz/pic32mz-starterkit/scripts/Make.defs +++ b/boards/mips/pic32mz/pic32mz-starterkit/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/mips/pic32mz/pic32mz-starterkit/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/mips/pic32mz/pic32mz-starterkit/scripts/c32-debug.ld b/boards/mips/pic32mz/pic32mz-starterkit/scripts/c32-debug.ld index 5614ef19208e4..c94500b432b61 100644 --- a/boards/mips/pic32mz/pic32mz-starterkit/scripts/c32-debug.ld +++ b/boards/mips/pic32mz/pic32mz-starterkit/scripts/c32-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/pic32mz-starterkit/scripts/c32-debug.ld * + * 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/mips/pic32mz/pic32mz-starterkit/scripts/mips-debug.ld b/boards/mips/pic32mz/pic32mz-starterkit/scripts/mips-debug.ld index c1c23caa4355b..5415382990491 100644 --- a/boards/mips/pic32mz/pic32mz-starterkit/scripts/mips-debug.ld +++ b/boards/mips/pic32mz/pic32mz-starterkit/scripts/mips-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/pic32mz-starterkit/scripts/mips-debug.ld * + * 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/mips/pic32mz/pic32mz-starterkit/scripts/pinguino-debug.ld b/boards/mips/pic32mz/pic32mz-starterkit/scripts/pinguino-debug.ld index 19fec4a1d72ce..354b89f90baea 100644 --- a/boards/mips/pic32mz/pic32mz-starterkit/scripts/pinguino-debug.ld +++ b/boards/mips/pic32mz/pic32mz-starterkit/scripts/pinguino-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/pic32mz-starterkit/scripts/pinguino-debug.ld * + * 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/mips/pic32mz/pic32mz-starterkit/scripts/sourcery-debug.ld b/boards/mips/pic32mz/pic32mz-starterkit/scripts/sourcery-debug.ld index 593abff2c5a56..46d9839d946e2 100644 --- a/boards/mips/pic32mz/pic32mz-starterkit/scripts/sourcery-debug.ld +++ b/boards/mips/pic32mz/pic32mz-starterkit/scripts/sourcery-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/pic32mz-starterkit/scripts/sourcery-debug.ld * + * 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/mips/pic32mz/pic32mz-starterkit/scripts/xc32-debug.ld b/boards/mips/pic32mz/pic32mz-starterkit/scripts/xc32-debug.ld index 5f3e87980d202..b59f7f2c8b338 100644 --- a/boards/mips/pic32mz/pic32mz-starterkit/scripts/xc32-debug.ld +++ b/boards/mips/pic32mz/pic32mz-starterkit/scripts/xc32-debug.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/pic32mz-starterkit/scripts/xc32-debug.ld * + * 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/mips/pic32mz/pic32mz-starterkit/src/Makefile b/boards/mips/pic32mz/pic32mz-starterkit/src/Makefile index bbb49bc9ef5b0..11ebe41977800 100644 --- a/boards/mips/pic32mz/pic32mz-starterkit/src/Makefile +++ b/boards/mips/pic32mz/pic32mz-starterkit/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/mips/pic32mz/pic32mz-starterkit/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/mips/pic32mz/pic32mz-starterkit/src/pic32mz-starterkit.h b/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz-starterkit.h index f59019328b7bc..377a4debb4d5c 100644 --- a/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz-starterkit.h +++ b/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz-starterkit.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz-starterkit.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/mips/pic32mz/pic32mz-starterkit/src/pic32mz_appinit.c b/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_appinit.c index 9f462b90ea143..9c8456e66eccf 100644 --- a/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_appinit.c +++ b/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_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/mips/pic32mz/pic32mz-starterkit/src/pic32mz_autoleds.c b/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_autoleds.c index 9b034bd0456a6..494f17c093566 100644 --- a/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_autoleds.c +++ b/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_autoleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_autoleds.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/mips/pic32mz/pic32mz-starterkit/src/pic32mz_boot.c b/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_boot.c index 7a3d05029ffef..7803768066ca0 100644 --- a/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_boot.c +++ b/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_boot.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/mips/pic32mz/pic32mz-starterkit/src/pic32mz_bringup.c b/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_bringup.c index f3f14fc9511b4..da7198c2436e4 100644 --- a/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_bringup.c +++ b/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_bringup.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/mips/pic32mz/pic32mz-starterkit/src/pic32mz_buttons.c b/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_buttons.c index a96d5878d4aab..359bdaf0f31c9 100644 --- a/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_buttons.c +++ b/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_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/mips/pic32mz/pic32mz-starterkit/src/pic32mz_spi.c b/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_spi.c index e0d8b47c16747..6962ae199c1dd 100644 --- a/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_spi.c +++ b/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_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 diff --git a/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_userleds.c b/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_userleds.c index 7c2a64d66a37a..0cb9144aeb42d 100644 --- a/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_userleds.c +++ b/boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_userleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/mips/pic32mz/pic32mz-starterkit/src/pic32mz_userleds.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 From ea3d86672606b76a900b5848c68815a10661c312 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 14:55:08 +0100 Subject: [PATCH 15/53] boards/misoc/lm32: 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/misoc/lm32/misoc/include/board.h | 2 ++ boards/misoc/lm32/misoc/scripts/Make.defs | 2 ++ boards/misoc/lm32/misoc/scripts/lm32.ld | 2 ++ boards/misoc/lm32/misoc/scripts/minerva.ld | 2 ++ boards/misoc/lm32/misoc/src/Makefile | 2 ++ boards/misoc/lm32/misoc/src/lm32_boot.c | 2 ++ boards/misoc/lm32/misoc/src/misoc.h | 2 ++ 7 files changed, 14 insertions(+) diff --git a/boards/misoc/lm32/misoc/include/board.h b/boards/misoc/lm32/misoc/include/board.h index d106761c02a18..e2a65464a9adf 100644 --- a/boards/misoc/lm32/misoc/include/board.h +++ b/boards/misoc/lm32/misoc/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/misoc/lm32/misoc/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/misoc/lm32/misoc/scripts/Make.defs b/boards/misoc/lm32/misoc/scripts/Make.defs index c2774c0430599..d01fbdf884039 100644 --- a/boards/misoc/lm32/misoc/scripts/Make.defs +++ b/boards/misoc/lm32/misoc/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/misoc/lm32/misoc/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/misoc/lm32/misoc/scripts/lm32.ld b/boards/misoc/lm32/misoc/scripts/lm32.ld index 031fe5d159236..d3dfcaadb0c17 100644 --- a/boards/misoc/lm32/misoc/scripts/lm32.ld +++ b/boards/misoc/lm32/misoc/scripts/lm32.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/misoc/lm32/misoc/scripts/lm32.ld * + * 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/misoc/lm32/misoc/scripts/minerva.ld b/boards/misoc/lm32/misoc/scripts/minerva.ld index 5b25caeb07e74..513fd079f9777 100644 --- a/boards/misoc/lm32/misoc/scripts/minerva.ld +++ b/boards/misoc/lm32/misoc/scripts/minerva.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/misoc/lm32/misoc/scripts/minerva.ld * + * 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/misoc/lm32/misoc/src/Makefile b/boards/misoc/lm32/misoc/src/Makefile index d7d0dfa0dc1c7..f43f2b1b65755 100644 --- a/boards/misoc/lm32/misoc/src/Makefile +++ b/boards/misoc/lm32/misoc/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/misoc/lm32/misoc/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/misoc/lm32/misoc/src/lm32_boot.c b/boards/misoc/lm32/misoc/src/lm32_boot.c index 2da57c7bcf049..36ca5f18dfb58 100644 --- a/boards/misoc/lm32/misoc/src/lm32_boot.c +++ b/boards/misoc/lm32/misoc/src/lm32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/misoc/lm32/misoc/src/lm32_boot.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/misoc/lm32/misoc/src/misoc.h b/boards/misoc/lm32/misoc/src/misoc.h index e275f441ee575..82fdb2a084909 100644 --- a/boards/misoc/lm32/misoc/src/misoc.h +++ b/boards/misoc/lm32/misoc/src/misoc.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/misoc/lm32/misoc/src/misoc.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 From cf37faafde02d175c3c37e74cb540dc27bf2c0b7 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 15:00:11 +0100 Subject: [PATCH 16/53] boards/or1k/mor1kx: 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/or1k/mor1kx/or1k/include/board.h | 2 ++ boards/or1k/mor1kx/or1k/scripts/Make.defs | 2 ++ boards/or1k/mor1kx/or1k/scripts/flash.ld | 2 ++ boards/or1k/mor1kx/or1k/src/Makefile | 2 ++ boards/or1k/mor1kx/or1k/src/or1k.h | 2 ++ boards/or1k/mor1kx/or1k/src/or1k_appinit.c | 2 ++ boards/or1k/mor1kx/or1k/src/or1k_autoled.c | 2 ++ boards/or1k/mor1kx/or1k/src/or1k_boot.c | 5 +++-- boards/or1k/mor1kx/or1k/src/or1k_bringup.c | 5 +++-- 9 files changed, 20 insertions(+), 4 deletions(-) diff --git a/boards/or1k/mor1kx/or1k/include/board.h b/boards/or1k/mor1kx/or1k/include/board.h index ed16a437de565..dd3dc764caad5 100644 --- a/boards/or1k/mor1kx/or1k/include/board.h +++ b/boards/or1k/mor1kx/or1k/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/or1k/mor1kx/or1k/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/or1k/mor1kx/or1k/scripts/Make.defs b/boards/or1k/mor1kx/or1k/scripts/Make.defs index 13fd5966ce240..6241cc1cb9cfa 100644 --- a/boards/or1k/mor1kx/or1k/scripts/Make.defs +++ b/boards/or1k/mor1kx/or1k/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/or1k/mor1kx/or1k/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/or1k/mor1kx/or1k/scripts/flash.ld b/boards/or1k/mor1kx/or1k/scripts/flash.ld index 033a86a103e18..ebbd66241bde5 100644 --- a/boards/or1k/mor1kx/or1k/scripts/flash.ld +++ b/boards/or1k/mor1kx/or1k/scripts/flash.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/or1k/mor1kx/or1k/scripts/flash.ld * + * 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/or1k/mor1kx/or1k/src/Makefile b/boards/or1k/mor1kx/or1k/src/Makefile index 3f7daeb6ce2fb..f921b9fccb495 100644 --- a/boards/or1k/mor1kx/or1k/src/Makefile +++ b/boards/or1k/mor1kx/or1k/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/or1k/mor1kx/or1k/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/or1k/mor1kx/or1k/src/or1k.h b/boards/or1k/mor1kx/or1k/src/or1k.h index 199179e3dc8ee..bb28cdd518285 100644 --- a/boards/or1k/mor1kx/or1k/src/or1k.h +++ b/boards/or1k/mor1kx/or1k/src/or1k.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/or1k/mor1kx/or1k/src/or1k.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/or1k/mor1kx/or1k/src/or1k_appinit.c b/boards/or1k/mor1kx/or1k/src/or1k_appinit.c index 773cbbffd754b..460967cd323b0 100644 --- a/boards/or1k/mor1kx/or1k/src/or1k_appinit.c +++ b/boards/or1k/mor1kx/or1k/src/or1k_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/or1k/mor1kx/or1k/src/or1k_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/or1k/mor1kx/or1k/src/or1k_autoled.c b/boards/or1k/mor1kx/or1k/src/or1k_autoled.c index 79ed13c4b12d0..f94571e633cdf 100644 --- a/boards/or1k/mor1kx/or1k/src/or1k_autoled.c +++ b/boards/or1k/mor1kx/or1k/src/or1k_autoled.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/or1k/mor1kx/or1k/src/or1k_autoled.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/or1k/mor1kx/or1k/src/or1k_boot.c b/boards/or1k/mor1kx/or1k/src/or1k_boot.c index 4181472505d5a..82e8c3c4d5d9d 100644 --- a/boards/or1k/mor1kx/or1k/src/or1k_boot.c +++ b/boards/or1k/mor1kx/or1k/src/or1k_boot.c @@ -1,8 +1,9 @@ /**************************************************************************** * boards/or1k/mor1kx/or1k/src/or1k_boot.c * - * Copyright (C) 2018 Extent3D. All rights reserved. - * Author: Matt Thompson + * SPDX-License-Identifier: BSD-3-Clause + * SPDX-FileCopyrightText: 2018 Extent3D. All rights reserved. + * SPDX-FileContributor: Matt Thompson * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/boards/or1k/mor1kx/or1k/src/or1k_bringup.c b/boards/or1k/mor1kx/or1k/src/or1k_bringup.c index f2fbcd0c018ed..bf40a6e3d51df 100644 --- a/boards/or1k/mor1kx/or1k/src/or1k_bringup.c +++ b/boards/or1k/mor1kx/or1k/src/or1k_bringup.c @@ -1,8 +1,9 @@ /**************************************************************************** * boards/or1k/mor1kx/or1k/src/or1k_bringup.c * - * Copyright (C) 2018 Extent3D. All rights reserved. - * Author: Matt Thompson + * SPDX-License-Identifier: BSD-3-Clause + * SPDX-FileCopyrightText: 2018 Extent3D. All rights reserved. + * SPDX-FileContributor: Matt Thompson * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions From 9cde66b97285c0477a045be6a0b6963bf2a6b664 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:04:09 +0100 Subject: [PATCH 17/53] boards/renesas/m16c: 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/renesas/m16c/skp16c26/include/board.h | 2 ++ boards/renesas/m16c/skp16c26/scripts/Make.defs | 2 ++ boards/renesas/m16c/skp16c26/scripts/skp16c26.ld | 2 ++ boards/renesas/m16c/skp16c26/src/Makefile | 2 ++ boards/renesas/m16c/skp16c26/src/m16c_buttons.c | 2 ++ boards/renesas/m16c/skp16c26/src/m16c_lcd.c | 2 ++ boards/renesas/m16c/skp16c26/src/m16c_lcdconsole.c | 2 ++ boards/renesas/m16c/skp16c26/src/m16c_leds.c | 2 ++ boards/renesas/m16c/skp16c26/src/skp16c26.h | 2 ++ 9 files changed, 18 insertions(+) diff --git a/boards/renesas/m16c/skp16c26/include/board.h b/boards/renesas/m16c/skp16c26/include/board.h index 0565d5f111096..8e6581dd393da 100644 --- a/boards/renesas/m16c/skp16c26/include/board.h +++ b/boards/renesas/m16c/skp16c26/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/m16c/skp16c26/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/renesas/m16c/skp16c26/scripts/Make.defs b/boards/renesas/m16c/skp16c26/scripts/Make.defs index 974805802ef05..941ab9815d434 100644 --- a/boards/renesas/m16c/skp16c26/scripts/Make.defs +++ b/boards/renesas/m16c/skp16c26/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/renesas/m16c/skp16c26/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/renesas/m16c/skp16c26/scripts/skp16c26.ld b/boards/renesas/m16c/skp16c26/scripts/skp16c26.ld index 7790b780cb62b..2cab1a60b83ee 100644 --- a/boards/renesas/m16c/skp16c26/scripts/skp16c26.ld +++ b/boards/renesas/m16c/skp16c26/scripts/skp16c26.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/m16c/skp16c26/scripts/skp16c26.ld * + * 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/renesas/m16c/skp16c26/src/Makefile b/boards/renesas/m16c/skp16c26/src/Makefile index 5b7bdbdfc98d7..cff672691c353 100644 --- a/boards/renesas/m16c/skp16c26/src/Makefile +++ b/boards/renesas/m16c/skp16c26/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/renesas/m16c/skp16c26/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/renesas/m16c/skp16c26/src/m16c_buttons.c b/boards/renesas/m16c/skp16c26/src/m16c_buttons.c index f8961c3add281..5a714e0485167 100644 --- a/boards/renesas/m16c/skp16c26/src/m16c_buttons.c +++ b/boards/renesas/m16c/skp16c26/src/m16c_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/m16c/skp16c26/src/m16c_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/renesas/m16c/skp16c26/src/m16c_lcd.c b/boards/renesas/m16c/skp16c26/src/m16c_lcd.c index 654a0604686a4..c17e85d5f0524 100644 --- a/boards/renesas/m16c/skp16c26/src/m16c_lcd.c +++ b/boards/renesas/m16c/skp16c26/src/m16c_lcd.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/m16c/skp16c26/src/m16c_lcd.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/renesas/m16c/skp16c26/src/m16c_lcdconsole.c b/boards/renesas/m16c/skp16c26/src/m16c_lcdconsole.c index 907e097ed365d..6beab3c534109 100644 --- a/boards/renesas/m16c/skp16c26/src/m16c_lcdconsole.c +++ b/boards/renesas/m16c/skp16c26/src/m16c_lcdconsole.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/m16c/skp16c26/src/m16c_lcdconsole.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/renesas/m16c/skp16c26/src/m16c_leds.c b/boards/renesas/m16c/skp16c26/src/m16c_leds.c index 4337a62303727..a79867a296a3a 100644 --- a/boards/renesas/m16c/skp16c26/src/m16c_leds.c +++ b/boards/renesas/m16c/skp16c26/src/m16c_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/m16c/skp16c26/src/m16c_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/renesas/m16c/skp16c26/src/skp16c26.h b/boards/renesas/m16c/skp16c26/src/skp16c26.h index 2c4fff2fae32f..d2985bc83e535 100644 --- a/boards/renesas/m16c/skp16c26/src/skp16c26.h +++ b/boards/renesas/m16c/skp16c26/src/skp16c26.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/m16c/skp16c26/src/skp16c26.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 From defd1cbaba3274c1a7224c879a88e8ce528c4f28 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:10:19 +0100 Subject: [PATCH 18/53] boards/renesas/rx65n: 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 --- .../rx65n/rx65n-grrose/include/board.h | 2 ++ .../rx65n/rx65n-grrose/include/rx65n_gpio.h | 2 ++ .../rx65n/rx65n-grrose/scripts/Make.defs | 2 ++ .../rx65n-grrose/scripts/linker_script.ld | 22 +++++++++++++++++++ .../renesas/rx65n/rx65n-grrose/src/Makefile | 2 ++ .../rx65n/rx65n-grrose/src/rx65n_appinit.c | 2 ++ .../rx65n/rx65n-grrose/src/rx65n_bringup.c | 2 ++ .../rx65n/rx65n-grrose/src/rx65n_gpio.c | 2 ++ .../rx65n/rx65n-grrose/src/rx65n_grrose.h | 2 ++ .../rx65n/rx65n-grrose/src/rx65n_sbram.c | 2 ++ .../rx65n/rx65n-rsk1mb/include/board.h | 2 ++ .../rx65n/rx65n-rsk1mb/include/rx65n_gpio.h | 2 ++ .../rx65n/rx65n-rsk1mb/scripts/Make.defs | 2 ++ .../rx65n-rsk1mb/scripts/linker_script.ld | 22 +++++++++++++++++++ .../renesas/rx65n/rx65n-rsk1mb/src/Makefile | 2 ++ .../rx65n/rx65n-rsk1mb/src/rx65n_gpio.c | 2 ++ .../rx65n/rx65n-rsk1mb/src/rx65n_main.c | 2 ++ .../rx65n/rx65n-rsk2mb/include/board.h | 2 ++ .../rx65n/rx65n-rsk2mb/include/rx65n_gpio.h | 2 ++ .../rx65n/rx65n-rsk2mb/scripts/Make.defs | 2 ++ .../rx65n-rsk2mb/scripts/linker_script.ld | 22 +++++++++++++++++++ .../renesas/rx65n/rx65n-rsk2mb/src/Makefile | 2 ++ .../rx65n/rx65n-rsk2mb/src/rx65n_appinit.c | 2 ++ .../rx65n/rx65n-rsk2mb/src/rx65n_bringup.c | 2 ++ .../rx65n/rx65n-rsk2mb/src/rx65n_gpio.c | 2 ++ .../rx65n/rx65n-rsk2mb/src/rx65n_rsk2mb.h | 2 ++ .../rx65n/rx65n-rsk2mb/src/rx65n_sbram.c | 2 ++ boards/renesas/rx65n/rx65n/include/board.h | 2 ++ boards/renesas/rx65n/rx65n/scripts/Make.defs | 2 ++ .../rx65n/rx65n/scripts/linker_script.ld | 22 +++++++++++++++++++ boards/renesas/rx65n/rx65n/src/Makefile | 2 ++ boards/renesas/rx65n/rx65n/src/rx65n_main.c | 2 ++ 32 files changed, 144 insertions(+) diff --git a/boards/renesas/rx65n/rx65n-grrose/include/board.h b/boards/renesas/rx65n/rx65n-grrose/include/board.h index 8b1aad632f76e..0b0c4cef8a6cb 100644 --- a/boards/renesas/rx65n/rx65n-grrose/include/board.h +++ b/boards/renesas/rx65n/rx65n-grrose/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-grrose/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/renesas/rx65n/rx65n-grrose/include/rx65n_gpio.h b/boards/renesas/rx65n/rx65n-grrose/include/rx65n_gpio.h index e369fbb497e67..7992d532d1b6f 100644 --- a/boards/renesas/rx65n/rx65n-grrose/include/rx65n_gpio.h +++ b/boards/renesas/rx65n/rx65n-grrose/include/rx65n_gpio.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-grrose/include/rx65n_gpio.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/renesas/rx65n/rx65n-grrose/scripts/Make.defs b/boards/renesas/rx65n/rx65n-grrose/scripts/Make.defs index ee1de7af73186..2e8c829410616 100644 --- a/boards/renesas/rx65n/rx65n-grrose/scripts/Make.defs +++ b/boards/renesas/rx65n/rx65n-grrose/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################## # boards/renesas/rx65n/rx65n-grrose/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/renesas/rx65n/rx65n-grrose/scripts/linker_script.ld b/boards/renesas/rx65n/rx65n-grrose/scripts/linker_script.ld index abacece525da4..fcb83519378d9 100644 --- a/boards/renesas/rx65n/rx65n-grrose/scripts/linker_script.ld +++ b/boards/renesas/rx65n/rx65n-grrose/scripts/linker_script.ld @@ -1,3 +1,25 @@ +/**************************************************************************** + * boards/renesas/rx65n/rx65n-grrose/scripts/linker_script.ld + * + * 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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + MEMORY { /* RSK-RX65N-1MB */ diff --git a/boards/renesas/rx65n/rx65n-grrose/src/Makefile b/boards/renesas/rx65n/rx65n-grrose/src/Makefile index d0806ddaec42b..a20bfbd386bc0 100644 --- a/boards/renesas/rx65n/rx65n-grrose/src/Makefile +++ b/boards/renesas/rx65n/rx65n-grrose/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/renesas/rx65n/rx65n-grrose/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/renesas/rx65n/rx65n-grrose/src/rx65n_appinit.c b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_appinit.c index a26b2abf8480a..5fb04586b1091 100644 --- a/boards/renesas/rx65n/rx65n-grrose/src/rx65n_appinit.c +++ b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-grrose/src/rx65n_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/renesas/rx65n/rx65n-grrose/src/rx65n_bringup.c b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_bringup.c index ec65f351ba7fe..23c490a4b9c2b 100644 --- a/boards/renesas/rx65n/rx65n-grrose/src/rx65n_bringup.c +++ b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-grrose/src/rx65n_bringup.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/renesas/rx65n/rx65n-grrose/src/rx65n_gpio.c b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_gpio.c index 60a373075fefc..ad3563ce80d87 100644 --- a/boards/renesas/rx65n/rx65n-grrose/src/rx65n_gpio.c +++ b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-grrose/src/rx65n_gpio.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/renesas/rx65n/rx65n-grrose/src/rx65n_grrose.h b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_grrose.h index 7391c58e7a04a..55391ef6d2511 100644 --- a/boards/renesas/rx65n/rx65n-grrose/src/rx65n_grrose.h +++ b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_grrose.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-grrose/src/rx65n_grrose.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/renesas/rx65n/rx65n-grrose/src/rx65n_sbram.c b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_sbram.c index 601e228567688..5b780012f2f9d 100644 --- a/boards/renesas/rx65n/rx65n-grrose/src/rx65n_sbram.c +++ b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_sbram.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-grrose/src/rx65n_sbram.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/renesas/rx65n/rx65n-rsk1mb/include/board.h b/boards/renesas/rx65n/rx65n-rsk1mb/include/board.h index 8c1d08590322a..83ae90fe4bfb0 100644 --- a/boards/renesas/rx65n/rx65n-rsk1mb/include/board.h +++ b/boards/renesas/rx65n/rx65n-rsk1mb/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk1mb/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/renesas/rx65n/rx65n-rsk1mb/include/rx65n_gpio.h b/boards/renesas/rx65n/rx65n-rsk1mb/include/rx65n_gpio.h index c45fd804396de..f53aeec7de76b 100644 --- a/boards/renesas/rx65n/rx65n-rsk1mb/include/rx65n_gpio.h +++ b/boards/renesas/rx65n/rx65n-rsk1mb/include/rx65n_gpio.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk1mb/include/rx65n_gpio.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/renesas/rx65n/rx65n-rsk1mb/scripts/Make.defs b/boards/renesas/rx65n/rx65n-rsk1mb/scripts/Make.defs index bd34503a35a25..2fa4ec830b924 100644 --- a/boards/renesas/rx65n/rx65n-rsk1mb/scripts/Make.defs +++ b/boards/renesas/rx65n/rx65n-rsk1mb/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################## # boards/renesas/rx65n/rx65n-rsk1mb/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/renesas/rx65n/rx65n-rsk1mb/scripts/linker_script.ld b/boards/renesas/rx65n/rx65n-rsk1mb/scripts/linker_script.ld index cd125920d32ec..571b8d0b60f2b 100644 --- a/boards/renesas/rx65n/rx65n-rsk1mb/scripts/linker_script.ld +++ b/boards/renesas/rx65n/rx65n-rsk1mb/scripts/linker_script.ld @@ -1,3 +1,25 @@ +/**************************************************************************** + * boards/renesas/rx65n/rx65n-rsk1mb/scripts/linker_script.ld + * + * 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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + MEMORY { /* RSK-RX65N-1MB */ diff --git a/boards/renesas/rx65n/rx65n-rsk1mb/src/Makefile b/boards/renesas/rx65n/rx65n-rsk1mb/src/Makefile index dedf0a6d745e2..e065ba36c59d0 100644 --- a/boards/renesas/rx65n/rx65n-rsk1mb/src/Makefile +++ b/boards/renesas/rx65n/rx65n-rsk1mb/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/renesas/rx65n/rx65n-rsk1mb/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/renesas/rx65n/rx65n-rsk1mb/src/rx65n_gpio.c b/boards/renesas/rx65n/rx65n-rsk1mb/src/rx65n_gpio.c index 60c33307cb9b7..f15eb0ccb0f8f 100644 --- a/boards/renesas/rx65n/rx65n-rsk1mb/src/rx65n_gpio.c +++ b/boards/renesas/rx65n/rx65n-rsk1mb/src/rx65n_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk1mb/src/rx65n_gpio.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/renesas/rx65n/rx65n-rsk1mb/src/rx65n_main.c b/boards/renesas/rx65n/rx65n-rsk1mb/src/rx65n_main.c index f030932ef6535..b48b917d4d2fa 100644 --- a/boards/renesas/rx65n/rx65n-rsk1mb/src/rx65n_main.c +++ b/boards/renesas/rx65n/rx65n-rsk1mb/src/rx65n_main.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk1mb/src/rx65n_main.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/renesas/rx65n/rx65n-rsk2mb/include/board.h b/boards/renesas/rx65n/rx65n-rsk2mb/include/board.h index 6d2237b10341e..2dbc8cfcae69d 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/include/board.h +++ b/boards/renesas/rx65n/rx65n-rsk2mb/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk2mb/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/renesas/rx65n/rx65n-rsk2mb/include/rx65n_gpio.h b/boards/renesas/rx65n/rx65n-rsk2mb/include/rx65n_gpio.h index f7b0b9374f43e..15763490ecb6e 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/include/rx65n_gpio.h +++ b/boards/renesas/rx65n/rx65n-rsk2mb/include/rx65n_gpio.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk2mb/include/rx65n_gpio.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/renesas/rx65n/rx65n-rsk2mb/scripts/Make.defs b/boards/renesas/rx65n/rx65n-rsk2mb/scripts/Make.defs index bfce3dac3fa43..1e332e6f330cd 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/scripts/Make.defs +++ b/boards/renesas/rx65n/rx65n-rsk2mb/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################## # boards/renesas/rx65n/rx65n-rsk2mb/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/renesas/rx65n/rx65n-rsk2mb/scripts/linker_script.ld b/boards/renesas/rx65n/rx65n-rsk2mb/scripts/linker_script.ld index 6db40f54af12a..ff94a9239afd2 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/scripts/linker_script.ld +++ b/boards/renesas/rx65n/rx65n-rsk2mb/scripts/linker_script.ld @@ -1,3 +1,25 @@ +/**************************************************************************** + * boards/renesas/rx65n/rx65n-rsk2mb/scripts/linker_script.ld + * + * 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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + MEMORY { /* RSK-RX65N-1MB */ diff --git a/boards/renesas/rx65n/rx65n-rsk2mb/src/Makefile b/boards/renesas/rx65n/rx65n-rsk2mb/src/Makefile index e899fcc9d2d81..11ab5c5517050 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/src/Makefile +++ b/boards/renesas/rx65n/rx65n-rsk2mb/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/renesas/rx65n/rx65n-rsk2mb/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/renesas/rx65n/rx65n-rsk2mb/src/rx65n_appinit.c b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_appinit.c index 212e827a9e360..9f68f6e17460f 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_appinit.c +++ b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_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/renesas/rx65n/rx65n-rsk2mb/src/rx65n_bringup.c b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_bringup.c index 4c251aa97aed8..bead9393d7cbe 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_bringup.c +++ b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_bringup.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/renesas/rx65n/rx65n-rsk2mb/src/rx65n_gpio.c b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_gpio.c index bd374102e513f..57fc10389b98d 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_gpio.c +++ b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_gpio.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/renesas/rx65n/rx65n-rsk2mb/src/rx65n_rsk2mb.h b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_rsk2mb.h index 14aa391f76c93..c3e69b36ac8df 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_rsk2mb.h +++ b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_rsk2mb.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_rsk2mb.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/renesas/rx65n/rx65n-rsk2mb/src/rx65n_sbram.c b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_sbram.c index 1925632a4b220..6d8ca733d562b 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_sbram.c +++ b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_sbram.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_sbram.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/renesas/rx65n/rx65n/include/board.h b/boards/renesas/rx65n/rx65n/include/board.h index b07dbbfaa59cd..8b7bb0e36f12f 100644 --- a/boards/renesas/rx65n/rx65n/include/board.h +++ b/boards/renesas/rx65n/rx65n/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n/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/renesas/rx65n/rx65n/scripts/Make.defs b/boards/renesas/rx65n/rx65n/scripts/Make.defs index acc92fd4a25df..2bc971e7cccbb 100644 --- a/boards/renesas/rx65n/rx65n/scripts/Make.defs +++ b/boards/renesas/rx65n/rx65n/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################## # boards/renesas/rx65n/rx65n/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/renesas/rx65n/rx65n/scripts/linker_script.ld b/boards/renesas/rx65n/rx65n/scripts/linker_script.ld index ba69dbc221bc5..19dac533d4da0 100644 --- a/boards/renesas/rx65n/rx65n/scripts/linker_script.ld +++ b/boards/renesas/rx65n/rx65n/scripts/linker_script.ld @@ -1,3 +1,25 @@ +/**************************************************************************** + * boards/renesas/rx65n/rx65n/scripts/linker_script.ld + * + * 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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + MEMORY { /* RSK-RX65N-1MB */ diff --git a/boards/renesas/rx65n/rx65n/src/Makefile b/boards/renesas/rx65n/rx65n/src/Makefile index 11d71b02cc1c3..0cdd1f61bf589 100644 --- a/boards/renesas/rx65n/rx65n/src/Makefile +++ b/boards/renesas/rx65n/rx65n/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/renesas/rx65n/rx65n/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/renesas/rx65n/rx65n/src/rx65n_main.c b/boards/renesas/rx65n/rx65n/src/rx65n_main.c index 699a8a00c4e36..18eac9d4c826a 100644 --- a/boards/renesas/rx65n/rx65n/src/rx65n_main.c +++ b/boards/renesas/rx65n/rx65n/src/rx65n_main.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n/src/rx65n_main.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 From 5cd981f4c58ef8daf2bfb6015d213c3fccb5e650 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:12:59 +0100 Subject: [PATCH 19/53] boards/renesas/sh1: 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/renesas/sh1/us7032evb1/include/board.h | 2 ++ boards/renesas/sh1/us7032evb1/scripts/Make.defs | 2 ++ boards/renesas/sh1/us7032evb1/scripts/sram.ld | 2 ++ boards/renesas/sh1/us7032evb1/shterm/Makefile | 2 ++ boards/renesas/sh1/us7032evb1/shterm/shterm.c | 2 ++ boards/renesas/sh1/us7032evb1/src/Makefile | 2 ++ boards/renesas/sh1/us7032evb1/src/sh1_leds.c | 2 ++ 7 files changed, 14 insertions(+) diff --git a/boards/renesas/sh1/us7032evb1/include/board.h b/boards/renesas/sh1/us7032evb1/include/board.h index e4d068ae04ca2..d79fbb6a8477f 100644 --- a/boards/renesas/sh1/us7032evb1/include/board.h +++ b/boards/renesas/sh1/us7032evb1/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/sh1/us7032evb1/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/renesas/sh1/us7032evb1/scripts/Make.defs b/boards/renesas/sh1/us7032evb1/scripts/Make.defs index efa8839d8081c..228402386038e 100644 --- a/boards/renesas/sh1/us7032evb1/scripts/Make.defs +++ b/boards/renesas/sh1/us7032evb1/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################## # boards/renesas/sh1/us7032evb1/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/renesas/sh1/us7032evb1/scripts/sram.ld b/boards/renesas/sh1/us7032evb1/scripts/sram.ld index 60a4e79684a6c..54172946eeb95 100644 --- a/boards/renesas/sh1/us7032evb1/scripts/sram.ld +++ b/boards/renesas/sh1/us7032evb1/scripts/sram.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/sh1/us7032evb1/scripts/sram.ld * + * 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/renesas/sh1/us7032evb1/shterm/Makefile b/boards/renesas/sh1/us7032evb1/shterm/Makefile index ee32e23afd010..31dc6217d46b5 100644 --- a/boards/renesas/sh1/us7032evb1/shterm/Makefile +++ b/boards/renesas/sh1/us7032evb1/shterm/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/renesas/sh1/us7032evb1/shterm/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/renesas/sh1/us7032evb1/shterm/shterm.c b/boards/renesas/sh1/us7032evb1/shterm/shterm.c index 2fcb525e58624..23f8f331d00e3 100644 --- a/boards/renesas/sh1/us7032evb1/shterm/shterm.c +++ b/boards/renesas/sh1/us7032evb1/shterm/shterm.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/sh1/us7032evb1/shterm/shterm.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/renesas/sh1/us7032evb1/src/Makefile b/boards/renesas/sh1/us7032evb1/src/Makefile index 05d553e55b239..cde236a755424 100644 --- a/boards/renesas/sh1/us7032evb1/src/Makefile +++ b/boards/renesas/sh1/us7032evb1/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/renesas/sh1/us7032evb1/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/renesas/sh1/us7032evb1/src/sh1_leds.c b/boards/renesas/sh1/us7032evb1/src/sh1_leds.c index be058b4abc71f..9c8e2200a7959 100644 --- a/boards/renesas/sh1/us7032evb1/src/sh1_leds.c +++ b/boards/renesas/sh1/us7032evb1/src/sh1_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/sh1/us7032evb1/src/sh1_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 From 3810ce9d62721be84148f6ca7f1b2d8b407a5a89 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:14:31 +0100 Subject: [PATCH 20/53] boards/risk-v/bl602: 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/risc-v/bl602/bl602evb/include/board.h | 2 ++ .../risc-v/bl602/bl602evb/scripts/Make.defs | 2 ++ .../risc-v/bl602/bl602evb/scripts/ld.script | 22 +++++++++++++++++++ boards/risc-v/bl602/bl602evb/src/Makefile | 2 ++ .../risc-v/bl602/bl602evb/src/bl602_appinit.c | 2 ++ boards/risc-v/bl602/bl602evb/src/bl602_boot.c | 2 ++ .../risc-v/bl602/bl602evb/src/bl602_bringup.c | 2 ++ boards/risc-v/bl602/bl602evb/src/bl602_gpio.c | 2 ++ .../risc-v/bl602/bl602evb/src/bl602_reset.c | 2 ++ boards/risc-v/bl602/bl602evb/src/bl602evb.h | 2 ++ 10 files changed, 40 insertions(+) diff --git a/boards/risc-v/bl602/bl602evb/include/board.h b/boards/risc-v/bl602/bl602evb/include/board.h index 538e8c3089c23..a9ceafe0365ac 100644 --- a/boards/risc-v/bl602/bl602evb/include/board.h +++ b/boards/risc-v/bl602/bl602evb/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/bl602/bl602evb/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/risc-v/bl602/bl602evb/scripts/Make.defs b/boards/risc-v/bl602/bl602evb/scripts/Make.defs index e12b530e89fa9..f431ac7cafaa2 100644 --- a/boards/risc-v/bl602/bl602evb/scripts/Make.defs +++ b/boards/risc-v/bl602/bl602evb/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/bl602/bl602evb/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/risc-v/bl602/bl602evb/scripts/ld.script b/boards/risc-v/bl602/bl602evb/scripts/ld.script index bd305f9122eaf..a9353c5d100f1 100644 --- a/boards/risc-v/bl602/bl602evb/scripts/ld.script +++ b/boards/risc-v/bl602/bl602evb/scripts/ld.script @@ -1,3 +1,25 @@ +/**************************************************************************** + * boards/risc-v/bl602/bl602evb/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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + OUTPUT_ARCH( "riscv" ) ENTRY( bl602_start ) diff --git a/boards/risc-v/bl602/bl602evb/src/Makefile b/boards/risc-v/bl602/bl602evb/src/Makefile index 8cfa6cee6375c..e2b99e65ecac2 100644 --- a/boards/risc-v/bl602/bl602evb/src/Makefile +++ b/boards/risc-v/bl602/bl602evb/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/bl602/bl602evb/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/risc-v/bl602/bl602evb/src/bl602_appinit.c b/boards/risc-v/bl602/bl602evb/src/bl602_appinit.c index e9544b41a5248..6bb65101a38ff 100644 --- a/boards/risc-v/bl602/bl602evb/src/bl602_appinit.c +++ b/boards/risc-v/bl602/bl602evb/src/bl602_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/bl602/bl602evb/src/bl602_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/risc-v/bl602/bl602evb/src/bl602_boot.c b/boards/risc-v/bl602/bl602evb/src/bl602_boot.c index e5df204ec15c4..699742bcc7e6a 100644 --- a/boards/risc-v/bl602/bl602evb/src/bl602_boot.c +++ b/boards/risc-v/bl602/bl602evb/src/bl602_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/bl602/bl602evb/src/bl602_boot.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/risc-v/bl602/bl602evb/src/bl602_bringup.c b/boards/risc-v/bl602/bl602evb/src/bl602_bringup.c index 34482a7e978c1..ec2b2437c3e2f 100644 --- a/boards/risc-v/bl602/bl602evb/src/bl602_bringup.c +++ b/boards/risc-v/bl602/bl602evb/src/bl602_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/bl602/bl602evb/src/bl602_bringup.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/risc-v/bl602/bl602evb/src/bl602_gpio.c b/boards/risc-v/bl602/bl602evb/src/bl602_gpio.c index 285d6ae4063e4..336b6cbfcf799 100644 --- a/boards/risc-v/bl602/bl602evb/src/bl602_gpio.c +++ b/boards/risc-v/bl602/bl602evb/src/bl602_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/bl602/bl602evb/src/bl602_gpio.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/risc-v/bl602/bl602evb/src/bl602_reset.c b/boards/risc-v/bl602/bl602evb/src/bl602_reset.c index 9005ec982a033..64cdcf476db96 100644 --- a/boards/risc-v/bl602/bl602evb/src/bl602_reset.c +++ b/boards/risc-v/bl602/bl602evb/src/bl602_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/bl602/bl602evb/src/bl602_reset.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/risc-v/bl602/bl602evb/src/bl602evb.h b/boards/risc-v/bl602/bl602evb/src/bl602evb.h index d58c1a7ce852c..3069ddff4c2e0 100644 --- a/boards/risc-v/bl602/bl602evb/src/bl602evb.h +++ b/boards/risc-v/bl602/bl602evb/src/bl602evb.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/bl602/bl602evb/src/bl602evb.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 From fd295ca4859632a19a3a13000ee20e5e997e0d73 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:17:24 +0100 Subject: [PATCH 21/53] boards/risk-v/bl808: 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/risc-v/bl808/ox64/include/board.h | 2 ++ boards/risc-v/bl808/ox64/include/board_memorymap.h | 2 ++ boards/risc-v/bl808/ox64/scripts/Make.defs | 2 ++ boards/risc-v/bl808/ox64/scripts/ld.script | 2 ++ boards/risc-v/bl808/ox64/src/Makefile | 2 ++ boards/risc-v/bl808/ox64/src/bl808_appinit.c | 2 ++ boards/risc-v/bl808/ox64/src/bl808_autoleds.c | 2 ++ boards/risc-v/bl808/ox64/src/bl808_userleds.c | 2 ++ boards/risc-v/bl808/ox64/src/etc/init.d/rc.sysinit | 2 ++ boards/risc-v/bl808/ox64/src/etc/init.d/rcS | 2 ++ 10 files changed, 20 insertions(+) diff --git a/boards/risc-v/bl808/ox64/include/board.h b/boards/risc-v/bl808/ox64/include/board.h index de6e2201f7767..7277cc2115497 100644 --- a/boards/risc-v/bl808/ox64/include/board.h +++ b/boards/risc-v/bl808/ox64/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/bl808/ox64/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/risc-v/bl808/ox64/include/board_memorymap.h b/boards/risc-v/bl808/ox64/include/board_memorymap.h index 5221fb7847142..8969b9f8164cd 100644 --- a/boards/risc-v/bl808/ox64/include/board_memorymap.h +++ b/boards/risc-v/bl808/ox64/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/bl808/ox64/include/board_memorymap.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/risc-v/bl808/ox64/scripts/Make.defs b/boards/risc-v/bl808/ox64/scripts/Make.defs index 35d0b89981404..3f58d8d898f7e 100644 --- a/boards/risc-v/bl808/ox64/scripts/Make.defs +++ b/boards/risc-v/bl808/ox64/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/bl808/ox64/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/risc-v/bl808/ox64/scripts/ld.script b/boards/risc-v/bl808/ox64/scripts/ld.script index e47b594ff0ab1..56d57fe28a294 100644 --- a/boards/risc-v/bl808/ox64/scripts/ld.script +++ b/boards/risc-v/bl808/ox64/scripts/ld.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/bl808/ox64/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/risc-v/bl808/ox64/src/Makefile b/boards/risc-v/bl808/ox64/src/Makefile index 3b072df342723..4ab1d24e3a12b 100644 --- a/boards/risc-v/bl808/ox64/src/Makefile +++ b/boards/risc-v/bl808/ox64/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/bl808/ox64/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/risc-v/bl808/ox64/src/bl808_appinit.c b/boards/risc-v/bl808/ox64/src/bl808_appinit.c index 681219595db18..0f99a265cfe1e 100644 --- a/boards/risc-v/bl808/ox64/src/bl808_appinit.c +++ b/boards/risc-v/bl808/ox64/src/bl808_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/bl808/ox64/src/bl808_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/risc-v/bl808/ox64/src/bl808_autoleds.c b/boards/risc-v/bl808/ox64/src/bl808_autoleds.c index 0751191e6acf6..d9caf13a5f54b 100644 --- a/boards/risc-v/bl808/ox64/src/bl808_autoleds.c +++ b/boards/risc-v/bl808/ox64/src/bl808_autoleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/bl808/ox64/src/bl808_autoleds.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/risc-v/bl808/ox64/src/bl808_userleds.c b/boards/risc-v/bl808/ox64/src/bl808_userleds.c index 3aacc09db69e0..a52b0941078b9 100644 --- a/boards/risc-v/bl808/ox64/src/bl808_userleds.c +++ b/boards/risc-v/bl808/ox64/src/bl808_userleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/bl808/ox64/src/bl808_userleds.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/risc-v/bl808/ox64/src/etc/init.d/rc.sysinit b/boards/risc-v/bl808/ox64/src/etc/init.d/rc.sysinit index ab47deb7470c1..5bfe50a199a6b 100644 --- a/boards/risc-v/bl808/ox64/src/etc/init.d/rc.sysinit +++ b/boards/risc-v/bl808/ox64/src/etc/init.d/rc.sysinit @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/bl808/ox64/src/etc/init.d/rc.sysinit * + * 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/risc-v/bl808/ox64/src/etc/init.d/rcS b/boards/risc-v/bl808/ox64/src/etc/init.d/rcS index 6651c257d2c36..51bd07df9a645 100644 --- a/boards/risc-v/bl808/ox64/src/etc/init.d/rcS +++ b/boards/risc-v/bl808/ox64/src/etc/init.d/rcS @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/bl808/ox64/src/etc/init.d/rcS * + * 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 From 1bf5678a510363cb2bf5b511413cf393f9638c9f Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:19:22 +0100 Subject: [PATCH 22/53] boards/risk-v/c906: 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/risc-v/c906/smartl-c906/include/board.h | 2 ++ boards/risc-v/c906/smartl-c906/kernel/Makefile | 2 ++ boards/risc-v/c906/smartl-c906/kernel/c906_userspace.c | 2 ++ boards/risc-v/c906/smartl-c906/scripts/Make.defs | 2 ++ boards/risc-v/c906/smartl-c906/scripts/ld-qemu.script | 2 ++ boards/risc-v/c906/smartl-c906/scripts/ld.script | 2 ++ boards/risc-v/c906/smartl-c906/scripts/memory-qemu.ld | 2 ++ boards/risc-v/c906/smartl-c906/scripts/memory.ld | 2 ++ boards/risc-v/c906/smartl-c906/scripts/user-space.ld | 2 ++ boards/risc-v/c906/smartl-c906/src/Makefile | 2 ++ boards/risc-v/c906/smartl-c906/src/c906_appinit.c | 2 ++ boards/risc-v/c906/smartl-c906/src/c906_boot.c | 2 ++ boards/risc-v/c906/smartl-c906/src/c906_bringup.c | 2 ++ boards/risc-v/c906/smartl-c906/src/c906_leds.c | 2 ++ boards/risc-v/c906/smartl-c906/src/smartl-c906.h | 2 ++ 15 files changed, 30 insertions(+) diff --git a/boards/risc-v/c906/smartl-c906/include/board.h b/boards/risc-v/c906/smartl-c906/include/board.h index 8c6c0522b6c52..12eb9507a029f 100644 --- a/boards/risc-v/c906/smartl-c906/include/board.h +++ b/boards/risc-v/c906/smartl-c906/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/c906/smartl-c906/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/risc-v/c906/smartl-c906/kernel/Makefile b/boards/risc-v/c906/smartl-c906/kernel/Makefile index 9da36f4eee988..f735b3336de1b 100644 --- a/boards/risc-v/c906/smartl-c906/kernel/Makefile +++ b/boards/risc-v/c906/smartl-c906/kernel/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/c906/smartl-c906/kernel/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/risc-v/c906/smartl-c906/kernel/c906_userspace.c b/boards/risc-v/c906/smartl-c906/kernel/c906_userspace.c index a39c074a77dd6..15475fa43a280 100644 --- a/boards/risc-v/c906/smartl-c906/kernel/c906_userspace.c +++ b/boards/risc-v/c906/smartl-c906/kernel/c906_userspace.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/c906/smartl-c906/kernel/c906_userspace.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/risc-v/c906/smartl-c906/scripts/Make.defs b/boards/risc-v/c906/smartl-c906/scripts/Make.defs index 3765d4e7b4357..7e9cfffeb3e86 100644 --- a/boards/risc-v/c906/smartl-c906/scripts/Make.defs +++ b/boards/risc-v/c906/smartl-c906/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/c906/smartl-c906/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/risc-v/c906/smartl-c906/scripts/ld-qemu.script b/boards/risc-v/c906/smartl-c906/scripts/ld-qemu.script index a18adfb3c72e4..cc49d54a9f044 100644 --- a/boards/risc-v/c906/smartl-c906/scripts/ld-qemu.script +++ b/boards/risc-v/c906/smartl-c906/scripts/ld-qemu.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/c906/smartl-c906/scripts/ld-qemu.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/risc-v/c906/smartl-c906/scripts/ld.script b/boards/risc-v/c906/smartl-c906/scripts/ld.script index 262979363ba5d..c16743c1ac371 100644 --- a/boards/risc-v/c906/smartl-c906/scripts/ld.script +++ b/boards/risc-v/c906/smartl-c906/scripts/ld.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/c906/smartl-c906/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/risc-v/c906/smartl-c906/scripts/memory-qemu.ld b/boards/risc-v/c906/smartl-c906/scripts/memory-qemu.ld index 560143b1030f7..cd3dd11050948 100644 --- a/boards/risc-v/c906/smartl-c906/scripts/memory-qemu.ld +++ b/boards/risc-v/c906/smartl-c906/scripts/memory-qemu.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/c906/smartl-c906/scripts/memory-qemu.ld * + * 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/risc-v/c906/smartl-c906/scripts/memory.ld b/boards/risc-v/c906/smartl-c906/scripts/memory.ld index e40dd0384c5eb..8b0a7c649af01 100644 --- a/boards/risc-v/c906/smartl-c906/scripts/memory.ld +++ b/boards/risc-v/c906/smartl-c906/scripts/memory.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/c906/smartl-c906/scripts/memory.ld * + * 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/risc-v/c906/smartl-c906/scripts/user-space.ld b/boards/risc-v/c906/smartl-c906/scripts/user-space.ld index 8ed686914de8d..92776753c283a 100644 --- a/boards/risc-v/c906/smartl-c906/scripts/user-space.ld +++ b/boards/risc-v/c906/smartl-c906/scripts/user-space.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/c906/smartl-c906/scripts/user-space.ld * + * 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/risc-v/c906/smartl-c906/src/Makefile b/boards/risc-v/c906/smartl-c906/src/Makefile index 78c59d08eec82..e65aa99c6d5f6 100644 --- a/boards/risc-v/c906/smartl-c906/src/Makefile +++ b/boards/risc-v/c906/smartl-c906/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/c906/smartl-c906/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/risc-v/c906/smartl-c906/src/c906_appinit.c b/boards/risc-v/c906/smartl-c906/src/c906_appinit.c index 932e8131d0384..6d346b8d08008 100644 --- a/boards/risc-v/c906/smartl-c906/src/c906_appinit.c +++ b/boards/risc-v/c906/smartl-c906/src/c906_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/c906/smartl-c906/src/c906_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/risc-v/c906/smartl-c906/src/c906_boot.c b/boards/risc-v/c906/smartl-c906/src/c906_boot.c index 6370f967a0505..3ea511a875b12 100644 --- a/boards/risc-v/c906/smartl-c906/src/c906_boot.c +++ b/boards/risc-v/c906/smartl-c906/src/c906_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/c906/smartl-c906/src/c906_boot.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/risc-v/c906/smartl-c906/src/c906_bringup.c b/boards/risc-v/c906/smartl-c906/src/c906_bringup.c index 2231938fb0c62..a27a65446823b 100644 --- a/boards/risc-v/c906/smartl-c906/src/c906_bringup.c +++ b/boards/risc-v/c906/smartl-c906/src/c906_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/c906/smartl-c906/src/c906_bringup.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/risc-v/c906/smartl-c906/src/c906_leds.c b/boards/risc-v/c906/smartl-c906/src/c906_leds.c index 3f00ed48467d0..1ade7c9c95fdb 100644 --- a/boards/risc-v/c906/smartl-c906/src/c906_leds.c +++ b/boards/risc-v/c906/smartl-c906/src/c906_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/c906/smartl-c906/src/c906_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/risc-v/c906/smartl-c906/src/smartl-c906.h b/boards/risc-v/c906/smartl-c906/src/smartl-c906.h index 26bbc73893e33..58e1f3f139390 100644 --- a/boards/risc-v/c906/smartl-c906/src/smartl-c906.h +++ b/boards/risc-v/c906/smartl-c906/src/smartl-c906.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/c906/smartl-c906/src/smartl-c906.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 From 2b4d20845e7778eacd4a156dd839808b5f5254ec Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:22:41 +0100 Subject: [PATCH 23/53] boards/risk-v/esp32c3: 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/risc-v/esp32c3/common/Makefile | 2 ++ boards/risc-v/esp32c3/common/include/esp_board_bmp180.h | 2 ++ boards/risc-v/esp32c3/common/include/esp_board_i2c.h | 2 ++ boards/risc-v/esp32c3/common/include/esp_board_ledc.h | 2 ++ boards/risc-v/esp32c3/common/include/esp_board_rmt.h | 2 ++ boards/risc-v/esp32c3/common/include/esp_board_spidev.h | 2 ++ boards/risc-v/esp32c3/common/include/esp_board_spiflash.h | 2 ++ boards/risc-v/esp32c3/common/include/esp_board_spislavedev.h | 2 ++ boards/risc-v/esp32c3/common/include/esp_board_wlan.h | 2 ++ boards/risc-v/esp32c3/common/scripts/common.ld | 2 ++ boards/risc-v/esp32c3/common/scripts/esp32c3_aliases.ld | 2 ++ boards/risc-v/esp32c3/common/scripts/esp32c3_flat_memory.ld | 2 ++ boards/risc-v/esp32c3/common/scripts/esp32c3_legacy_sections.ld | 2 ++ boards/risc-v/esp32c3/common/scripts/esp32c3_sections.ld | 2 ++ boards/risc-v/esp32c3/common/src/Make.defs | 2 ++ boards/risc-v/esp32c3/common/src/esp_board_bmp180.c | 2 ++ boards/risc-v/esp32c3/common/src/esp_board_i2c.c | 2 ++ boards/risc-v/esp32c3/common/src/esp_board_ledc.c | 2 ++ boards/risc-v/esp32c3/common/src/esp_board_rmt.c | 2 ++ boards/risc-v/esp32c3/common/src/esp_board_spi.c | 2 ++ boards/risc-v/esp32c3/common/src/esp_board_spidev.c | 2 ++ boards/risc-v/esp32c3/common/src/esp_board_spiflash.c | 2 ++ boards/risc-v/esp32c3/common/src/esp_board_spislavedev.c | 2 ++ boards/risc-v/esp32c3/common/src/esp_board_twai.c | 2 ++ boards/risc-v/esp32c3/common/src/esp_board_wlan.c | 2 ++ boards/risc-v/esp32c3/esp32c3-generic/include/board.h | 2 ++ boards/risc-v/esp32c3/esp32c3-generic/scripts/Make.defs | 2 ++ boards/risc-v/esp32c3/esp32c3-generic/src/Make.defs | 2 ++ boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3-generic.h | 2 ++ boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_appinit.c | 2 ++ boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_boot.c | 2 ++ boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_bringup.c | 2 ++ boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_buttons.c | 2 ++ boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_gpio.c | 2 ++ boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_reset.c | 2 ++ 35 files changed, 70 insertions(+) diff --git a/boards/risc-v/esp32c3/common/Makefile b/boards/risc-v/esp32c3/common/Makefile index 8ea9c30d28db7..878b58c4d3b69 100644 --- a/boards/risc-v/esp32c3/common/Makefile +++ b/boards/risc-v/esp32c3/common/Makefile @@ -1,6 +1,8 @@ ############################################################################# # boards/risc-v/esp32c3/common/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/risc-v/esp32c3/common/include/esp_board_bmp180.h b/boards/risc-v/esp32c3/common/include/esp_board_bmp180.h index 28c101e994177..1738772dcd827 100644 --- a/boards/risc-v/esp32c3/common/include/esp_board_bmp180.h +++ b/boards/risc-v/esp32c3/common/include/esp_board_bmp180.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/include/esp_board_bmp180.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/risc-v/esp32c3/common/include/esp_board_i2c.h b/boards/risc-v/esp32c3/common/include/esp_board_i2c.h index 0b6b0322316b7..bae4da382c1a0 100644 --- a/boards/risc-v/esp32c3/common/include/esp_board_i2c.h +++ b/boards/risc-v/esp32c3/common/include/esp_board_i2c.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/include/esp_board_i2c.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/risc-v/esp32c3/common/include/esp_board_ledc.h b/boards/risc-v/esp32c3/common/include/esp_board_ledc.h index 06eeedd0ea6b5..5306d6c752c75 100644 --- a/boards/risc-v/esp32c3/common/include/esp_board_ledc.h +++ b/boards/risc-v/esp32c3/common/include/esp_board_ledc.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/include/esp_board_ledc.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/risc-v/esp32c3/common/include/esp_board_rmt.h b/boards/risc-v/esp32c3/common/include/esp_board_rmt.h index 74fd115341c0b..18494e7bcc9dc 100644 --- a/boards/risc-v/esp32c3/common/include/esp_board_rmt.h +++ b/boards/risc-v/esp32c3/common/include/esp_board_rmt.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/include/esp_board_rmt.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/risc-v/esp32c3/common/include/esp_board_spidev.h b/boards/risc-v/esp32c3/common/include/esp_board_spidev.h index 70abc41609a69..6f5ff54e48b14 100644 --- a/boards/risc-v/esp32c3/common/include/esp_board_spidev.h +++ b/boards/risc-v/esp32c3/common/include/esp_board_spidev.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/include/esp_board_spidev.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/risc-v/esp32c3/common/include/esp_board_spiflash.h b/boards/risc-v/esp32c3/common/include/esp_board_spiflash.h index 9e647a384e80d..4993488efe42a 100644 --- a/boards/risc-v/esp32c3/common/include/esp_board_spiflash.h +++ b/boards/risc-v/esp32c3/common/include/esp_board_spiflash.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/include/esp_board_spiflash.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/risc-v/esp32c3/common/include/esp_board_spislavedev.h b/boards/risc-v/esp32c3/common/include/esp_board_spislavedev.h index f87f905d17763..9178de5408af9 100644 --- a/boards/risc-v/esp32c3/common/include/esp_board_spislavedev.h +++ b/boards/risc-v/esp32c3/common/include/esp_board_spislavedev.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/include/esp_board_spislavedev.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/risc-v/esp32c3/common/include/esp_board_wlan.h b/boards/risc-v/esp32c3/common/include/esp_board_wlan.h index 4d51ebec4b443..e73c87231346d 100644 --- a/boards/risc-v/esp32c3/common/include/esp_board_wlan.h +++ b/boards/risc-v/esp32c3/common/include/esp_board_wlan.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/include/esp_board_wlan.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/risc-v/esp32c3/common/scripts/common.ld b/boards/risc-v/esp32c3/common/scripts/common.ld index 7b2292738b2f7..219f211427e58 100644 --- a/boards/risc-v/esp32c3/common/scripts/common.ld +++ b/boards/risc-v/esp32c3/common/scripts/common.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/scripts/common.ld * + * 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/risc-v/esp32c3/common/scripts/esp32c3_aliases.ld b/boards/risc-v/esp32c3/common/scripts/esp32c3_aliases.ld index 3606cec4f5acb..7a2e2954c7df7 100644 --- a/boards/risc-v/esp32c3/common/scripts/esp32c3_aliases.ld +++ b/boards/risc-v/esp32c3/common/scripts/esp32c3_aliases.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/scripts/esp32c3_aliases.ld * + * 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/risc-v/esp32c3/common/scripts/esp32c3_flat_memory.ld b/boards/risc-v/esp32c3/common/scripts/esp32c3_flat_memory.ld index e308f85da1d99..a4ad366b51f84 100644 --- a/boards/risc-v/esp32c3/common/scripts/esp32c3_flat_memory.ld +++ b/boards/risc-v/esp32c3/common/scripts/esp32c3_flat_memory.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/scripts/esp32c3_flat_memory.ld * + * 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/risc-v/esp32c3/common/scripts/esp32c3_legacy_sections.ld b/boards/risc-v/esp32c3/common/scripts/esp32c3_legacy_sections.ld index 3114bc3f8bc6d..30085c090d3f7 100644 --- a/boards/risc-v/esp32c3/common/scripts/esp32c3_legacy_sections.ld +++ b/boards/risc-v/esp32c3/common/scripts/esp32c3_legacy_sections.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/scripts/esp32c3_legacy_sections.ld * + * 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/risc-v/esp32c3/common/scripts/esp32c3_sections.ld b/boards/risc-v/esp32c3/common/scripts/esp32c3_sections.ld index c0af9b147b78c..2def89f2f6463 100644 --- a/boards/risc-v/esp32c3/common/scripts/esp32c3_sections.ld +++ b/boards/risc-v/esp32c3/common/scripts/esp32c3_sections.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/espressif/common/scripts/esp32c3_sections.ld * + * 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/risc-v/esp32c3/common/src/Make.defs b/boards/risc-v/esp32c3/common/src/Make.defs index da45e68a5154d..11d6f67de7c42 100644 --- a/boards/risc-v/esp32c3/common/src/Make.defs +++ b/boards/risc-v/esp32c3/common/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/risc-v/esp32c3/common/src/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/risc-v/esp32c3/common/src/esp_board_bmp180.c b/boards/risc-v/esp32c3/common/src/esp_board_bmp180.c index 33d367ecc9463..66d5813bb1a06 100644 --- a/boards/risc-v/esp32c3/common/src/esp_board_bmp180.c +++ b/boards/risc-v/esp32c3/common/src/esp_board_bmp180.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/src/esp_board_bmp180.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/risc-v/esp32c3/common/src/esp_board_i2c.c b/boards/risc-v/esp32c3/common/src/esp_board_i2c.c index c974c23b59c23..482ec535bfdb8 100644 --- a/boards/risc-v/esp32c3/common/src/esp_board_i2c.c +++ b/boards/risc-v/esp32c3/common/src/esp_board_i2c.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/src/esp_board_i2c.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/risc-v/esp32c3/common/src/esp_board_ledc.c b/boards/risc-v/esp32c3/common/src/esp_board_ledc.c index 907ac1660800c..279ea1dd635c8 100644 --- a/boards/risc-v/esp32c3/common/src/esp_board_ledc.c +++ b/boards/risc-v/esp32c3/common/src/esp_board_ledc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/src/esp_board_ledc.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/risc-v/esp32c3/common/src/esp_board_rmt.c b/boards/risc-v/esp32c3/common/src/esp_board_rmt.c index 0d15d2e77cf70..5f329c902a767 100644 --- a/boards/risc-v/esp32c3/common/src/esp_board_rmt.c +++ b/boards/risc-v/esp32c3/common/src/esp_board_rmt.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/src/esp_board_rmt.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/risc-v/esp32c3/common/src/esp_board_spi.c b/boards/risc-v/esp32c3/common/src/esp_board_spi.c index e9a996a8b2b69..5b14eff67bf4b 100644 --- a/boards/risc-v/esp32c3/common/src/esp_board_spi.c +++ b/boards/risc-v/esp32c3/common/src/esp_board_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/src/esp_board_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 diff --git a/boards/risc-v/esp32c3/common/src/esp_board_spidev.c b/boards/risc-v/esp32c3/common/src/esp_board_spidev.c index dec6739bc2fa7..ce565946ec93d 100644 --- a/boards/risc-v/esp32c3/common/src/esp_board_spidev.c +++ b/boards/risc-v/esp32c3/common/src/esp_board_spidev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/src/esp_board_spidev.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/risc-v/esp32c3/common/src/esp_board_spiflash.c b/boards/risc-v/esp32c3/common/src/esp_board_spiflash.c index 769a36bdd99d5..41a2f5a3485cd 100644 --- a/boards/risc-v/esp32c3/common/src/esp_board_spiflash.c +++ b/boards/risc-v/esp32c3/common/src/esp_board_spiflash.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/src/esp_board_spiflash.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/risc-v/esp32c3/common/src/esp_board_spislavedev.c b/boards/risc-v/esp32c3/common/src/esp_board_spislavedev.c index 1b9d3bacc4299..8537f13dc8e40 100644 --- a/boards/risc-v/esp32c3/common/src/esp_board_spislavedev.c +++ b/boards/risc-v/esp32c3/common/src/esp_board_spislavedev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/src/esp_board_spislavedev.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/risc-v/esp32c3/common/src/esp_board_twai.c b/boards/risc-v/esp32c3/common/src/esp_board_twai.c index 70e560978294e..ca00dadb4f973 100644 --- a/boards/risc-v/esp32c3/common/src/esp_board_twai.c +++ b/boards/risc-v/esp32c3/common/src/esp_board_twai.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/src/esp_board_twai.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/risc-v/esp32c3/common/src/esp_board_wlan.c b/boards/risc-v/esp32c3/common/src/esp_board_wlan.c index 24a7fe17b0032..e4a362b1dc7af 100644 --- a/boards/risc-v/esp32c3/common/src/esp_board_wlan.c +++ b/boards/risc-v/esp32c3/common/src/esp_board_wlan.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/common/src/esp_board_wlan.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/risc-v/esp32c3/esp32c3-generic/include/board.h b/boards/risc-v/esp32c3/esp32c3-generic/include/board.h index a2adecb9abdc3..4aeb61b4cb24c 100644 --- a/boards/risc-v/esp32c3/esp32c3-generic/include/board.h +++ b/boards/risc-v/esp32c3/esp32c3-generic/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/esp32c3-generic/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/risc-v/esp32c3/esp32c3-generic/scripts/Make.defs b/boards/risc-v/esp32c3/esp32c3-generic/scripts/Make.defs index cd5820c5bbd2d..fb0c3baffed39 100644 --- a/boards/risc-v/esp32c3/esp32c3-generic/scripts/Make.defs +++ b/boards/risc-v/esp32c3/esp32c3-generic/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/esp32c3/esp32c3-generic/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/risc-v/esp32c3/esp32c3-generic/src/Make.defs b/boards/risc-v/esp32c3/esp32c3-generic/src/Make.defs index b23cab8ea059c..93146af21c094 100644 --- a/boards/risc-v/esp32c3/esp32c3-generic/src/Make.defs +++ b/boards/risc-v/esp32c3/esp32c3-generic/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/risc-v/esp32c3/esp32c3-generic/src/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/risc-v/esp32c3/esp32c3-generic/src/esp32c3-generic.h b/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3-generic.h index 6311c461b42c2..5129f4c3d10a0 100644 --- a/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3-generic.h +++ b/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3-generic.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3-generic.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/risc-v/esp32c3/esp32c3-generic/src/esp32c3_appinit.c b/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_appinit.c index 431387e8c63db..a46d72e20fbd5 100644 --- a/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_appinit.c +++ b/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_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/risc-v/esp32c3/esp32c3-generic/src/esp32c3_boot.c b/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_boot.c index 1be97a68192d2..36c4ae100c9ce 100644 --- a/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_boot.c +++ b/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_boot.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/risc-v/esp32c3/esp32c3-generic/src/esp32c3_bringup.c b/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_bringup.c index 46149ee1f8d39..ef33597072e25 100644 --- a/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_bringup.c +++ b/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_bringup.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/risc-v/esp32c3/esp32c3-generic/src/esp32c3_buttons.c b/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_buttons.c index 71f07e7dd8fcf..0be6be2eff30f 100644 --- a/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_buttons.c +++ b/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_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/risc-v/esp32c3/esp32c3-generic/src/esp32c3_gpio.c b/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_gpio.c index f828b859db0d5..a211c29b785e0 100644 --- a/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_gpio.c +++ b/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_gpio.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/risc-v/esp32c3/esp32c3-generic/src/esp32c3_reset.c b/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_reset.c index 5d5981518a753..571136e9c106c 100644 --- a/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_reset.c +++ b/boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3/esp32c3-generic/src/esp32c3_reset.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 From f9db70bcf2ac981a80e3eae915a348f04e91e328 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:29:13 +0100 Subject: [PATCH 24/53] boards/risk-v/esp32c3-legacy: 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/risc-v/esp32c3-legacy/common/Makefile | 2 ++ boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_adc.h | 2 ++ .../esp32c3-legacy/common/include/esp32c3_board_apds9960.h | 2 ++ .../risc-v/esp32c3-legacy/common/include/esp32c3_board_bmp180.h | 2 ++ boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_i2c.h | 2 ++ .../risc-v/esp32c3-legacy/common/include/esp32c3_board_ice40.h | 2 ++ .../risc-v/esp32c3-legacy/common/include/esp32c3_board_ledc.h | 2 ++ .../esp32c3-legacy/common/include/esp32c3_board_mpu60x0_i2c.h | 2 ++ .../esp32c3-legacy/common/include/esp32c3_board_oneshot.h | 2 ++ .../risc-v/esp32c3-legacy/common/include/esp32c3_board_spidev.h | 2 ++ .../esp32c3-legacy/common/include/esp32c3_board_spiflash.h | 2 ++ .../esp32c3-legacy/common/include/esp32c3_board_spislavedev.h | 2 ++ .../risc-v/esp32c3-legacy/common/include/esp32c3_board_twai.h | 2 ++ boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_wdt.h | 2 ++ .../risc-v/esp32c3-legacy/common/include/esp32c3_board_wlan.h | 2 ++ boards/risc-v/esp32c3-legacy/common/kernel/Makefile | 2 ++ boards/risc-v/esp32c3-legacy/common/kernel/esp32c3_userspace.c | 2 ++ boards/risc-v/esp32c3-legacy/common/scripts/esp32c3_aliases.ld | 2 ++ boards/risc-v/esp32c3-legacy/common/scripts/esp32c3_rom.ld | 2 ++ boards/risc-v/esp32c3-legacy/common/scripts/flat_memory.ld | 2 ++ boards/risc-v/esp32c3-legacy/common/scripts/kernel-space.ld | 2 ++ boards/risc-v/esp32c3-legacy/common/scripts/legacy_sections.ld | 2 ++ boards/risc-v/esp32c3-legacy/common/scripts/mcuboot_sections.ld | 2 ++ boards/risc-v/esp32c3-legacy/common/scripts/protected_memory.ld | 2 ++ boards/risc-v/esp32c3-legacy/common/scripts/user-space.ld | 2 ++ boards/risc-v/esp32c3-legacy/common/src/Make.defs | 2 ++ boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_adc.c | 2 ++ boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_apa102.c | 2 ++ .../risc-v/esp32c3-legacy/common/src/esp32c3_board_apds9960.c | 2 ++ boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_bmp180.c | 2 ++ boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_gc9a01.c | 2 ++ boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_i2c.c | 2 ++ boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_ice40.c | 2 ++ boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_ledc.c | 2 ++ .../esp32c3-legacy/common/src/esp32c3_board_mpu60x0_i2c.c | 2 ++ boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_oneshot.c | 2 ++ boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spi.c | 2 ++ boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spidev.c | 2 ++ .../risc-v/esp32c3-legacy/common/src/esp32c3_board_spiflash.c | 2 ++ .../esp32c3-legacy/common/src/esp32c3_board_spislavedev.c | 2 ++ boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_st7735.c | 2 ++ boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_st7789.c | 2 ++ boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_twai.c | 2 ++ boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_wdt.c | 2 ++ boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_wlan.c | 2 ++ .../risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/include/board.h | 2 ++ .../esp32c3-devkit-rust-1/include/board_memorymap.h | 2 ++ .../esp32c3-legacy/esp32c3-devkit-rust-1/scripts/Make.defs | 2 ++ .../risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/Make.defs | 2 ++ .../esp32c3-devkit-rust-1/src/esp32c3-devkit-rust-1.h | 2 ++ .../esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_appinit.c | 2 ++ .../esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_autoleds.c | 2 ++ .../esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_boot.c | 2 ++ .../esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_bringup.c | 2 ++ .../esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_ioctl.c | 2 ++ .../esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_reset.c | 2 ++ boards/risc-v/esp32c3-legacy/esp32c3-devkit/include/board.h | 2 ++ .../esp32c3-legacy/esp32c3-devkit/include/board_memorymap.h | 2 ++ boards/risc-v/esp32c3-legacy/esp32c3-devkit/scripts/Make.defs | 2 ++ boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/Make.defs | 2 ++ .../risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3-devkit.h | 2 ++ .../risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_appinit.c | 2 ++ boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_boot.c | 2 ++ .../risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_bringup.c | 2 ++ boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_gpio.c | 2 ++ boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_ioctl.c | 2 ++ boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_reset.c | 2 ++ boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_uid.c | 2 ++ .../esp32c3-legacy/esp32c3-devkit/src/etc/init.d/rc.sysinit | 2 ++ boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/etc/init.d/rcS | 2 ++ 70 files changed, 140 insertions(+) diff --git a/boards/risc-v/esp32c3-legacy/common/Makefile b/boards/risc-v/esp32c3-legacy/common/Makefile index 26c4aef36e522..9dff5e535b073 100644 --- a/boards/risc-v/esp32c3-legacy/common/Makefile +++ b/boards/risc-v/esp32c3-legacy/common/Makefile @@ -1,6 +1,8 @@ ############################################################################# # boards/risc-v/esp32c3-legacy/common/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/risc-v/esp32c3-legacy/common/include/esp32c3_board_adc.h b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_adc.h index ad20948aa4fea..8be4496674ddc 100644 --- a/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_adc.h +++ b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_adc.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_adc.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/risc-v/esp32c3-legacy/common/include/esp32c3_board_apds9960.h b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_apds9960.h index b7448e3c45d2e..1d59592f77c4b 100644 --- a/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_apds9960.h +++ b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_apds9960.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_apds9960.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/risc-v/esp32c3-legacy/common/include/esp32c3_board_bmp180.h b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_bmp180.h index 8492465fa547d..c798e73a85a3c 100644 --- a/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_bmp180.h +++ b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_bmp180.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_bmp180.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/risc-v/esp32c3-legacy/common/include/esp32c3_board_i2c.h b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_i2c.h index 5b705ba3830e1..516c7d8c80fc8 100644 --- a/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_i2c.h +++ b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_i2c.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_i2c.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/risc-v/esp32c3-legacy/common/include/esp32c3_board_ice40.h b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_ice40.h index 935077d7eeaa1..c0a6bf33dd59f 100644 --- a/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_ice40.h +++ b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_ice40.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_ice40.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/risc-v/esp32c3-legacy/common/include/esp32c3_board_ledc.h b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_ledc.h index 8bcc0b4cc299f..7f9d6486a1c04 100644 --- a/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_ledc.h +++ b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_ledc.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_ledc.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/risc-v/esp32c3-legacy/common/include/esp32c3_board_mpu60x0_i2c.h b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_mpu60x0_i2c.h index b4a812a947d0c..6dec1e24fbc5c 100644 --- a/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_mpu60x0_i2c.h +++ b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_mpu60x0_i2c.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_mpu60x0_i2c.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/risc-v/esp32c3-legacy/common/include/esp32c3_board_oneshot.h b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_oneshot.h index 1260f71096f60..a08d04aa7d157 100644 --- a/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_oneshot.h +++ b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_oneshot.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_oneshot.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/risc-v/esp32c3-legacy/common/include/esp32c3_board_spidev.h b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_spidev.h index 0b9318d3cd0dc..640f073a9acc8 100644 --- a/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_spidev.h +++ b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_spidev.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_spidev.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/risc-v/esp32c3-legacy/common/include/esp32c3_board_spiflash.h b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_spiflash.h index d95fe68772ef9..a1a4ad119c046 100644 --- a/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_spiflash.h +++ b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_spiflash.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_spiflash.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/risc-v/esp32c3-legacy/common/include/esp32c3_board_spislavedev.h b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_spislavedev.h index 7dadf594a6780..cebe84214ff7b 100644 --- a/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_spislavedev.h +++ b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_spislavedev.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_spislavedev.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/risc-v/esp32c3-legacy/common/include/esp32c3_board_twai.h b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_twai.h index 7f94acf584d85..33b8f874eeedc 100644 --- a/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_twai.h +++ b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_twai.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_twai.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/risc-v/esp32c3-legacy/common/include/esp32c3_board_wdt.h b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_wdt.h index be072878bc4e3..dc228027f9fd9 100644 --- a/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_wdt.h +++ b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_wdt.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_wdt.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/risc-v/esp32c3-legacy/common/include/esp32c3_board_wlan.h b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_wlan.h index 493c31139ec19..d38bc1eefe61f 100644 --- a/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_wlan.h +++ b/boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_wlan.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/include/esp32c3_board_wlan.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/risc-v/esp32c3-legacy/common/kernel/Makefile b/boards/risc-v/esp32c3-legacy/common/kernel/Makefile index 340b2d8790d8c..d9c863cac83f0 100644 --- a/boards/risc-v/esp32c3-legacy/common/kernel/Makefile +++ b/boards/risc-v/esp32c3-legacy/common/kernel/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/esp32c3-legacy/common/kernel/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/risc-v/esp32c3-legacy/common/kernel/esp32c3_userspace.c b/boards/risc-v/esp32c3-legacy/common/kernel/esp32c3_userspace.c index bb1b9148606fc..beae92542893b 100644 --- a/boards/risc-v/esp32c3-legacy/common/kernel/esp32c3_userspace.c +++ b/boards/risc-v/esp32c3-legacy/common/kernel/esp32c3_userspace.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/kernel/esp32c3_userspace.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/risc-v/esp32c3-legacy/common/scripts/esp32c3_aliases.ld b/boards/risc-v/esp32c3-legacy/common/scripts/esp32c3_aliases.ld index 44c1b84b6ba76..63fb6102e0c9e 100644 --- a/boards/risc-v/esp32c3-legacy/common/scripts/esp32c3_aliases.ld +++ b/boards/risc-v/esp32c3-legacy/common/scripts/esp32c3_aliases.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/scripts/esp32c3_aliases.ld * + * 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/risc-v/esp32c3-legacy/common/scripts/esp32c3_rom.ld b/boards/risc-v/esp32c3-legacy/common/scripts/esp32c3_rom.ld index 8efd515925c90..775ea71fb6f10 100644 --- a/boards/risc-v/esp32c3-legacy/common/scripts/esp32c3_rom.ld +++ b/boards/risc-v/esp32c3-legacy/common/scripts/esp32c3_rom.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/scripts/esp32c3_rom.ld * + * 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/risc-v/esp32c3-legacy/common/scripts/flat_memory.ld b/boards/risc-v/esp32c3-legacy/common/scripts/flat_memory.ld index f173923446d26..28805e005b1f4 100644 --- a/boards/risc-v/esp32c3-legacy/common/scripts/flat_memory.ld +++ b/boards/risc-v/esp32c3-legacy/common/scripts/flat_memory.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/scripts/flat_memory.ld * + * 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/risc-v/esp32c3-legacy/common/scripts/kernel-space.ld b/boards/risc-v/esp32c3-legacy/common/scripts/kernel-space.ld index 7a27c208eb57f..52cb593bf4ba5 100644 --- a/boards/risc-v/esp32c3-legacy/common/scripts/kernel-space.ld +++ b/boards/risc-v/esp32c3-legacy/common/scripts/kernel-space.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/scripts/kernel-space.ld * + * 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/risc-v/esp32c3-legacy/common/scripts/legacy_sections.ld b/boards/risc-v/esp32c3-legacy/common/scripts/legacy_sections.ld index a71dce5f742a3..f3917c02ff51c 100644 --- a/boards/risc-v/esp32c3-legacy/common/scripts/legacy_sections.ld +++ b/boards/risc-v/esp32c3-legacy/common/scripts/legacy_sections.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/scripts/legacy_sections.ld * + * 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/risc-v/esp32c3-legacy/common/scripts/mcuboot_sections.ld b/boards/risc-v/esp32c3-legacy/common/scripts/mcuboot_sections.ld index 6eca605229444..c5c0c15f54daa 100644 --- a/boards/risc-v/esp32c3-legacy/common/scripts/mcuboot_sections.ld +++ b/boards/risc-v/esp32c3-legacy/common/scripts/mcuboot_sections.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/scripts/mcuboot_sections.ld * + * 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/risc-v/esp32c3-legacy/common/scripts/protected_memory.ld b/boards/risc-v/esp32c3-legacy/common/scripts/protected_memory.ld index 75872dea8403d..9e9b35cd06b6a 100644 --- a/boards/risc-v/esp32c3-legacy/common/scripts/protected_memory.ld +++ b/boards/risc-v/esp32c3-legacy/common/scripts/protected_memory.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/scripts/protected_memory.ld * + * 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/risc-v/esp32c3-legacy/common/scripts/user-space.ld b/boards/risc-v/esp32c3-legacy/common/scripts/user-space.ld index f90bbc2961b91..1ab87c7e3336e 100644 --- a/boards/risc-v/esp32c3-legacy/common/scripts/user-space.ld +++ b/boards/risc-v/esp32c3-legacy/common/scripts/user-space.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/scripts/user-space.ld * + * 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/risc-v/esp32c3-legacy/common/src/Make.defs b/boards/risc-v/esp32c3-legacy/common/src/Make.defs index 1c1720e25a8b6..b8cfc448a930c 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/Make.defs +++ b/boards/risc-v/esp32c3-legacy/common/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/risc-v/esp32c3-legacy/common/src/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/risc-v/esp32c3-legacy/common/src/esp32c3_board_adc.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_adc.c index f5d4dddd4d3a9..58474cf314aa3 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_adc.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_adc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_adc.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/risc-v/esp32c3-legacy/common/src/esp32c3_board_apa102.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_apa102.c index a900146c6af20..c7c51a11d6ad0 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_apa102.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_apa102.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_apa102.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/risc-v/esp32c3-legacy/common/src/esp32c3_board_apds9960.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_apds9960.c index d013f868d5045..ad24f1306313e 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_apds9960.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_apds9960.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_apds9960.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/risc-v/esp32c3-legacy/common/src/esp32c3_board_bmp180.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_bmp180.c index 889f9e0df85cb..52f66cd2913d5 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_bmp180.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_bmp180.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_bmp180.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/risc-v/esp32c3-legacy/common/src/esp32c3_board_gc9a01.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_gc9a01.c index 758adc0099179..f142f1df732ab 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_gc9a01.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_gc9a01.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_gc9a01.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/risc-v/esp32c3-legacy/common/src/esp32c3_board_i2c.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_i2c.c index 1d8b351d00ccf..3c5a5413ded92 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_i2c.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_i2c.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_i2c.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/risc-v/esp32c3-legacy/common/src/esp32c3_board_ice40.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_ice40.c index f5e1ef1a0157a..9a01651878b33 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_ice40.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_ice40.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_ice40.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/risc-v/esp32c3-legacy/common/src/esp32c3_board_ledc.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_ledc.c index 65f7c983be4a9..b5b14b66a18e1 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_ledc.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_ledc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_ledc.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/risc-v/esp32c3-legacy/common/src/esp32c3_board_mpu60x0_i2c.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_mpu60x0_i2c.c index a321085c5d3a1..3dceb879fe072 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_mpu60x0_i2c.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_mpu60x0_i2c.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_mpu60x0_i2c.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/risc-v/esp32c3-legacy/common/src/esp32c3_board_oneshot.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_oneshot.c index 709bd6626985c..5f7f8420aa9bf 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_oneshot.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_oneshot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_oneshot.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/risc-v/esp32c3-legacy/common/src/esp32c3_board_spi.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spi.c index 3e54fdfbc4c04..c4be14fff6bc2 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spi.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_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 diff --git a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spidev.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spidev.c index b858a6ad091f4..bcbc3d6b33649 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spidev.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spidev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spidev.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/risc-v/esp32c3-legacy/common/src/esp32c3_board_spiflash.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spiflash.c index 38d2bbd6f3117..abe945fbce592 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spiflash.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spiflash.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spiflash.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/risc-v/esp32c3-legacy/common/src/esp32c3_board_spislavedev.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spislavedev.c index 199109c4bb244..8d1ffcd10cfe2 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spislavedev.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spislavedev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_spislavedev.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/risc-v/esp32c3-legacy/common/src/esp32c3_board_st7735.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_st7735.c index 9e8bc3f7cfce4..6b4446d74366d 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_st7735.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_st7735.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_st7735.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/risc-v/esp32c3-legacy/common/src/esp32c3_board_st7789.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_st7789.c index 8a53f5bb45353..8c407f9a203fd 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_st7789.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_st7789.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_st7789.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/risc-v/esp32c3-legacy/common/src/esp32c3_board_twai.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_twai.c index 62bf5b38539a9..c5dadd315bda4 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_twai.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_twai.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_twai.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/risc-v/esp32c3-legacy/common/src/esp32c3_board_wdt.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_wdt.c index ac82af01e8395..424bc7a321d84 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_wdt.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_wdt.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_wdt.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/risc-v/esp32c3-legacy/common/src/esp32c3_board_wlan.c b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_wlan.c index 9a19fdf361a5c..27128ba5ebbf1 100644 --- a/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_wlan.c +++ b/boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_wlan.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/common/src/esp32c3_board_wlan.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/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/include/board.h b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/include/board.h index a14d51ac10ad0..e86aa7c3c8b09 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/include/board.h +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/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/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/include/board_memorymap.h b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/include/board_memorymap.h index 1cedff7271c27..6623de990c30d 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/include/board_memorymap.h +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/include/board_memorymap.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/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/scripts/Make.defs b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/scripts/Make.defs index 35e9af113510c..b746cff88953f 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/scripts/Make.defs +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/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/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/Make.defs b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/Make.defs index ab11c05ed2e89..d493729d272ed 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/Make.defs +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/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/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3-devkit-rust-1.h b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3-devkit-rust-1.h index 1eed8f00f527d..629867e98993f 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3-devkit-rust-1.h +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3-devkit-rust-1.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3-devkit-rust-1.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/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_appinit.c b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_appinit.c index bef1068289bbb..05d4e156296d4 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_appinit.c +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_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/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_autoleds.c b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_autoleds.c index 0e1acfd2df634..3955033b658de 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_autoleds.c +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_autoleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_autoleds.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/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_boot.c b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_boot.c index ec6495b016550..e1333240e291b 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_boot.c +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_boot.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/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_bringup.c b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_bringup.c index ac8257210e816..a41e76fe94596 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_bringup.c +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_bringup.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/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_ioctl.c b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_ioctl.c index 636b09cbe9104..b78c7901c4150 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_ioctl.c +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_ioctl.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_ioctl.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/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_reset.c b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_reset.c index 9d627271649f1..18e619adae8a7 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_reset.c +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit-rust-1/src/esp32c3_reset.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/risc-v/esp32c3-legacy/esp32c3-devkit/include/board.h b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/include/board.h index 6b6552b455317..564605e107a27 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit/include/board.h +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit/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/risc-v/esp32c3-legacy/esp32c3-devkit/include/board_memorymap.h b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/include/board_memorymap.h index ae6f7d97de4bb..e92d9b5851b32 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit/include/board_memorymap.h +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit/include/board_memorymap.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/risc-v/esp32c3-legacy/esp32c3-devkit/scripts/Make.defs b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/scripts/Make.defs index c77605f6872f1..d936a03fe997f 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit/scripts/Make.defs +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/esp32c3-legacy/esp32c3-devkit/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/risc-v/esp32c3-legacy/esp32c3-devkit/src/Make.defs b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/Make.defs index 92dcab25f951c..9304998be490a 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/Make.defs +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/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/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3-devkit.h b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3-devkit.h index 56a7a08efe65a..4c3c263df308a 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3-devkit.h +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3-devkit.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3-devkit.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/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_appinit.c b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_appinit.c index 22d57f459b427..5b412aa56dbdb 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_appinit.c +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_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/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_boot.c b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_boot.c index b3c167461788e..2f61273a779ef 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_boot.c +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_boot.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/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_bringup.c b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_bringup.c index 9e8acf45827be..c70c1c3cb344a 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_bringup.c +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_bringup.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/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_gpio.c b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_gpio.c index ac424a419db4e..cf79855be9637 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_gpio.c +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_gpio.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/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_ioctl.c b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_ioctl.c index 5cec969b1b4f3..9300381051ec4 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_ioctl.c +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_ioctl.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_ioctl.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/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_reset.c b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_reset.c index d3fc9344e6ba9..2b31573e88c5e 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_reset.c +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_reset.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/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_uid.c b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_uid.c index d1a8fb5b254ee..bab963b1d5493 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_uid.c +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_uid.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/esp32c3_uid.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/risc-v/esp32c3-legacy/esp32c3-devkit/src/etc/init.d/rc.sysinit b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/etc/init.d/rc.sysinit index d7832773304bf..3d6d9e6f30ab1 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/etc/init.d/rc.sysinit +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/etc/init.d/rc.sysinit @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/etc/init.d/rc.sysinit * + * 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/risc-v/esp32c3-legacy/esp32c3-devkit/src/etc/init.d/rcS b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/etc/init.d/rcS index 504982dfcfe19..483f314c61baa 100644 --- a/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/etc/init.d/rcS +++ b/boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/etc/init.d/rcS @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c3-legacy/esp32c3-devkit/src/etc/init.d/rcS * + * 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 From 0c5be55aee9d14b1ea6fc3282360b3673db78f06 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:34:01 +0100 Subject: [PATCH 25/53] boards/risk-v/esp32c6: 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/risc-v/esp32c6/common/Makefile | 2 ++ boards/risc-v/esp32c6/common/include/esp_board_bmp180.h | 2 ++ boards/risc-v/esp32c6/common/include/esp_board_i2c.h | 2 ++ boards/risc-v/esp32c6/common/include/esp_board_ledc.h | 2 ++ boards/risc-v/esp32c6/common/include/esp_board_mcpwm.h | 2 ++ boards/risc-v/esp32c6/common/include/esp_board_mfrc522.h | 2 ++ boards/risc-v/esp32c6/common/include/esp_board_qencoder.h | 2 ++ boards/risc-v/esp32c6/common/include/esp_board_rmt.h | 2 ++ boards/risc-v/esp32c6/common/include/esp_board_spidev.h | 2 ++ boards/risc-v/esp32c6/common/include/esp_board_spiflash.h | 2 ++ boards/risc-v/esp32c6/common/include/esp_board_spislavedev.h | 2 ++ boards/risc-v/esp32c6/common/include/esp_board_wlan.h | 2 ++ boards/risc-v/esp32c6/common/scripts/common.ld | 2 ++ boards/risc-v/esp32c6/common/scripts/esp32c6_aliases.ld | 2 ++ boards/risc-v/esp32c6/common/scripts/esp32c6_flat_memory.ld | 2 ++ boards/risc-v/esp32c6/common/scripts/esp32c6_legacy_sections.ld | 2 ++ boards/risc-v/esp32c6/common/scripts/esp32c6_sections.ld | 2 ++ boards/risc-v/esp32c6/common/src/Make.defs | 2 ++ boards/risc-v/esp32c6/common/src/esp_board_bmp180.c | 2 ++ boards/risc-v/esp32c6/common/src/esp_board_i2c.c | 2 ++ boards/risc-v/esp32c6/common/src/esp_board_ledc.c | 2 ++ boards/risc-v/esp32c6/common/src/esp_board_mcpwm.c | 2 ++ boards/risc-v/esp32c6/common/src/esp_board_mfrc522.c | 2 ++ boards/risc-v/esp32c6/common/src/esp_board_qencoder.c | 2 ++ boards/risc-v/esp32c6/common/src/esp_board_rmt.c | 2 ++ boards/risc-v/esp32c6/common/src/esp_board_spi.c | 2 ++ boards/risc-v/esp32c6/common/src/esp_board_spidev.c | 2 ++ boards/risc-v/esp32c6/common/src/esp_board_spiflash.c | 2 ++ boards/risc-v/esp32c6/common/src/esp_board_spislavedev.c | 2 ++ boards/risc-v/esp32c6/common/src/esp_board_twai.c | 2 ++ boards/risc-v/esp32c6/common/src/esp_board_wlan.c | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitc/include/board.h | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitc/scripts/Make.defs | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitc/src/Make.defs | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6-devkitc.h | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_appinit.c | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_boot.c | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_bringup.c | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_buttons.c | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_gpio.c | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_reset.c | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitm/include/board.h | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitm/scripts/Make.defs | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitm/src/Make.defs | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6-devkitm.h | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_appinit.c | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_boot.c | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_bringup.c | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_buttons.c | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_gpio.c | 2 ++ boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_reset.c | 2 ++ 51 files changed, 102 insertions(+) diff --git a/boards/risc-v/esp32c6/common/Makefile b/boards/risc-v/esp32c6/common/Makefile index f6fc6ec001c3e..f55259e254a50 100644 --- a/boards/risc-v/esp32c6/common/Makefile +++ b/boards/risc-v/esp32c6/common/Makefile @@ -1,6 +1,8 @@ ############################################################################# # boards/risc-v/esp32c6/common/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/risc-v/esp32c6/common/include/esp_board_bmp180.h b/boards/risc-v/esp32c6/common/include/esp_board_bmp180.h index 694b781502aa4..3f56822779e91 100644 --- a/boards/risc-v/esp32c6/common/include/esp_board_bmp180.h +++ b/boards/risc-v/esp32c6/common/include/esp_board_bmp180.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/include/esp_board_bmp180.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/risc-v/esp32c6/common/include/esp_board_i2c.h b/boards/risc-v/esp32c6/common/include/esp_board_i2c.h index 0670875d14c7c..083fb660b7d1c 100644 --- a/boards/risc-v/esp32c6/common/include/esp_board_i2c.h +++ b/boards/risc-v/esp32c6/common/include/esp_board_i2c.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/include/esp_board_i2c.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/risc-v/esp32c6/common/include/esp_board_ledc.h b/boards/risc-v/esp32c6/common/include/esp_board_ledc.h index cbdb9378f9ed7..cbefa47f990cd 100644 --- a/boards/risc-v/esp32c6/common/include/esp_board_ledc.h +++ b/boards/risc-v/esp32c6/common/include/esp_board_ledc.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/include/esp_board_ledc.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/risc-v/esp32c6/common/include/esp_board_mcpwm.h b/boards/risc-v/esp32c6/common/include/esp_board_mcpwm.h index 191deab98a37d..0ae3abd8b64fc 100644 --- a/boards/risc-v/esp32c6/common/include/esp_board_mcpwm.h +++ b/boards/risc-v/esp32c6/common/include/esp_board_mcpwm.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/include/esp_board_mcpwm.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/risc-v/esp32c6/common/include/esp_board_mfrc522.h b/boards/risc-v/esp32c6/common/include/esp_board_mfrc522.h index 4cd5e90dfbac7..42522f15a6c11 100644 --- a/boards/risc-v/esp32c6/common/include/esp_board_mfrc522.h +++ b/boards/risc-v/esp32c6/common/include/esp_board_mfrc522.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/include/esp_board_mfrc522.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/risc-v/esp32c6/common/include/esp_board_qencoder.h b/boards/risc-v/esp32c6/common/include/esp_board_qencoder.h index 15899d30631e2..7c5ac9329cd7b 100644 --- a/boards/risc-v/esp32c6/common/include/esp_board_qencoder.h +++ b/boards/risc-v/esp32c6/common/include/esp_board_qencoder.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/include/esp_board_qencoder.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/risc-v/esp32c6/common/include/esp_board_rmt.h b/boards/risc-v/esp32c6/common/include/esp_board_rmt.h index eae34fa67111c..dd44795d30ab8 100644 --- a/boards/risc-v/esp32c6/common/include/esp_board_rmt.h +++ b/boards/risc-v/esp32c6/common/include/esp_board_rmt.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/include/esp_board_rmt.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/risc-v/esp32c6/common/include/esp_board_spidev.h b/boards/risc-v/esp32c6/common/include/esp_board_spidev.h index f4659bc5ca872..90b42df07412e 100644 --- a/boards/risc-v/esp32c6/common/include/esp_board_spidev.h +++ b/boards/risc-v/esp32c6/common/include/esp_board_spidev.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/include/esp_board_spidev.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/risc-v/esp32c6/common/include/esp_board_spiflash.h b/boards/risc-v/esp32c6/common/include/esp_board_spiflash.h index cf05e85b98616..ceed84f0bba87 100644 --- a/boards/risc-v/esp32c6/common/include/esp_board_spiflash.h +++ b/boards/risc-v/esp32c6/common/include/esp_board_spiflash.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/include/esp_board_spiflash.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/risc-v/esp32c6/common/include/esp_board_spislavedev.h b/boards/risc-v/esp32c6/common/include/esp_board_spislavedev.h index 10ccd55ede01a..8d8c686ec0c2a 100644 --- a/boards/risc-v/esp32c6/common/include/esp_board_spislavedev.h +++ b/boards/risc-v/esp32c6/common/include/esp_board_spislavedev.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/include/esp_board_spislavedev.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/risc-v/esp32c6/common/include/esp_board_wlan.h b/boards/risc-v/esp32c6/common/include/esp_board_wlan.h index 1334eef607d70..f311756284776 100644 --- a/boards/risc-v/esp32c6/common/include/esp_board_wlan.h +++ b/boards/risc-v/esp32c6/common/include/esp_board_wlan.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/include/esp_board_wlan.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/risc-v/esp32c6/common/scripts/common.ld b/boards/risc-v/esp32c6/common/scripts/common.ld index 09d1012918e97..17d2d5c0c2df4 100644 --- a/boards/risc-v/esp32c6/common/scripts/common.ld +++ b/boards/risc-v/esp32c6/common/scripts/common.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/scripts/common.ld * + * 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/risc-v/esp32c6/common/scripts/esp32c6_aliases.ld b/boards/risc-v/esp32c6/common/scripts/esp32c6_aliases.ld index 65e91e5bd1f6b..5e5efb6ce80c5 100644 --- a/boards/risc-v/esp32c6/common/scripts/esp32c6_aliases.ld +++ b/boards/risc-v/esp32c6/common/scripts/esp32c6_aliases.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/scripts/esp32c6_aliases.ld * + * 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/risc-v/esp32c6/common/scripts/esp32c6_flat_memory.ld b/boards/risc-v/esp32c6/common/scripts/esp32c6_flat_memory.ld index db28c6ed220d8..28c56b5102332 100644 --- a/boards/risc-v/esp32c6/common/scripts/esp32c6_flat_memory.ld +++ b/boards/risc-v/esp32c6/common/scripts/esp32c6_flat_memory.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/scripts/esp32c6_flat_memory.ld * + * 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/risc-v/esp32c6/common/scripts/esp32c6_legacy_sections.ld b/boards/risc-v/esp32c6/common/scripts/esp32c6_legacy_sections.ld index 850c14c29a230..924df90b8d8ad 100644 --- a/boards/risc-v/esp32c6/common/scripts/esp32c6_legacy_sections.ld +++ b/boards/risc-v/esp32c6/common/scripts/esp32c6_legacy_sections.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/scripts/esp32c6_legacy_sections.ld * + * 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/risc-v/esp32c6/common/scripts/esp32c6_sections.ld b/boards/risc-v/esp32c6/common/scripts/esp32c6_sections.ld index 39bcdd3074cf7..304d975dc19de 100644 --- a/boards/risc-v/esp32c6/common/scripts/esp32c6_sections.ld +++ b/boards/risc-v/esp32c6/common/scripts/esp32c6_sections.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/scripts/esp32c6_sections.ld * + * 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/risc-v/esp32c6/common/src/Make.defs b/boards/risc-v/esp32c6/common/src/Make.defs index 2d2a487d5a699..7b1378b8905f6 100644 --- a/boards/risc-v/esp32c6/common/src/Make.defs +++ b/boards/risc-v/esp32c6/common/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/risc-v/esp32c6/common/src/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/risc-v/esp32c6/common/src/esp_board_bmp180.c b/boards/risc-v/esp32c6/common/src/esp_board_bmp180.c index 00ab194ffdfb2..10e4c9e551e9a 100644 --- a/boards/risc-v/esp32c6/common/src/esp_board_bmp180.c +++ b/boards/risc-v/esp32c6/common/src/esp_board_bmp180.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/src/esp_board_bmp180.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/risc-v/esp32c6/common/src/esp_board_i2c.c b/boards/risc-v/esp32c6/common/src/esp_board_i2c.c index 40a0e3d4d11e6..88f5b16ef604b 100644 --- a/boards/risc-v/esp32c6/common/src/esp_board_i2c.c +++ b/boards/risc-v/esp32c6/common/src/esp_board_i2c.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/src/esp_board_i2c.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/risc-v/esp32c6/common/src/esp_board_ledc.c b/boards/risc-v/esp32c6/common/src/esp_board_ledc.c index 4ec63eb80bb83..8f495fd293ba8 100644 --- a/boards/risc-v/esp32c6/common/src/esp_board_ledc.c +++ b/boards/risc-v/esp32c6/common/src/esp_board_ledc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/src/esp_board_ledc.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/risc-v/esp32c6/common/src/esp_board_mcpwm.c b/boards/risc-v/esp32c6/common/src/esp_board_mcpwm.c index 43a059855ad3a..d6bf3df2071bf 100644 --- a/boards/risc-v/esp32c6/common/src/esp_board_mcpwm.c +++ b/boards/risc-v/esp32c6/common/src/esp_board_mcpwm.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/src/esp_board_mcpwm.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/risc-v/esp32c6/common/src/esp_board_mfrc522.c b/boards/risc-v/esp32c6/common/src/esp_board_mfrc522.c index 7fd9b33039da0..88a35b957edc7 100644 --- a/boards/risc-v/esp32c6/common/src/esp_board_mfrc522.c +++ b/boards/risc-v/esp32c6/common/src/esp_board_mfrc522.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/src/esp_board_mfrc522.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/risc-v/esp32c6/common/src/esp_board_qencoder.c b/boards/risc-v/esp32c6/common/src/esp_board_qencoder.c index b7e17b006978a..6f9e0afaad73b 100644 --- a/boards/risc-v/esp32c6/common/src/esp_board_qencoder.c +++ b/boards/risc-v/esp32c6/common/src/esp_board_qencoder.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/src/esp_board_qencoder.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/risc-v/esp32c6/common/src/esp_board_rmt.c b/boards/risc-v/esp32c6/common/src/esp_board_rmt.c index 9c3eefd321e20..2d63c1695b3d8 100644 --- a/boards/risc-v/esp32c6/common/src/esp_board_rmt.c +++ b/boards/risc-v/esp32c6/common/src/esp_board_rmt.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/src/esp_board_rmt.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/risc-v/esp32c6/common/src/esp_board_spi.c b/boards/risc-v/esp32c6/common/src/esp_board_spi.c index 0ddc61022c4aa..32f92f354eec5 100644 --- a/boards/risc-v/esp32c6/common/src/esp_board_spi.c +++ b/boards/risc-v/esp32c6/common/src/esp_board_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/src/esp_board_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 diff --git a/boards/risc-v/esp32c6/common/src/esp_board_spidev.c b/boards/risc-v/esp32c6/common/src/esp_board_spidev.c index 17c6700977b69..a256c135429c4 100644 --- a/boards/risc-v/esp32c6/common/src/esp_board_spidev.c +++ b/boards/risc-v/esp32c6/common/src/esp_board_spidev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/src/esp_board_spidev.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/risc-v/esp32c6/common/src/esp_board_spiflash.c b/boards/risc-v/esp32c6/common/src/esp_board_spiflash.c index 4f84ec77e9e7f..14d722c66e809 100644 --- a/boards/risc-v/esp32c6/common/src/esp_board_spiflash.c +++ b/boards/risc-v/esp32c6/common/src/esp_board_spiflash.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/src/esp_board_spiflash.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/risc-v/esp32c6/common/src/esp_board_spislavedev.c b/boards/risc-v/esp32c6/common/src/esp_board_spislavedev.c index f81799bb914f1..be4e8d8c503d7 100644 --- a/boards/risc-v/esp32c6/common/src/esp_board_spislavedev.c +++ b/boards/risc-v/esp32c6/common/src/esp_board_spislavedev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/src/esp_board_spislavedev.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/risc-v/esp32c6/common/src/esp_board_twai.c b/boards/risc-v/esp32c6/common/src/esp_board_twai.c index 499e4e7c48e27..a473139f92d93 100644 --- a/boards/risc-v/esp32c6/common/src/esp_board_twai.c +++ b/boards/risc-v/esp32c6/common/src/esp_board_twai.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/src/esp_board_twai.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/risc-v/esp32c6/common/src/esp_board_wlan.c b/boards/risc-v/esp32c6/common/src/esp_board_wlan.c index 0ae40b1387165..827845b426871 100644 --- a/boards/risc-v/esp32c6/common/src/esp_board_wlan.c +++ b/boards/risc-v/esp32c6/common/src/esp_board_wlan.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/common/src/esp_board_wlan.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/risc-v/esp32c6/esp32c6-devkitc/include/board.h b/boards/risc-v/esp32c6/esp32c6-devkitc/include/board.h index bccce6531cdbb..2c2e620edb169 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitc/include/board.h +++ b/boards/risc-v/esp32c6/esp32c6-devkitc/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/esp32c6-devkitc/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/risc-v/esp32c6/esp32c6-devkitc/scripts/Make.defs b/boards/risc-v/esp32c6/esp32c6-devkitc/scripts/Make.defs index e2cc40d57e6e7..d926ea0e15dc9 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitc/scripts/Make.defs +++ b/boards/risc-v/esp32c6/esp32c6-devkitc/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/esp32c6/esp32c6-devkitc/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/risc-v/esp32c6/esp32c6-devkitc/src/Make.defs b/boards/risc-v/esp32c6/esp32c6-devkitc/src/Make.defs index 700ca6648ac97..1ff5925501244 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitc/src/Make.defs +++ b/boards/risc-v/esp32c6/esp32c6-devkitc/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/risc-v/esp32c6/esp32c6-devkitc/src/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/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6-devkitc.h b/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6-devkitc.h index bf9551b5edbeb..e68bd78780ef7 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6-devkitc.h +++ b/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6-devkitc.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6-devkitc.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/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_appinit.c b/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_appinit.c index 0795f4564ab44..c6f607a6fad99 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_appinit.c +++ b/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_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/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_boot.c b/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_boot.c index 0d4b0287da435..664c0f3f3580a 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_boot.c +++ b/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_boot.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/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_bringup.c b/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_bringup.c index de3d8775c65f3..c45e33deaf1f5 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_bringup.c +++ b/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_bringup.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/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_buttons.c b/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_buttons.c index d73973070aae7..33304dcfbb2a2 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_buttons.c +++ b/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_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/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_gpio.c b/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_gpio.c index f6a1dd88eda2f..8ced3654b475c 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_gpio.c +++ b/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_gpio.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/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_reset.c b/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_reset.c index c6bfb5a94f634..6d1f7ca38ae41 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_reset.c +++ b/boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/esp32c6-devkitc/src/esp32c6_reset.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/risc-v/esp32c6/esp32c6-devkitm/include/board.h b/boards/risc-v/esp32c6/esp32c6-devkitm/include/board.h index 0e49afffa8cb0..7cf276365fee3 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitm/include/board.h +++ b/boards/risc-v/esp32c6/esp32c6-devkitm/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/esp32c6-devkitm/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/risc-v/esp32c6/esp32c6-devkitm/scripts/Make.defs b/boards/risc-v/esp32c6/esp32c6-devkitm/scripts/Make.defs index 430fb743b538e..1fa5297fc017e 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitm/scripts/Make.defs +++ b/boards/risc-v/esp32c6/esp32c6-devkitm/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/esp32c6/esp32c6-devkitm/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/risc-v/esp32c6/esp32c6-devkitm/src/Make.defs b/boards/risc-v/esp32c6/esp32c6-devkitm/src/Make.defs index a1786c4b01af6..82112d9c9a5d7 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitm/src/Make.defs +++ b/boards/risc-v/esp32c6/esp32c6-devkitm/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/risc-v/esp32c6/esp32c6-devkitm/src/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/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6-devkitm.h b/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6-devkitm.h index 37ec160e064cf..e960706d09551 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6-devkitm.h +++ b/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6-devkitm.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6-devkitm.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/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_appinit.c b/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_appinit.c index b406972ff99a3..94910f225227b 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_appinit.c +++ b/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_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/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_boot.c b/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_boot.c index d4071137fe68f..60fabad7a977f 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_boot.c +++ b/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_boot.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/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_bringup.c b/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_bringup.c index 512127c8a6d3f..992d84aa6228e 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_bringup.c +++ b/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_bringup.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/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_buttons.c b/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_buttons.c index 43bba7c094a78..26c552edaa2f9 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_buttons.c +++ b/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_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/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_gpio.c b/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_gpio.c index acbac397e35c1..4a7f3f4a59070 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_gpio.c +++ b/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_gpio.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/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_reset.c b/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_reset.c index c1b51c7f83dc7..62cbb7ef7c1d5 100644 --- a/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_reset.c +++ b/boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32c6/esp32c6-devkitm/src/esp32c6_reset.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 From 568defa0c7b0323568b30db96b6b88660dd86535 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:37:13 +0100 Subject: [PATCH 26/53] boards/risk-v/esp32h2: 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/risc-v/esp32h2/common/Makefile | 2 ++ boards/risc-v/esp32h2/common/include/esp_board_bmp180.h | 2 ++ boards/risc-v/esp32h2/common/include/esp_board_i2c.h | 2 ++ boards/risc-v/esp32h2/common/include/esp_board_ledc.h | 2 ++ boards/risc-v/esp32h2/common/include/esp_board_mcpwm.h | 2 ++ boards/risc-v/esp32h2/common/include/esp_board_rmt.h | 2 ++ boards/risc-v/esp32h2/common/include/esp_board_spidev.h | 2 ++ boards/risc-v/esp32h2/common/include/esp_board_spiflash.h | 2 ++ boards/risc-v/esp32h2/common/include/esp_board_spislavedev.h | 2 ++ boards/risc-v/esp32h2/common/scripts/common.ld | 2 ++ boards/risc-v/esp32h2/common/scripts/esp32h2_aliases.ld | 2 ++ boards/risc-v/esp32h2/common/scripts/esp32h2_flat_memory.ld | 2 ++ boards/risc-v/esp32h2/common/scripts/esp32h2_legacy_sections.ld | 2 ++ boards/risc-v/esp32h2/common/scripts/esp32h2_sections.ld | 2 ++ boards/risc-v/esp32h2/common/src/Make.defs | 2 ++ boards/risc-v/esp32h2/common/src/esp_board_bmp180.c | 2 ++ boards/risc-v/esp32h2/common/src/esp_board_i2c.c | 2 ++ boards/risc-v/esp32h2/common/src/esp_board_ledc.c | 2 ++ boards/risc-v/esp32h2/common/src/esp_board_mcpwm.c | 2 ++ boards/risc-v/esp32h2/common/src/esp_board_rmt.c | 2 ++ boards/risc-v/esp32h2/common/src/esp_board_spi.c | 2 ++ boards/risc-v/esp32h2/common/src/esp_board_spidev.c | 2 ++ boards/risc-v/esp32h2/common/src/esp_board_spiflash.c | 2 ++ boards/risc-v/esp32h2/common/src/esp_board_spislavedev.c | 2 ++ boards/risc-v/esp32h2/common/src/esp_board_twai.c | 2 ++ boards/risc-v/esp32h2/esp32h2-devkit/include/board.h | 2 ++ boards/risc-v/esp32h2/esp32h2-devkit/scripts/Make.defs | 2 ++ boards/risc-v/esp32h2/esp32h2-devkit/src/Make.defs | 2 ++ boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2-devkit.h | 2 ++ boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_appinit.c | 2 ++ boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_boot.c | 2 ++ boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_bringup.c | 2 ++ boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_buttons.c | 2 ++ boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_gpio.c | 2 ++ boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_reset.c | 2 ++ 35 files changed, 70 insertions(+) diff --git a/boards/risc-v/esp32h2/common/Makefile b/boards/risc-v/esp32h2/common/Makefile index 2d123bc64529f..9ccbf2e0d92fc 100644 --- a/boards/risc-v/esp32h2/common/Makefile +++ b/boards/risc-v/esp32h2/common/Makefile @@ -1,6 +1,8 @@ ############################################################################# # boards/risc-v/esp32h2/common/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/risc-v/esp32h2/common/include/esp_board_bmp180.h b/boards/risc-v/esp32h2/common/include/esp_board_bmp180.h index 3b6ff77079621..c7307616334d1 100644 --- a/boards/risc-v/esp32h2/common/include/esp_board_bmp180.h +++ b/boards/risc-v/esp32h2/common/include/esp_board_bmp180.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/include/esp_board_bmp180.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/risc-v/esp32h2/common/include/esp_board_i2c.h b/boards/risc-v/esp32h2/common/include/esp_board_i2c.h index d478a4b640d59..52511871dd188 100644 --- a/boards/risc-v/esp32h2/common/include/esp_board_i2c.h +++ b/boards/risc-v/esp32h2/common/include/esp_board_i2c.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/include/esp_board_i2c.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/risc-v/esp32h2/common/include/esp_board_ledc.h b/boards/risc-v/esp32h2/common/include/esp_board_ledc.h index 2737e3564d54f..b1b384617a163 100644 --- a/boards/risc-v/esp32h2/common/include/esp_board_ledc.h +++ b/boards/risc-v/esp32h2/common/include/esp_board_ledc.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/include/esp_board_ledc.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/risc-v/esp32h2/common/include/esp_board_mcpwm.h b/boards/risc-v/esp32h2/common/include/esp_board_mcpwm.h index 70cc0d2f886ea..064cb99c119f5 100644 --- a/boards/risc-v/esp32h2/common/include/esp_board_mcpwm.h +++ b/boards/risc-v/esp32h2/common/include/esp_board_mcpwm.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/include/esp_board_mcpwm.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/risc-v/esp32h2/common/include/esp_board_rmt.h b/boards/risc-v/esp32h2/common/include/esp_board_rmt.h index 0e713aaee0fa3..e8f9fdee18be0 100644 --- a/boards/risc-v/esp32h2/common/include/esp_board_rmt.h +++ b/boards/risc-v/esp32h2/common/include/esp_board_rmt.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/include/esp_board_rmt.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/risc-v/esp32h2/common/include/esp_board_spidev.h b/boards/risc-v/esp32h2/common/include/esp_board_spidev.h index fdd586b0af149..3321c74f0ab0e 100644 --- a/boards/risc-v/esp32h2/common/include/esp_board_spidev.h +++ b/boards/risc-v/esp32h2/common/include/esp_board_spidev.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/include/esp_board_spidev.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/risc-v/esp32h2/common/include/esp_board_spiflash.h b/boards/risc-v/esp32h2/common/include/esp_board_spiflash.h index 909eb2e2309d5..260e547ea422e 100644 --- a/boards/risc-v/esp32h2/common/include/esp_board_spiflash.h +++ b/boards/risc-v/esp32h2/common/include/esp_board_spiflash.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/include/esp_board_spiflash.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/risc-v/esp32h2/common/include/esp_board_spislavedev.h b/boards/risc-v/esp32h2/common/include/esp_board_spislavedev.h index 8b4e4aeda578d..5016329592b2b 100644 --- a/boards/risc-v/esp32h2/common/include/esp_board_spislavedev.h +++ b/boards/risc-v/esp32h2/common/include/esp_board_spislavedev.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/include/esp_board_spislavedev.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/risc-v/esp32h2/common/scripts/common.ld b/boards/risc-v/esp32h2/common/scripts/common.ld index 1d961a58c01c2..06cedc6347900 100644 --- a/boards/risc-v/esp32h2/common/scripts/common.ld +++ b/boards/risc-v/esp32h2/common/scripts/common.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/scripts/common.ld * + * 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/risc-v/esp32h2/common/scripts/esp32h2_aliases.ld b/boards/risc-v/esp32h2/common/scripts/esp32h2_aliases.ld index 8499490078d03..61681401c17ca 100644 --- a/boards/risc-v/esp32h2/common/scripts/esp32h2_aliases.ld +++ b/boards/risc-v/esp32h2/common/scripts/esp32h2_aliases.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/scripts/esp32h2_aliases.ld * + * 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/risc-v/esp32h2/common/scripts/esp32h2_flat_memory.ld b/boards/risc-v/esp32h2/common/scripts/esp32h2_flat_memory.ld index f30676a269107..b4d2e9a6e675b 100644 --- a/boards/risc-v/esp32h2/common/scripts/esp32h2_flat_memory.ld +++ b/boards/risc-v/esp32h2/common/scripts/esp32h2_flat_memory.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/scripts/esp32h2_flat_memory.ld * + * 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/risc-v/esp32h2/common/scripts/esp32h2_legacy_sections.ld b/boards/risc-v/esp32h2/common/scripts/esp32h2_legacy_sections.ld index 08b7fc65848d4..c3b88d68d8d9a 100644 --- a/boards/risc-v/esp32h2/common/scripts/esp32h2_legacy_sections.ld +++ b/boards/risc-v/esp32h2/common/scripts/esp32h2_legacy_sections.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/scripts/esp32h2_legacy_sections.ld * + * 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/risc-v/esp32h2/common/scripts/esp32h2_sections.ld b/boards/risc-v/esp32h2/common/scripts/esp32h2_sections.ld index 8d8a7bc4cb5ab..90a337aeeccb9 100644 --- a/boards/risc-v/esp32h2/common/scripts/esp32h2_sections.ld +++ b/boards/risc-v/esp32h2/common/scripts/esp32h2_sections.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/scripts/esp32h2_sections.ld * + * 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/risc-v/esp32h2/common/src/Make.defs b/boards/risc-v/esp32h2/common/src/Make.defs index 7d8708f4dd889..1756e73b8a01a 100644 --- a/boards/risc-v/esp32h2/common/src/Make.defs +++ b/boards/risc-v/esp32h2/common/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/risc-v/esp32h2/common/src/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/risc-v/esp32h2/common/src/esp_board_bmp180.c b/boards/risc-v/esp32h2/common/src/esp_board_bmp180.c index d1768097604df..169d8b068651a 100644 --- a/boards/risc-v/esp32h2/common/src/esp_board_bmp180.c +++ b/boards/risc-v/esp32h2/common/src/esp_board_bmp180.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/src/esp_board_bmp180.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/risc-v/esp32h2/common/src/esp_board_i2c.c b/boards/risc-v/esp32h2/common/src/esp_board_i2c.c index 43f7d133afc56..68ab294361a32 100644 --- a/boards/risc-v/esp32h2/common/src/esp_board_i2c.c +++ b/boards/risc-v/esp32h2/common/src/esp_board_i2c.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/src/esp_board_i2c.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/risc-v/esp32h2/common/src/esp_board_ledc.c b/boards/risc-v/esp32h2/common/src/esp_board_ledc.c index cfc95bfd7a696..67942edecb297 100644 --- a/boards/risc-v/esp32h2/common/src/esp_board_ledc.c +++ b/boards/risc-v/esp32h2/common/src/esp_board_ledc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/src/esp_board_ledc.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/risc-v/esp32h2/common/src/esp_board_mcpwm.c b/boards/risc-v/esp32h2/common/src/esp_board_mcpwm.c index 3a24912107aee..b0a2d150cbfec 100644 --- a/boards/risc-v/esp32h2/common/src/esp_board_mcpwm.c +++ b/boards/risc-v/esp32h2/common/src/esp_board_mcpwm.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/src/esp_board_mcpwm.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/risc-v/esp32h2/common/src/esp_board_rmt.c b/boards/risc-v/esp32h2/common/src/esp_board_rmt.c index 2b7d2f9fb4f7a..6b6a31b8d259e 100644 --- a/boards/risc-v/esp32h2/common/src/esp_board_rmt.c +++ b/boards/risc-v/esp32h2/common/src/esp_board_rmt.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/src/esp_board_rmt.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/risc-v/esp32h2/common/src/esp_board_spi.c b/boards/risc-v/esp32h2/common/src/esp_board_spi.c index daca0d87f7423..4e22625e3e88f 100644 --- a/boards/risc-v/esp32h2/common/src/esp_board_spi.c +++ b/boards/risc-v/esp32h2/common/src/esp_board_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/src/esp_board_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 diff --git a/boards/risc-v/esp32h2/common/src/esp_board_spidev.c b/boards/risc-v/esp32h2/common/src/esp_board_spidev.c index 0f6396d5bf639..45961575e4c91 100644 --- a/boards/risc-v/esp32h2/common/src/esp_board_spidev.c +++ b/boards/risc-v/esp32h2/common/src/esp_board_spidev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/src/esp_board_spidev.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/risc-v/esp32h2/common/src/esp_board_spiflash.c b/boards/risc-v/esp32h2/common/src/esp_board_spiflash.c index 3318eecb6b030..bf379e8b6fc09 100644 --- a/boards/risc-v/esp32h2/common/src/esp_board_spiflash.c +++ b/boards/risc-v/esp32h2/common/src/esp_board_spiflash.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/src/esp_board_spiflash.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/risc-v/esp32h2/common/src/esp_board_spislavedev.c b/boards/risc-v/esp32h2/common/src/esp_board_spislavedev.c index 66319f4b09a70..4b075c05dcb7d 100644 --- a/boards/risc-v/esp32h2/common/src/esp_board_spislavedev.c +++ b/boards/risc-v/esp32h2/common/src/esp_board_spislavedev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/src/esp_board_spislavedev.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/risc-v/esp32h2/common/src/esp_board_twai.c b/boards/risc-v/esp32h2/common/src/esp_board_twai.c index 4db11128c891c..17d1a2c3779f8 100644 --- a/boards/risc-v/esp32h2/common/src/esp_board_twai.c +++ b/boards/risc-v/esp32h2/common/src/esp_board_twai.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/common/src/esp_board_twai.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/risc-v/esp32h2/esp32h2-devkit/include/board.h b/boards/risc-v/esp32h2/esp32h2-devkit/include/board.h index 40d78d3ce91f6..9122cdf913353 100644 --- a/boards/risc-v/esp32h2/esp32h2-devkit/include/board.h +++ b/boards/risc-v/esp32h2/esp32h2-devkit/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/esp32h2-devkit/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/risc-v/esp32h2/esp32h2-devkit/scripts/Make.defs b/boards/risc-v/esp32h2/esp32h2-devkit/scripts/Make.defs index b081f29e73da8..707e15132822d 100644 --- a/boards/risc-v/esp32h2/esp32h2-devkit/scripts/Make.defs +++ b/boards/risc-v/esp32h2/esp32h2-devkit/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/esp32h2/esp32h2-devkit/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/risc-v/esp32h2/esp32h2-devkit/src/Make.defs b/boards/risc-v/esp32h2/esp32h2-devkit/src/Make.defs index 66102c2e47a83..1f57dc7ee997f 100644 --- a/boards/risc-v/esp32h2/esp32h2-devkit/src/Make.defs +++ b/boards/risc-v/esp32h2/esp32h2-devkit/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/risc-v/esp32h2/esp32h2-devkit/src/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/risc-v/esp32h2/esp32h2-devkit/src/esp32h2-devkit.h b/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2-devkit.h index be5bef72f63ec..08f547dab24a1 100644 --- a/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2-devkit.h +++ b/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2-devkit.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2-devkit.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/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_appinit.c b/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_appinit.c index e900efecdbd2c..8da0356480b21 100644 --- a/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_appinit.c +++ b/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_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/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_boot.c b/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_boot.c index d0cf03142cf22..057de07601569 100644 --- a/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_boot.c +++ b/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_boot.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/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_bringup.c b/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_bringup.c index 85d2156264abb..303adccf68976 100644 --- a/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_bringup.c +++ b/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_bringup.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/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_buttons.c b/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_buttons.c index 78f0ebae0e7a4..6e4e722b0696e 100644 --- a/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_buttons.c +++ b/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_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/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_gpio.c b/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_gpio.c index 17cf6091cbdf4..1ff0e8de96018 100644 --- a/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_gpio.c +++ b/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_gpio.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/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_reset.c b/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_reset.c index 77118e5d2e14a..60f16f975d7b7 100644 --- a/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_reset.c +++ b/boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/esp32h2/esp32h2-devkit/src/esp32h2_reset.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 From b9846092062eed6416d41d162e0fd6ba6adf9561 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:38:35 +0100 Subject: [PATCH 27/53] boards/risk-v/fe310: 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/risc-v/fe310/hifive1-revb/include/board.h | 2 ++ boards/risc-v/fe310/hifive1-revb/scripts/Make.defs | 2 ++ boards/risc-v/fe310/hifive1-revb/scripts/ld-qemu.script | 2 ++ boards/risc-v/fe310/hifive1-revb/scripts/ld.script | 2 ++ boards/risc-v/fe310/hifive1-revb/src/Makefile | 2 ++ boards/risc-v/fe310/hifive1-revb/src/fe310_appinit.c | 2 ++ boards/risc-v/fe310/hifive1-revb/src/fe310_autoleds.c | 2 ++ boards/risc-v/fe310/hifive1-revb/src/fe310_boot.c | 2 ++ boards/risc-v/fe310/hifive1-revb/src/fe310_bringup.c | 2 ++ boards/risc-v/fe310/hifive1-revb/src/fe310_buttons.c | 2 ++ boards/risc-v/fe310/hifive1-revb/src/hifive1-revb.h | 2 ++ 11 files changed, 22 insertions(+) diff --git a/boards/risc-v/fe310/hifive1-revb/include/board.h b/boards/risc-v/fe310/hifive1-revb/include/board.h index 7db60ee5dbca4..fe273c499b644 100644 --- a/boards/risc-v/fe310/hifive1-revb/include/board.h +++ b/boards/risc-v/fe310/hifive1-revb/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/fe310/hifive1-revb/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/risc-v/fe310/hifive1-revb/scripts/Make.defs b/boards/risc-v/fe310/hifive1-revb/scripts/Make.defs index bc359f2c069b1..f8479460f0a46 100644 --- a/boards/risc-v/fe310/hifive1-revb/scripts/Make.defs +++ b/boards/risc-v/fe310/hifive1-revb/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/fe310/hifive1-revb/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/risc-v/fe310/hifive1-revb/scripts/ld-qemu.script b/boards/risc-v/fe310/hifive1-revb/scripts/ld-qemu.script index ee8756ae53c35..792d901996058 100644 --- a/boards/risc-v/fe310/hifive1-revb/scripts/ld-qemu.script +++ b/boards/risc-v/fe310/hifive1-revb/scripts/ld-qemu.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/fe310/hifive1-revb/scripts/ld-qemu.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/risc-v/fe310/hifive1-revb/scripts/ld.script b/boards/risc-v/fe310/hifive1-revb/scripts/ld.script index 0d8c11782c9ab..eb234f10e4fc3 100644 --- a/boards/risc-v/fe310/hifive1-revb/scripts/ld.script +++ b/boards/risc-v/fe310/hifive1-revb/scripts/ld.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/fe310/hifive1-revb/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/risc-v/fe310/hifive1-revb/src/Makefile b/boards/risc-v/fe310/hifive1-revb/src/Makefile index a6982047cfe04..d67da83bf4e80 100644 --- a/boards/risc-v/fe310/hifive1-revb/src/Makefile +++ b/boards/risc-v/fe310/hifive1-revb/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/fe310/hifive1-revb/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/risc-v/fe310/hifive1-revb/src/fe310_appinit.c b/boards/risc-v/fe310/hifive1-revb/src/fe310_appinit.c index 8bdb849d8c96a..76dd76f98caa9 100644 --- a/boards/risc-v/fe310/hifive1-revb/src/fe310_appinit.c +++ b/boards/risc-v/fe310/hifive1-revb/src/fe310_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/fe310/hifive1-revb/src/fe310_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/risc-v/fe310/hifive1-revb/src/fe310_autoleds.c b/boards/risc-v/fe310/hifive1-revb/src/fe310_autoleds.c index f822526b32334..5dd893402f717 100644 --- a/boards/risc-v/fe310/hifive1-revb/src/fe310_autoleds.c +++ b/boards/risc-v/fe310/hifive1-revb/src/fe310_autoleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/fe310/hifive1-revb/src/fe310_autoleds.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/risc-v/fe310/hifive1-revb/src/fe310_boot.c b/boards/risc-v/fe310/hifive1-revb/src/fe310_boot.c index 860fb67dc1cc6..1adb6403b07ad 100644 --- a/boards/risc-v/fe310/hifive1-revb/src/fe310_boot.c +++ b/boards/risc-v/fe310/hifive1-revb/src/fe310_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/fe310/hifive1-revb/src/fe310_boot.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/risc-v/fe310/hifive1-revb/src/fe310_bringup.c b/boards/risc-v/fe310/hifive1-revb/src/fe310_bringup.c index 02cd3a2699a8f..67945fa487d37 100644 --- a/boards/risc-v/fe310/hifive1-revb/src/fe310_bringup.c +++ b/boards/risc-v/fe310/hifive1-revb/src/fe310_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/fe310/hifive1-revb/src/fe310_bringup.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/risc-v/fe310/hifive1-revb/src/fe310_buttons.c b/boards/risc-v/fe310/hifive1-revb/src/fe310_buttons.c index 384ea75a19ce4..775e97f8dc675 100644 --- a/boards/risc-v/fe310/hifive1-revb/src/fe310_buttons.c +++ b/boards/risc-v/fe310/hifive1-revb/src/fe310_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/fe310/hifive1-revb/src/fe310_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/risc-v/fe310/hifive1-revb/src/hifive1-revb.h b/boards/risc-v/fe310/hifive1-revb/src/hifive1-revb.h index e46af8b173028..e304ee7fd78c8 100644 --- a/boards/risc-v/fe310/hifive1-revb/src/hifive1-revb.h +++ b/boards/risc-v/fe310/hifive1-revb/src/hifive1-revb.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/fe310/hifive1-revb/src/hifive1-revb.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 From 1fc3b4dbee18296406f19f4a46e3a1911dc409b6 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:40:25 +0100 Subject: [PATCH 28/53] boards/risk-v/hpm6000: 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/risc-v/hpm6000/hpm6360evk/CMakeLists.txt | 2 ++ boards/risc-v/hpm6000/hpm6360evk/include/board.h | 2 ++ boards/risc-v/hpm6000/hpm6360evk/scripts/Make.defs | 2 ++ boards/risc-v/hpm6000/hpm6360evk/scripts/flash.script | 2 ++ boards/risc-v/hpm6000/hpm6360evk/scripts/ld.script | 2 ++ boards/risc-v/hpm6000/hpm6360evk/src/CMakeLists.txt | 2 ++ boards/risc-v/hpm6000/hpm6360evk/src/Makefile | 2 ++ boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_appinit.c | 2 ++ boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_autoleds.c | 2 ++ boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_boot.c | 2 ++ boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_bringup.c | 2 ++ boards/risc-v/hpm6000/hpm6360evk/src/hpm6360evk.h | 2 ++ 12 files changed, 24 insertions(+) diff --git a/boards/risc-v/hpm6000/hpm6360evk/CMakeLists.txt b/boards/risc-v/hpm6000/hpm6360evk/CMakeLists.txt index b7a67c0d2b74e..5206de0410358 100644 --- a/boards/risc-v/hpm6000/hpm6360evk/CMakeLists.txt +++ b/boards/risc-v/hpm6000/hpm6360evk/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/risc-v/hpm6000/hpm6360evk/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/risc-v/hpm6000/hpm6360evk/include/board.h b/boards/risc-v/hpm6000/hpm6360evk/include/board.h index 7eb8371a89d46..9392b9cda1459 100644 --- a/boards/risc-v/hpm6000/hpm6360evk/include/board.h +++ b/boards/risc-v/hpm6000/hpm6360evk/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/hpm6000/hpm6360evk/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/risc-v/hpm6000/hpm6360evk/scripts/Make.defs b/boards/risc-v/hpm6000/hpm6360evk/scripts/Make.defs index 617113cf92029..f81cc23383502 100644 --- a/boards/risc-v/hpm6000/hpm6360evk/scripts/Make.defs +++ b/boards/risc-v/hpm6000/hpm6360evk/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/hpm6000/hpm6360evk/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/risc-v/hpm6000/hpm6360evk/scripts/flash.script b/boards/risc-v/hpm6000/hpm6360evk/scripts/flash.script index 25f8fd8aff055..2d92c1e7cfbfa 100644 --- a/boards/risc-v/hpm6000/hpm6360evk/scripts/flash.script +++ b/boards/risc-v/hpm6000/hpm6360evk/scripts/flash.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/hpm6000/hpm6360evk/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/risc-v/hpm6000/hpm6360evk/scripts/ld.script b/boards/risc-v/hpm6000/hpm6360evk/scripts/ld.script index 6f3d8d1a3b81a..6f51bd3c6102c 100644 --- a/boards/risc-v/hpm6000/hpm6360evk/scripts/ld.script +++ b/boards/risc-v/hpm6000/hpm6360evk/scripts/ld.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/hpm6750/hpm6750evk2/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/risc-v/hpm6000/hpm6360evk/src/CMakeLists.txt b/boards/risc-v/hpm6000/hpm6360evk/src/CMakeLists.txt index ce9c6a3067f9c..82a17b1335754 100644 --- a/boards/risc-v/hpm6000/hpm6360evk/src/CMakeLists.txt +++ b/boards/risc-v/hpm6000/hpm6360evk/src/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/risc-v/hpm6000/hpm6360evk/src/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/risc-v/hpm6000/hpm6360evk/src/Makefile b/boards/risc-v/hpm6000/hpm6360evk/src/Makefile index 0ed94a7ed74ac..4cf141fe1b811 100644 --- a/boards/risc-v/hpm6000/hpm6360evk/src/Makefile +++ b/boards/risc-v/hpm6000/hpm6360evk/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/hpm6000/hpm6360evk/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/risc-v/hpm6000/hpm6360evk/src/hpm6360_appinit.c b/boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_appinit.c index dfad6aed9e6a6..6a2d02e5e1475 100644 --- a/boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_appinit.c +++ b/boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_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/risc-v/hpm6000/hpm6360evk/src/hpm6360_autoleds.c b/boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_autoleds.c index 95dca5dbc04ff..ff360914996ea 100644 --- a/boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_autoleds.c +++ b/boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_autoleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_autoleds.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/risc-v/hpm6000/hpm6360evk/src/hpm6360_boot.c b/boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_boot.c index b3f14f88759f8..bbf753661b768 100644 --- a/boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_boot.c +++ b/boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_boot.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/risc-v/hpm6000/hpm6360evk/src/hpm6360_bringup.c b/boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_bringup.c index 9f6a44f0cd73f..d32d9d1817496 100644 --- a/boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_bringup.c +++ b/boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/hpm6000/hpm6360evk/src/hpm6360_bringup.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/risc-v/hpm6000/hpm6360evk/src/hpm6360evk.h b/boards/risc-v/hpm6000/hpm6360evk/src/hpm6360evk.h index 7ba51655a6b55..8ca875bb0e566 100644 --- a/boards/risc-v/hpm6000/hpm6360evk/src/hpm6360evk.h +++ b/boards/risc-v/hpm6000/hpm6360evk/src/hpm6360evk.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/hpm6000/hpm6360evk/src/hpm6360evk.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 From 5f596c28c97005e11ca242f72e05a24180ed7061 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:41:31 +0100 Subject: [PATCH 29/53] boards/risk-v/hpm6750: 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/risc-v/hpm6750/hpm6750evk2/include/board.h | 2 ++ boards/risc-v/hpm6750/hpm6750evk2/scripts/Make.defs | 2 ++ boards/risc-v/hpm6750/hpm6750evk2/scripts/ld.script | 2 ++ boards/risc-v/hpm6750/hpm6750evk2/src/Makefile | 2 ++ boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750_appinit.c | 2 ++ boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750_boot.c | 2 ++ boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750_bringup.c | 2 ++ boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750evk2.h | 2 ++ 8 files changed, 16 insertions(+) diff --git a/boards/risc-v/hpm6750/hpm6750evk2/include/board.h b/boards/risc-v/hpm6750/hpm6750evk2/include/board.h index b682365dd8f82..670f1dc834d79 100644 --- a/boards/risc-v/hpm6750/hpm6750evk2/include/board.h +++ b/boards/risc-v/hpm6750/hpm6750evk2/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/hpm6750/hpm6750evk2/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/risc-v/hpm6750/hpm6750evk2/scripts/Make.defs b/boards/risc-v/hpm6750/hpm6750evk2/scripts/Make.defs index b1f2cadec5fd2..c5e3e969ea738 100644 --- a/boards/risc-v/hpm6750/hpm6750evk2/scripts/Make.defs +++ b/boards/risc-v/hpm6750/hpm6750evk2/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/hpm6750/hpm6750evk2/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/risc-v/hpm6750/hpm6750evk2/scripts/ld.script b/boards/risc-v/hpm6750/hpm6750evk2/scripts/ld.script index 939f1b7dcd513..108cfca1ef272 100644 --- a/boards/risc-v/hpm6750/hpm6750evk2/scripts/ld.script +++ b/boards/risc-v/hpm6750/hpm6750evk2/scripts/ld.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/hpm6750/hpm6750evk2/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/risc-v/hpm6750/hpm6750evk2/src/Makefile b/boards/risc-v/hpm6750/hpm6750evk2/src/Makefile index 7445ebf0f390b..1b926a53679f4 100644 --- a/boards/risc-v/hpm6750/hpm6750evk2/src/Makefile +++ b/boards/risc-v/hpm6750/hpm6750evk2/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/hpm6750/hpm6750evk2/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/risc-v/hpm6750/hpm6750evk2/src/hpm6750_appinit.c b/boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750_appinit.c index a08e91569f1e2..78a5e995a85cb 100644 --- a/boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750_appinit.c +++ b/boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750_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/risc-v/hpm6750/hpm6750evk2/src/hpm6750_boot.c b/boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750_boot.c index 9a029ca4a00f3..0c19de3c16297 100644 --- a/boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750_boot.c +++ b/boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750_boot.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/risc-v/hpm6750/hpm6750evk2/src/hpm6750_bringup.c b/boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750_bringup.c index 4c761c6bfc7fd..616061a3eb78b 100644 --- a/boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750_bringup.c +++ b/boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750_bringup.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/risc-v/hpm6750/hpm6750evk2/src/hpm6750evk2.h b/boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750evk2.h index 1f63aaefcf43e..2d30ebee7a01e 100644 --- a/boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750evk2.h +++ b/boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750evk2.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/hpm6750/hpm6750evk2/src/hpm6750evk2.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 From 0dfb1d1ca7612244cdda48be1c17fa8f6a630fd7 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:42:52 +0100 Subject: [PATCH 30/53] boards/risk-v/jh7110: 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/risc-v/jh7110/star64/include/board.h | 2 ++ boards/risc-v/jh7110/star64/include/board_memorymap.h | 2 ++ boards/risc-v/jh7110/star64/scripts/Make.defs | 2 ++ boards/risc-v/jh7110/star64/scripts/ld.script | 2 ++ boards/risc-v/jh7110/star64/src/Makefile | 2 ++ boards/risc-v/jh7110/star64/src/etc/init.d/rc.sysinit | 2 ++ boards/risc-v/jh7110/star64/src/etc/init.d/rcS | 2 ++ boards/risc-v/jh7110/star64/src/jh7110_appinit.c | 2 ++ 8 files changed, 16 insertions(+) diff --git a/boards/risc-v/jh7110/star64/include/board.h b/boards/risc-v/jh7110/star64/include/board.h index d89fd443c3a78..808b0581f5a20 100644 --- a/boards/risc-v/jh7110/star64/include/board.h +++ b/boards/risc-v/jh7110/star64/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/jh7110/star64/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/risc-v/jh7110/star64/include/board_memorymap.h b/boards/risc-v/jh7110/star64/include/board_memorymap.h index fff0cf0c331b6..07ca88a4026e3 100644 --- a/boards/risc-v/jh7110/star64/include/board_memorymap.h +++ b/boards/risc-v/jh7110/star64/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/jh7110/star64/include/board_memorymap.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/risc-v/jh7110/star64/scripts/Make.defs b/boards/risc-v/jh7110/star64/scripts/Make.defs index b23431bc26d6e..faf5104864aa2 100644 --- a/boards/risc-v/jh7110/star64/scripts/Make.defs +++ b/boards/risc-v/jh7110/star64/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/jh7110/star64/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/risc-v/jh7110/star64/scripts/ld.script b/boards/risc-v/jh7110/star64/scripts/ld.script index 4d9190a9377aa..edf632b07e2d6 100644 --- a/boards/risc-v/jh7110/star64/scripts/ld.script +++ b/boards/risc-v/jh7110/star64/scripts/ld.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/jh7110/star64/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/risc-v/jh7110/star64/src/Makefile b/boards/risc-v/jh7110/star64/src/Makefile index 5e1db22d8e443..c767f4330ae28 100644 --- a/boards/risc-v/jh7110/star64/src/Makefile +++ b/boards/risc-v/jh7110/star64/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/jh7110/star64/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/risc-v/jh7110/star64/src/etc/init.d/rc.sysinit b/boards/risc-v/jh7110/star64/src/etc/init.d/rc.sysinit index e7dbec7a0155d..00af393d4e807 100644 --- a/boards/risc-v/jh7110/star64/src/etc/init.d/rc.sysinit +++ b/boards/risc-v/jh7110/star64/src/etc/init.d/rc.sysinit @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/jh7110/star64/src/etc/init.d/rc.sysinit * + * 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/risc-v/jh7110/star64/src/etc/init.d/rcS b/boards/risc-v/jh7110/star64/src/etc/init.d/rcS index bd202a4b83422..a3581f8e7c311 100644 --- a/boards/risc-v/jh7110/star64/src/etc/init.d/rcS +++ b/boards/risc-v/jh7110/star64/src/etc/init.d/rcS @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/jh7110/star64/src/etc/init.d/rcS * + * 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/risc-v/jh7110/star64/src/jh7110_appinit.c b/boards/risc-v/jh7110/star64/src/jh7110_appinit.c index e2668adbe5395..ec6e1d169e94c 100644 --- a/boards/risc-v/jh7110/star64/src/jh7110_appinit.c +++ b/boards/risc-v/jh7110/star64/src/jh7110_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/jh7110/star64/src/jh7110_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 From cf67b1108466216dd7b559ab7f6c2ed651c39bea Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:44:53 +0100 Subject: [PATCH 31/53] boards/risk-v/k210: 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/risc-v/k210/maix-bit/CMakeLists.txt | 2 ++ boards/risc-v/k210/maix-bit/include/board.h | 2 ++ boards/risc-v/k210/maix-bit/kernel/Makefile | 2 ++ boards/risc-v/k210/maix-bit/kernel/k210_userspace.c | 2 ++ boards/risc-v/k210/maix-bit/scripts/Make.defs | 2 ++ boards/risc-v/k210/maix-bit/scripts/ld.script | 2 ++ boards/risc-v/k210/maix-bit/scripts/memory.ld | 2 ++ boards/risc-v/k210/maix-bit/scripts/user-space.ld | 2 ++ boards/risc-v/k210/maix-bit/src/CMakeLists.txt | 2 ++ boards/risc-v/k210/maix-bit/src/Makefile | 2 ++ boards/risc-v/k210/maix-bit/src/k210_appinit.c | 2 ++ boards/risc-v/k210/maix-bit/src/k210_boot.c | 2 ++ boards/risc-v/k210/maix-bit/src/k210_bringup.c | 2 ++ boards/risc-v/k210/maix-bit/src/k210_gpio.c | 2 ++ boards/risc-v/k210/maix-bit/src/k210_leds.c | 2 ++ boards/risc-v/k210/maix-bit/src/maix-bit.h | 2 ++ 16 files changed, 32 insertions(+) diff --git a/boards/risc-v/k210/maix-bit/CMakeLists.txt b/boards/risc-v/k210/maix-bit/CMakeLists.txt index 676e73f2454c5..b9a73dbbb5481 100644 --- a/boards/risc-v/k210/maix-bit/CMakeLists.txt +++ b/boards/risc-v/k210/maix-bit/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/risc-v/k210/maix-bit/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/risc-v/k210/maix-bit/include/board.h b/boards/risc-v/k210/maix-bit/include/board.h index 03954859f4186..cba6aa49c30ff 100644 --- a/boards/risc-v/k210/maix-bit/include/board.h +++ b/boards/risc-v/k210/maix-bit/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k210/maix-bit/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/risc-v/k210/maix-bit/kernel/Makefile b/boards/risc-v/k210/maix-bit/kernel/Makefile index 7df8fc03d6c3f..a1cf18d8534fd 100644 --- a/boards/risc-v/k210/maix-bit/kernel/Makefile +++ b/boards/risc-v/k210/maix-bit/kernel/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/k210/maix-bit/kernel/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/risc-v/k210/maix-bit/kernel/k210_userspace.c b/boards/risc-v/k210/maix-bit/kernel/k210_userspace.c index 3b190952b4ab6..b4d7df2848940 100644 --- a/boards/risc-v/k210/maix-bit/kernel/k210_userspace.c +++ b/boards/risc-v/k210/maix-bit/kernel/k210_userspace.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k210/maix-bit/kernel/k210_userspace.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/risc-v/k210/maix-bit/scripts/Make.defs b/boards/risc-v/k210/maix-bit/scripts/Make.defs index e88852db40034..37aaf90bcf121 100644 --- a/boards/risc-v/k210/maix-bit/scripts/Make.defs +++ b/boards/risc-v/k210/maix-bit/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/k210/maix-bit/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/risc-v/k210/maix-bit/scripts/ld.script b/boards/risc-v/k210/maix-bit/scripts/ld.script index 18309d59eb0a1..02cdaa66e6f16 100644 --- a/boards/risc-v/k210/maix-bit/scripts/ld.script +++ b/boards/risc-v/k210/maix-bit/scripts/ld.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k210/maix-bit/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/risc-v/k210/maix-bit/scripts/memory.ld b/boards/risc-v/k210/maix-bit/scripts/memory.ld index bf257e574533f..8c8ec6b7c164d 100644 --- a/boards/risc-v/k210/maix-bit/scripts/memory.ld +++ b/boards/risc-v/k210/maix-bit/scripts/memory.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k210/maix-bit/scripts/memory.ld * + * 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/risc-v/k210/maix-bit/scripts/user-space.ld b/boards/risc-v/k210/maix-bit/scripts/user-space.ld index 5927c721bb829..cd0203324bf94 100644 --- a/boards/risc-v/k210/maix-bit/scripts/user-space.ld +++ b/boards/risc-v/k210/maix-bit/scripts/user-space.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k210/maix-bit/scripts/user-space.ld * + * 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/risc-v/k210/maix-bit/src/CMakeLists.txt b/boards/risc-v/k210/maix-bit/src/CMakeLists.txt index 6c08ad41246eb..ac80690b75676 100644 --- a/boards/risc-v/k210/maix-bit/src/CMakeLists.txt +++ b/boards/risc-v/k210/maix-bit/src/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/risc-v/k230/canmv230/src/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/risc-v/k210/maix-bit/src/Makefile b/boards/risc-v/k210/maix-bit/src/Makefile index 8c2db777a141c..7b71046af22fb 100644 --- a/boards/risc-v/k210/maix-bit/src/Makefile +++ b/boards/risc-v/k210/maix-bit/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/k210/maix-bit/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/risc-v/k210/maix-bit/src/k210_appinit.c b/boards/risc-v/k210/maix-bit/src/k210_appinit.c index 32b25ff7d365b..210c93a3fdd25 100644 --- a/boards/risc-v/k210/maix-bit/src/k210_appinit.c +++ b/boards/risc-v/k210/maix-bit/src/k210_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k210/maix-bit/src/k210_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/risc-v/k210/maix-bit/src/k210_boot.c b/boards/risc-v/k210/maix-bit/src/k210_boot.c index 7961e73b24f55..d9d5f0b652892 100644 --- a/boards/risc-v/k210/maix-bit/src/k210_boot.c +++ b/boards/risc-v/k210/maix-bit/src/k210_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k210/maix-bit/src/k210_boot.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/risc-v/k210/maix-bit/src/k210_bringup.c b/boards/risc-v/k210/maix-bit/src/k210_bringup.c index c722275e1c4e5..e84e7332f163c 100644 --- a/boards/risc-v/k210/maix-bit/src/k210_bringup.c +++ b/boards/risc-v/k210/maix-bit/src/k210_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k210/maix-bit/src/k210_bringup.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/risc-v/k210/maix-bit/src/k210_gpio.c b/boards/risc-v/k210/maix-bit/src/k210_gpio.c index 6ccc5b441ad29..6fbb41a514459 100644 --- a/boards/risc-v/k210/maix-bit/src/k210_gpio.c +++ b/boards/risc-v/k210/maix-bit/src/k210_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k210/maix-bit/src/k210_gpio.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/risc-v/k210/maix-bit/src/k210_leds.c b/boards/risc-v/k210/maix-bit/src/k210_leds.c index 15442cb510614..6dbe2a6002ae3 100644 --- a/boards/risc-v/k210/maix-bit/src/k210_leds.c +++ b/boards/risc-v/k210/maix-bit/src/k210_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k210/maix-bit/src/k210_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/risc-v/k210/maix-bit/src/maix-bit.h b/boards/risc-v/k210/maix-bit/src/maix-bit.h index a0cb76148ad3f..82fa934db3ccc 100644 --- a/boards/risc-v/k210/maix-bit/src/maix-bit.h +++ b/boards/risc-v/k210/maix-bit/src/maix-bit.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k210/maix-bit/src/maix-bit.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 From a124ef2532b41fadde57b45dcc0819d5b9c20660 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:47:29 +0100 Subject: [PATCH 32/53] boards/risk-v/k230: 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/risc-v/k230/canmv230/CMakeLists.txt | 2 ++ boards/risc-v/k230/canmv230/include/board.h | 2 ++ boards/risc-v/k230/canmv230/include/board_memorymap.h | 2 ++ boards/risc-v/k230/canmv230/kernel/Makefile | 2 ++ boards/risc-v/k230/canmv230/kernel/k230_userspace.c | 2 ++ boards/risc-v/k230/canmv230/scripts/Make.defs | 2 ++ boards/risc-v/k230/canmv230/scripts/gnu-elf.ld | 2 ++ boards/risc-v/k230/canmv230/scripts/ld-flat.script | 2 ++ boards/risc-v/k230/canmv230/scripts/ld-kernel.script | 2 ++ boards/risc-v/k230/canmv230/scripts/ld-nuttsbi.script | 2 ++ boards/risc-v/k230/canmv230/scripts/ld-protected.mem | 2 ++ boards/risc-v/k230/canmv230/scripts/ld-protected.script | 2 ++ boards/risc-v/k230/canmv230/scripts/ld-userland.script | 2 ++ boards/risc-v/k230/canmv230/src/CMakeLists.txt | 2 ++ boards/risc-v/k230/canmv230/src/Makefile | 2 ++ boards/risc-v/k230/canmv230/src/canmv_init.c | 2 ++ boards/risc-v/k230/canmv230/src/etc/init.d/rc.sysinit | 2 ++ boards/risc-v/k230/canmv230/src/etc/init.d/rcS | 2 ++ boards/risc-v/k230/canmv230/src/romfs.h | 2 ++ boards/risc-v/k230/canmv230/src/romfs_stub.c | 2 ++ 20 files changed, 40 insertions(+) diff --git a/boards/risc-v/k230/canmv230/CMakeLists.txt b/boards/risc-v/k230/canmv230/CMakeLists.txt index 66e5edf33a0ca..30f16d08637b7 100644 --- a/boards/risc-v/k230/canmv230/CMakeLists.txt +++ b/boards/risc-v/k230/canmv230/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/risc-v/k230/canmv230/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/risc-v/k230/canmv230/include/board.h b/boards/risc-v/k230/canmv230/include/board.h index d27bbcb107929..07a403cbca5b1 100644 --- a/boards/risc-v/k230/canmv230/include/board.h +++ b/boards/risc-v/k230/canmv230/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k230/canmv230/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/risc-v/k230/canmv230/include/board_memorymap.h b/boards/risc-v/k230/canmv230/include/board_memorymap.h index 4c5a5e09d3953..f76bd021e0caf 100644 --- a/boards/risc-v/k230/canmv230/include/board_memorymap.h +++ b/boards/risc-v/k230/canmv230/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k230/canmv230/include/board_memorymap.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/risc-v/k230/canmv230/kernel/Makefile b/boards/risc-v/k230/canmv230/kernel/Makefile index 1cbb70ed76034..cc180ccc1a2cd 100644 --- a/boards/risc-v/k230/canmv230/kernel/Makefile +++ b/boards/risc-v/k230/canmv230/kernel/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/k230/canmv230/kernel/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/risc-v/k230/canmv230/kernel/k230_userspace.c b/boards/risc-v/k230/canmv230/kernel/k230_userspace.c index c399a795d48f3..133a4dc4771d5 100644 --- a/boards/risc-v/k230/canmv230/kernel/k230_userspace.c +++ b/boards/risc-v/k230/canmv230/kernel/k230_userspace.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k230/canmv230/kernel/k230_userspace.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/risc-v/k230/canmv230/scripts/Make.defs b/boards/risc-v/k230/canmv230/scripts/Make.defs index da54ecd24c117..13a6668085944 100644 --- a/boards/risc-v/k230/canmv230/scripts/Make.defs +++ b/boards/risc-v/k230/canmv230/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/k230/canmv230/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/risc-v/k230/canmv230/scripts/gnu-elf.ld b/boards/risc-v/k230/canmv230/scripts/gnu-elf.ld index c304a4398241e..0c0d18f434a27 100644 --- a/boards/risc-v/k230/canmv230/scripts/gnu-elf.ld +++ b/boards/risc-v/k230/canmv230/scripts/gnu-elf.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k230/camnv230/scripts/gnu-elf.ld * + * 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/risc-v/k230/canmv230/scripts/ld-flat.script b/boards/risc-v/k230/canmv230/scripts/ld-flat.script index 3e340ddfaae3f..d61c2836ddc9b 100644 --- a/boards/risc-v/k230/canmv230/scripts/ld-flat.script +++ b/boards/risc-v/k230/canmv230/scripts/ld-flat.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k230/canmv230/scripts/ld-flat.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/risc-v/k230/canmv230/scripts/ld-kernel.script b/boards/risc-v/k230/canmv230/scripts/ld-kernel.script index cf673c7456b92..984d3bb6781f6 100644 --- a/boards/risc-v/k230/canmv230/scripts/ld-kernel.script +++ b/boards/risc-v/k230/canmv230/scripts/ld-kernel.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k230/canmv230/scripts/ld-kernel.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/risc-v/k230/canmv230/scripts/ld-nuttsbi.script b/boards/risc-v/k230/canmv230/scripts/ld-nuttsbi.script index 725a5fdad3637..cc988f7af6f3d 100644 --- a/boards/risc-v/k230/canmv230/scripts/ld-nuttsbi.script +++ b/boards/risc-v/k230/canmv230/scripts/ld-nuttsbi.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k230/canmv230/scripts/ld-nuttsbi.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/risc-v/k230/canmv230/scripts/ld-protected.mem b/boards/risc-v/k230/canmv230/scripts/ld-protected.mem index 9f90b679bf804..91f5a717f956a 100644 --- a/boards/risc-v/k230/canmv230/scripts/ld-protected.mem +++ b/boards/risc-v/k230/canmv230/scripts/ld-protected.mem @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k230/canmv230/scripts/ld-protected.mem * + * 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/risc-v/k230/canmv230/scripts/ld-protected.script b/boards/risc-v/k230/canmv230/scripts/ld-protected.script index 05d6a25fc52c0..eecba18401f18 100644 --- a/boards/risc-v/k230/canmv230/scripts/ld-protected.script +++ b/boards/risc-v/k230/canmv230/scripts/ld-protected.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k230/canmv230/scripts/ld-protected.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/risc-v/k230/canmv230/scripts/ld-userland.script b/boards/risc-v/k230/canmv230/scripts/ld-userland.script index e75ddb1a18dc2..d0e8683cac755 100644 --- a/boards/risc-v/k230/canmv230/scripts/ld-userland.script +++ b/boards/risc-v/k230/canmv230/scripts/ld-userland.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k230/canmv230/scripts/ld-userland.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/risc-v/k230/canmv230/src/CMakeLists.txt b/boards/risc-v/k230/canmv230/src/CMakeLists.txt index 9628318bca588..e4b1655f6410d 100644 --- a/boards/risc-v/k230/canmv230/src/CMakeLists.txt +++ b/boards/risc-v/k230/canmv230/src/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/risc-v/k230/canmv230/src/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/risc-v/k230/canmv230/src/Makefile b/boards/risc-v/k230/canmv230/src/Makefile index 352df6a5929cd..4673ef50ffb63 100644 --- a/boards/risc-v/k230/canmv230/src/Makefile +++ b/boards/risc-v/k230/canmv230/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/k230/canmv230/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/risc-v/k230/canmv230/src/canmv_init.c b/boards/risc-v/k230/canmv230/src/canmv_init.c index c3ebc88e01cb6..42be93c734268 100644 --- a/boards/risc-v/k230/canmv230/src/canmv_init.c +++ b/boards/risc-v/k230/canmv230/src/canmv_init.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k230/canmv230/src/canmv_init.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/risc-v/k230/canmv230/src/etc/init.d/rc.sysinit b/boards/risc-v/k230/canmv230/src/etc/init.d/rc.sysinit index 2568ac0129f37..4d4fea6b7700c 100644 --- a/boards/risc-v/k230/canmv230/src/etc/init.d/rc.sysinit +++ b/boards/risc-v/k230/canmv230/src/etc/init.d/rc.sysinit @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k230/canmv230/src/etc/init.d/rc.sysinit * + * 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/risc-v/k230/canmv230/src/etc/init.d/rcS b/boards/risc-v/k230/canmv230/src/etc/init.d/rcS index 328cde500b818..58eb5a8873207 100644 --- a/boards/risc-v/k230/canmv230/src/etc/init.d/rcS +++ b/boards/risc-v/k230/canmv230/src/etc/init.d/rcS @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k230/canmv230/src/etc/init.d/rcS * + * 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/risc-v/k230/canmv230/src/romfs.h b/boards/risc-v/k230/canmv230/src/romfs.h index 4578780ffd8dc..8f4b26e330d98 100644 --- a/boards/risc-v/k230/canmv230/src/romfs.h +++ b/boards/risc-v/k230/canmv230/src/romfs.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k230/canmv230/src/romfs.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/risc-v/k230/canmv230/src/romfs_stub.c b/boards/risc-v/k230/canmv230/src/romfs_stub.c index ea39e5e6a3c87..9cc2acc707dff 100644 --- a/boards/risc-v/k230/canmv230/src/romfs_stub.c +++ b/boards/risc-v/k230/canmv230/src/romfs_stub.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/k230/canmv230/src/romfs_stub.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 From 90f876bbacb5ed7b07ea190e51094b04d09c4008 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:49:13 +0100 Subject: [PATCH 33/53] boards/risk-v/litex: 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/risc-v/litex/arty_a7/include/board.h | 2 ++ boards/risc-v/litex/arty_a7/include/board_memorymap.h | 2 ++ boards/risc-v/litex/arty_a7/scripts/Make.defs | 2 ++ boards/risc-v/litex/arty_a7/scripts/gnu-elf.ld | 2 ++ boards/risc-v/litex/arty_a7/scripts/ld-kernel.script | 2 ++ boards/risc-v/litex/arty_a7/scripts/ld.script | 2 ++ boards/risc-v/litex/arty_a7/src/Makefile | 2 ++ boards/risc-v/litex/arty_a7/src/arty_a7.h | 2 ++ boards/risc-v/litex/arty_a7/src/litex_appinit.c | 2 ++ boards/risc-v/litex/arty_a7/src/litex_automount.c | 2 ++ boards/risc-v/litex/arty_a7/src/litex_boot.c | 2 ++ boards/risc-v/litex/arty_a7/src/litex_bringup.c | 2 ++ boards/risc-v/litex/arty_a7/src/litex_pwm.c | 2 ++ boards/risc-v/litex/arty_a7/src/litex_ramdisk.c | 2 ++ boards/risc-v/litex/arty_a7/src/litex_reset.c | 2 ++ boards/risc-v/litex/arty_a7/src/litex_sdio.c | 2 ++ 16 files changed, 32 insertions(+) diff --git a/boards/risc-v/litex/arty_a7/include/board.h b/boards/risc-v/litex/arty_a7/include/board.h index f9b5e649c324a..67765e8828ebe 100644 --- a/boards/risc-v/litex/arty_a7/include/board.h +++ b/boards/risc-v/litex/arty_a7/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/litex/arty_a7/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/risc-v/litex/arty_a7/include/board_memorymap.h b/boards/risc-v/litex/arty_a7/include/board_memorymap.h index 73e2d644978e3..04158aea0a186 100644 --- a/boards/risc-v/litex/arty_a7/include/board_memorymap.h +++ b/boards/risc-v/litex/arty_a7/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/litex/arty_a7/include/board_memorymap.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/risc-v/litex/arty_a7/scripts/Make.defs b/boards/risc-v/litex/arty_a7/scripts/Make.defs index b66dae9d2c3ce..207b83d03ef80 100644 --- a/boards/risc-v/litex/arty_a7/scripts/Make.defs +++ b/boards/risc-v/litex/arty_a7/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/litex/arty_a7/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/risc-v/litex/arty_a7/scripts/gnu-elf.ld b/boards/risc-v/litex/arty_a7/scripts/gnu-elf.ld index f9220d16e6828..70a931e7dbb7e 100644 --- a/boards/risc-v/litex/arty_a7/scripts/gnu-elf.ld +++ b/boards/risc-v/litex/arty_a7/scripts/gnu-elf.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/litex/arty_a7/scripts/gnu-elf.ld * + * 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/risc-v/litex/arty_a7/scripts/ld-kernel.script b/boards/risc-v/litex/arty_a7/scripts/ld-kernel.script index 3ee313aeb4bfd..af489be4185cc 100644 --- a/boards/risc-v/litex/arty_a7/scripts/ld-kernel.script +++ b/boards/risc-v/litex/arty_a7/scripts/ld-kernel.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/litex/arty_a7/scripts/ld-kernel.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/risc-v/litex/arty_a7/scripts/ld.script b/boards/risc-v/litex/arty_a7/scripts/ld.script index d5e50dee634cf..24a1bc3854fd4 100644 --- a/boards/risc-v/litex/arty_a7/scripts/ld.script +++ b/boards/risc-v/litex/arty_a7/scripts/ld.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/litex/arty_a7/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/risc-v/litex/arty_a7/src/Makefile b/boards/risc-v/litex/arty_a7/src/Makefile index 65518bffa45ed..4d2aecfcb87e8 100644 --- a/boards/risc-v/litex/arty_a7/src/Makefile +++ b/boards/risc-v/litex/arty_a7/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/litex/arty_a7/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/risc-v/litex/arty_a7/src/arty_a7.h b/boards/risc-v/litex/arty_a7/src/arty_a7.h index cb0ee0795eab4..be75f289059f5 100644 --- a/boards/risc-v/litex/arty_a7/src/arty_a7.h +++ b/boards/risc-v/litex/arty_a7/src/arty_a7.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/litex/arty_a7/src/arty_a7.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/risc-v/litex/arty_a7/src/litex_appinit.c b/boards/risc-v/litex/arty_a7/src/litex_appinit.c index 7371433f4689e..095cd54cbc405 100644 --- a/boards/risc-v/litex/arty_a7/src/litex_appinit.c +++ b/boards/risc-v/litex/arty_a7/src/litex_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/litex/arty_a7/src/litex_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/risc-v/litex/arty_a7/src/litex_automount.c b/boards/risc-v/litex/arty_a7/src/litex_automount.c index 4abdce06b87e1..c332025dc5eeb 100644 --- a/boards/risc-v/litex/arty_a7/src/litex_automount.c +++ b/boards/risc-v/litex/arty_a7/src/litex_automount.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/litex/arty_a7/src/litex_automount.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/risc-v/litex/arty_a7/src/litex_boot.c b/boards/risc-v/litex/arty_a7/src/litex_boot.c index 43a3c7a0df243..7d910281174e1 100644 --- a/boards/risc-v/litex/arty_a7/src/litex_boot.c +++ b/boards/risc-v/litex/arty_a7/src/litex_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/litex/arty_a7/src/litex_boot.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/risc-v/litex/arty_a7/src/litex_bringup.c b/boards/risc-v/litex/arty_a7/src/litex_bringup.c index 426dba8e75fda..af6df3b353b66 100644 --- a/boards/risc-v/litex/arty_a7/src/litex_bringup.c +++ b/boards/risc-v/litex/arty_a7/src/litex_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/litex/arty_a7/src/litex_bringup.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/risc-v/litex/arty_a7/src/litex_pwm.c b/boards/risc-v/litex/arty_a7/src/litex_pwm.c index c61eb49f2e75f..1a74133c20c5b 100644 --- a/boards/risc-v/litex/arty_a7/src/litex_pwm.c +++ b/boards/risc-v/litex/arty_a7/src/litex_pwm.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/litex/arty_a7/src/litex_pwm.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/risc-v/litex/arty_a7/src/litex_ramdisk.c b/boards/risc-v/litex/arty_a7/src/litex_ramdisk.c index 6f413cd663f4d..41c0a52322cab 100644 --- a/boards/risc-v/litex/arty_a7/src/litex_ramdisk.c +++ b/boards/risc-v/litex/arty_a7/src/litex_ramdisk.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/litex/arty_a7/src/litex_ramdisk.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/risc-v/litex/arty_a7/src/litex_reset.c b/boards/risc-v/litex/arty_a7/src/litex_reset.c index 2f3445fae7e0d..0f99587fe10d4 100644 --- a/boards/risc-v/litex/arty_a7/src/litex_reset.c +++ b/boards/risc-v/litex/arty_a7/src/litex_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/litex/arty_a7/src/litex_reset.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/risc-v/litex/arty_a7/src/litex_sdio.c b/boards/risc-v/litex/arty_a7/src/litex_sdio.c index 1b731e9cce70a..232d719eca0ac 100644 --- a/boards/risc-v/litex/arty_a7/src/litex_sdio.c +++ b/boards/risc-v/litex/arty_a7/src/litex_sdio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/litex/arty_a7/src/litex_sdio.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 From a52d9c73a5658d49541c6d9f0ade1b3750743cf7 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:53:39 +0100 Subject: [PATCH 34/53] boards/risk-v/mpfs: 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/risc-v/mpfs/common/Makefile | 2 ++ boards/risc-v/mpfs/common/kernel/Makefile | 2 ++ boards/risc-v/mpfs/common/kernel/mpfs_userspace.c | 2 ++ boards/risc-v/mpfs/common/src/Make.defs | 2 ++ boards/risc-v/mpfs/common/src/mpfs_board_spi.c | 2 ++ boards/risc-v/mpfs/common/src/mpfs_boot.c | 2 ++ boards/risc-v/mpfs/common/src/mpfs_composite.c | 2 ++ boards/risc-v/mpfs/common/src/mpfs_emmcsd.c | 2 ++ boards/risc-v/mpfs/common/src/mpfs_i2c.c | 2 ++ boards/risc-v/mpfs/common/src/mpfs_ihc.c | 2 ++ boards/risc-v/mpfs/common/src/mpfs_pwm.c | 2 ++ boards/risc-v/mpfs/common/src/mpfs_usb.c | 2 ++ boards/risc-v/mpfs/icicle/include/board.h | 2 ++ boards/risc-v/mpfs/icicle/include/board_liberodefs.h | 2 ++ boards/risc-v/mpfs/icicle/include/board_memorymap.h | 2 ++ boards/risc-v/mpfs/icicle/include/boot_romfsimg.h | 2 ++ boards/risc-v/mpfs/icicle/scripts/Make.defs | 2 ++ boards/risc-v/mpfs/icicle/scripts/kernel-space.ld | 2 ++ boards/risc-v/mpfs/icicle/scripts/ld-envm-opensbi.script | 2 ++ boards/risc-v/mpfs/icicle/scripts/ld-envm.script | 2 ++ boards/risc-v/mpfs/icicle/scripts/ld-ihc-ch2.script | 2 ++ boards/risc-v/mpfs/icicle/scripts/ld-ihc.script | 2 ++ boards/risc-v/mpfs/icicle/scripts/ld-kernel.script | 2 ++ boards/risc-v/mpfs/icicle/scripts/ld.script | 2 ++ boards/risc-v/mpfs/icicle/scripts/memory.ld | 2 ++ boards/risc-v/mpfs/icicle/scripts/user-space.ld | 2 ++ boards/risc-v/mpfs/icicle/src/Make.defs | 2 ++ boards/risc-v/mpfs/icicle/src/board_config.h | 2 ++ boards/risc-v/mpfs/icicle/src/mpfs_appinit.c | 2 ++ boards/risc-v/mpfs/icicle/src/mpfs_autoleds.c | 2 ++ boards/risc-v/mpfs/icicle/src/mpfs_bringup.c | 2 ++ boards/risc-v/mpfs/m100pfsevp/include/board.h | 2 ++ boards/risc-v/mpfs/m100pfsevp/include/board_liberodefs.h | 2 ++ boards/risc-v/mpfs/m100pfsevp/scripts/Make.defs | 2 ++ boards/risc-v/mpfs/m100pfsevp/scripts/ld-envm.script | 2 ++ boards/risc-v/mpfs/m100pfsevp/scripts/ld.script | 2 ++ boards/risc-v/mpfs/m100pfsevp/scripts/memory.ld | 2 ++ boards/risc-v/mpfs/m100pfsevp/scripts/user-space.ld | 2 ++ boards/risc-v/mpfs/m100pfsevp/src/Make.defs | 2 ++ boards/risc-v/mpfs/m100pfsevp/src/board_config.h | 2 ++ boards/risc-v/mpfs/m100pfsevp/src/mpfs_appinit.c | 2 ++ boards/risc-v/mpfs/m100pfsevp/src/mpfs_autoleds.c | 2 ++ boards/risc-v/mpfs/m100pfsevp/src/mpfs_bringup.c | 2 ++ 43 files changed, 86 insertions(+) diff --git a/boards/risc-v/mpfs/common/Makefile b/boards/risc-v/mpfs/common/Makefile index de2216be2bf89..8483dcb63622f 100644 --- a/boards/risc-v/mpfs/common/Makefile +++ b/boards/risc-v/mpfs/common/Makefile @@ -1,6 +1,8 @@ ############################################################################# # boards/risc-v/mpfs/common/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/risc-v/mpfs/common/kernel/Makefile b/boards/risc-v/mpfs/common/kernel/Makefile index 0566d6873f90c..7c7d2e95ebd4c 100644 --- a/boards/risc-v/mpfs/common/kernel/Makefile +++ b/boards/risc-v/mpfs/common/kernel/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/mpfs/common/kernel/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/risc-v/mpfs/common/kernel/mpfs_userspace.c b/boards/risc-v/mpfs/common/kernel/mpfs_userspace.c index af81b1a5c91be..6f09ccf665415 100644 --- a/boards/risc-v/mpfs/common/kernel/mpfs_userspace.c +++ b/boards/risc-v/mpfs/common/kernel/mpfs_userspace.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/common/kernel/mpfs_userspace.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/risc-v/mpfs/common/src/Make.defs b/boards/risc-v/mpfs/common/src/Make.defs index 6d8a99fbe36cf..23a342030a78b 100644 --- a/boards/risc-v/mpfs/common/src/Make.defs +++ b/boards/risc-v/mpfs/common/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/mpfs/common/src/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/risc-v/mpfs/common/src/mpfs_board_spi.c b/boards/risc-v/mpfs/common/src/mpfs_board_spi.c index 3ecd9d22880e6..c5ac2550ac3b0 100644 --- a/boards/risc-v/mpfs/common/src/mpfs_board_spi.c +++ b/boards/risc-v/mpfs/common/src/mpfs_board_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/common/src/mpfs_board_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 diff --git a/boards/risc-v/mpfs/common/src/mpfs_boot.c b/boards/risc-v/mpfs/common/src/mpfs_boot.c index 2a8ab7e3acb36..2a78fe728162e 100644 --- a/boards/risc-v/mpfs/common/src/mpfs_boot.c +++ b/boards/risc-v/mpfs/common/src/mpfs_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/common/src/mpfs_boot.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/risc-v/mpfs/common/src/mpfs_composite.c b/boards/risc-v/mpfs/common/src/mpfs_composite.c index ef24c9c58893b..33e1b15b19bdf 100644 --- a/boards/risc-v/mpfs/common/src/mpfs_composite.c +++ b/boards/risc-v/mpfs/common/src/mpfs_composite.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/common/src/mpfs_composite.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/risc-v/mpfs/common/src/mpfs_emmcsd.c b/boards/risc-v/mpfs/common/src/mpfs_emmcsd.c index d414ab1402307..9d057daa0d8bb 100644 --- a/boards/risc-v/mpfs/common/src/mpfs_emmcsd.c +++ b/boards/risc-v/mpfs/common/src/mpfs_emmcsd.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/common/src/mpfs_emmcsd.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/risc-v/mpfs/common/src/mpfs_i2c.c b/boards/risc-v/mpfs/common/src/mpfs_i2c.c index 22aa84a433523..fd2038593eec9 100644 --- a/boards/risc-v/mpfs/common/src/mpfs_i2c.c +++ b/boards/risc-v/mpfs/common/src/mpfs_i2c.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/common/src/mpfs_i2c.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/risc-v/mpfs/common/src/mpfs_ihc.c b/boards/risc-v/mpfs/common/src/mpfs_ihc.c index f2ae898a3b5d8..58b1035aa8322 100644 --- a/boards/risc-v/mpfs/common/src/mpfs_ihc.c +++ b/boards/risc-v/mpfs/common/src/mpfs_ihc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/common/src/mpfs_ihc.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/risc-v/mpfs/common/src/mpfs_pwm.c b/boards/risc-v/mpfs/common/src/mpfs_pwm.c index 36dab103082b5..9a1af58b80101 100644 --- a/boards/risc-v/mpfs/common/src/mpfs_pwm.c +++ b/boards/risc-v/mpfs/common/src/mpfs_pwm.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/common/src/mpfs_pwm.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/risc-v/mpfs/common/src/mpfs_usb.c b/boards/risc-v/mpfs/common/src/mpfs_usb.c index 0c198aeb81bae..ae249b987bae4 100644 --- a/boards/risc-v/mpfs/common/src/mpfs_usb.c +++ b/boards/risc-v/mpfs/common/src/mpfs_usb.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/common/src/mpfs_usb.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/risc-v/mpfs/icicle/include/board.h b/boards/risc-v/mpfs/icicle/include/board.h index 85834a553bc5e..702c03f433cdf 100644 --- a/boards/risc-v/mpfs/icicle/include/board.h +++ b/boards/risc-v/mpfs/icicle/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/icicle/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/risc-v/mpfs/icicle/include/board_liberodefs.h b/boards/risc-v/mpfs/icicle/include/board_liberodefs.h index badac2bdf4142..fd19f9fec7faa 100644 --- a/boards/risc-v/mpfs/icicle/include/board_liberodefs.h +++ b/boards/risc-v/mpfs/icicle/include/board_liberodefs.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/icicle/include/board_liberodefs.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/risc-v/mpfs/icicle/include/board_memorymap.h b/boards/risc-v/mpfs/icicle/include/board_memorymap.h index 47cac1185796c..eb682b124b709 100644 --- a/boards/risc-v/mpfs/icicle/include/board_memorymap.h +++ b/boards/risc-v/mpfs/icicle/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/icicle/include/board_memorymap.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/risc-v/mpfs/icicle/include/boot_romfsimg.h b/boards/risc-v/mpfs/icicle/include/boot_romfsimg.h index 863dd2440d1f9..dab6db06cbb5a 100644 --- a/boards/risc-v/mpfs/icicle/include/boot_romfsimg.h +++ b/boards/risc-v/mpfs/icicle/include/boot_romfsimg.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/icicle/include/boot_romfsimg.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/risc-v/mpfs/icicle/scripts/Make.defs b/boards/risc-v/mpfs/icicle/scripts/Make.defs index 29e7d653e9985..def80ddb6a598 100644 --- a/boards/risc-v/mpfs/icicle/scripts/Make.defs +++ b/boards/risc-v/mpfs/icicle/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/mpfs/icicle/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/risc-v/mpfs/icicle/scripts/kernel-space.ld b/boards/risc-v/mpfs/icicle/scripts/kernel-space.ld index 81f7e744d55af..5b77b8b36bb8a 100644 --- a/boards/risc-v/mpfs/icicle/scripts/kernel-space.ld +++ b/boards/risc-v/mpfs/icicle/scripts/kernel-space.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/icicle/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/risc-v/mpfs/icicle/scripts/ld-envm-opensbi.script b/boards/risc-v/mpfs/icicle/scripts/ld-envm-opensbi.script index fb312819ca164..4d9ccf0636de5 100644 --- a/boards/risc-v/mpfs/icicle/scripts/ld-envm-opensbi.script +++ b/boards/risc-v/mpfs/icicle/scripts/ld-envm-opensbi.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/icicle/scripts/ld-envm.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/risc-v/mpfs/icicle/scripts/ld-envm.script b/boards/risc-v/mpfs/icicle/scripts/ld-envm.script index 7c845e51f0900..132cac0731789 100644 --- a/boards/risc-v/mpfs/icicle/scripts/ld-envm.script +++ b/boards/risc-v/mpfs/icicle/scripts/ld-envm.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/icicle/scripts/ld-envm.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/risc-v/mpfs/icicle/scripts/ld-ihc-ch2.script b/boards/risc-v/mpfs/icicle/scripts/ld-ihc-ch2.script index 54a85ee87c97b..bebae721cafd8 100644 --- a/boards/risc-v/mpfs/icicle/scripts/ld-ihc-ch2.script +++ b/boards/risc-v/mpfs/icicle/scripts/ld-ihc-ch2.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/icicle/scripts/ld-ihc-ch2.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/risc-v/mpfs/icicle/scripts/ld-ihc.script b/boards/risc-v/mpfs/icicle/scripts/ld-ihc.script index c53a6e5c49a95..55179b6388319 100644 --- a/boards/risc-v/mpfs/icicle/scripts/ld-ihc.script +++ b/boards/risc-v/mpfs/icicle/scripts/ld-ihc.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/icicle/scripts/ld-ihc.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/risc-v/mpfs/icicle/scripts/ld-kernel.script b/boards/risc-v/mpfs/icicle/scripts/ld-kernel.script index 8a296aa407622..e5ff0067e1940 100644 --- a/boards/risc-v/mpfs/icicle/scripts/ld-kernel.script +++ b/boards/risc-v/mpfs/icicle/scripts/ld-kernel.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/icicle/scripts/ld-kernel.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/risc-v/mpfs/icicle/scripts/ld.script b/boards/risc-v/mpfs/icicle/scripts/ld.script index d004be03e689d..8469dbb600121 100644 --- a/boards/risc-v/mpfs/icicle/scripts/ld.script +++ b/boards/risc-v/mpfs/icicle/scripts/ld.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/icicle/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/risc-v/mpfs/icicle/scripts/memory.ld b/boards/risc-v/mpfs/icicle/scripts/memory.ld index 890ba735baf8c..e9a9f2f7af8cf 100644 --- a/boards/risc-v/mpfs/icicle/scripts/memory.ld +++ b/boards/risc-v/mpfs/icicle/scripts/memory.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/icicle/scripts/memory.ld * + * 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/risc-v/mpfs/icicle/scripts/user-space.ld b/boards/risc-v/mpfs/icicle/scripts/user-space.ld index 6337412338e9e..77181b9dd15c9 100644 --- a/boards/risc-v/mpfs/icicle/scripts/user-space.ld +++ b/boards/risc-v/mpfs/icicle/scripts/user-space.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/icicle/scripts/user-space.ld * + * 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/risc-v/mpfs/icicle/src/Make.defs b/boards/risc-v/mpfs/icicle/src/Make.defs index e1427c16dba99..b9d54b6903ac4 100644 --- a/boards/risc-v/mpfs/icicle/src/Make.defs +++ b/boards/risc-v/mpfs/icicle/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/mpfs/icicle/src/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/risc-v/mpfs/icicle/src/board_config.h b/boards/risc-v/mpfs/icicle/src/board_config.h index 22fa26920c4ac..e3a6a7cb9fc60 100644 --- a/boards/risc-v/mpfs/icicle/src/board_config.h +++ b/boards/risc-v/mpfs/icicle/src/board_config.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/icicle/src/board_config.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/risc-v/mpfs/icicle/src/mpfs_appinit.c b/boards/risc-v/mpfs/icicle/src/mpfs_appinit.c index 1fc6a1d722ffe..4b3a462829daf 100644 --- a/boards/risc-v/mpfs/icicle/src/mpfs_appinit.c +++ b/boards/risc-v/mpfs/icicle/src/mpfs_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/icicle/src/mpfs_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/risc-v/mpfs/icicle/src/mpfs_autoleds.c b/boards/risc-v/mpfs/icicle/src/mpfs_autoleds.c index 49f480d00e71e..97455ad752a2c 100644 --- a/boards/risc-v/mpfs/icicle/src/mpfs_autoleds.c +++ b/boards/risc-v/mpfs/icicle/src/mpfs_autoleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/icicle/src/mpfs_autoleds.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/risc-v/mpfs/icicle/src/mpfs_bringup.c b/boards/risc-v/mpfs/icicle/src/mpfs_bringup.c index 3ecb4a5acbcdb..852d2854d099a 100644 --- a/boards/risc-v/mpfs/icicle/src/mpfs_bringup.c +++ b/boards/risc-v/mpfs/icicle/src/mpfs_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/icicle/src/mpfs_bringup.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/risc-v/mpfs/m100pfsevp/include/board.h b/boards/risc-v/mpfs/m100pfsevp/include/board.h index 1ac83bd7aad7a..d70552fb6b971 100644 --- a/boards/risc-v/mpfs/m100pfsevp/include/board.h +++ b/boards/risc-v/mpfs/m100pfsevp/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/m100pfsevp/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/risc-v/mpfs/m100pfsevp/include/board_liberodefs.h b/boards/risc-v/mpfs/m100pfsevp/include/board_liberodefs.h index edab61a8e2360..d515512f901a2 100644 --- a/boards/risc-v/mpfs/m100pfsevp/include/board_liberodefs.h +++ b/boards/risc-v/mpfs/m100pfsevp/include/board_liberodefs.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/m100pfsevp/include/board_liberodefs.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/risc-v/mpfs/m100pfsevp/scripts/Make.defs b/boards/risc-v/mpfs/m100pfsevp/scripts/Make.defs index c4ec0182dbf1a..39dd7156e2bc7 100644 --- a/boards/risc-v/mpfs/m100pfsevp/scripts/Make.defs +++ b/boards/risc-v/mpfs/m100pfsevp/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/mpfs/m100pfsevp/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/risc-v/mpfs/m100pfsevp/scripts/ld-envm.script b/boards/risc-v/mpfs/m100pfsevp/scripts/ld-envm.script index 722a899d65b43..dc0de0a24e725 100644 --- a/boards/risc-v/mpfs/m100pfsevp/scripts/ld-envm.script +++ b/boards/risc-v/mpfs/m100pfsevp/scripts/ld-envm.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/m100pfsevp/scripts/ld-envm.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/risc-v/mpfs/m100pfsevp/scripts/ld.script b/boards/risc-v/mpfs/m100pfsevp/scripts/ld.script index fc994b86aee08..16fcfa1c95143 100644 --- a/boards/risc-v/mpfs/m100pfsevp/scripts/ld.script +++ b/boards/risc-v/mpfs/m100pfsevp/scripts/ld.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/m100pfsevp/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/risc-v/mpfs/m100pfsevp/scripts/memory.ld b/boards/risc-v/mpfs/m100pfsevp/scripts/memory.ld index 5e3e46cf99cef..4624c67191bbd 100644 --- a/boards/risc-v/mpfs/m100pfsevp/scripts/memory.ld +++ b/boards/risc-v/mpfs/m100pfsevp/scripts/memory.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/m100pfsevp/scripts/memory.ld * + * 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/risc-v/mpfs/m100pfsevp/scripts/user-space.ld b/boards/risc-v/mpfs/m100pfsevp/scripts/user-space.ld index a93fd408a560a..6810e1fed5c77 100644 --- a/boards/risc-v/mpfs/m100pfsevp/scripts/user-space.ld +++ b/boards/risc-v/mpfs/m100pfsevp/scripts/user-space.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/m100pfsevp/scripts/user-space.ld * + * 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/risc-v/mpfs/m100pfsevp/src/Make.defs b/boards/risc-v/mpfs/m100pfsevp/src/Make.defs index 4d0c1d0bcf454..c23e6aaa6721c 100644 --- a/boards/risc-v/mpfs/m100pfsevp/src/Make.defs +++ b/boards/risc-v/mpfs/m100pfsevp/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/mpfs/m100pfsevp/src/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/risc-v/mpfs/m100pfsevp/src/board_config.h b/boards/risc-v/mpfs/m100pfsevp/src/board_config.h index 0a2499ce5e134..556a408ee3a2e 100644 --- a/boards/risc-v/mpfs/m100pfsevp/src/board_config.h +++ b/boards/risc-v/mpfs/m100pfsevp/src/board_config.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/m100pfsevp/src/board_config.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/risc-v/mpfs/m100pfsevp/src/mpfs_appinit.c b/boards/risc-v/mpfs/m100pfsevp/src/mpfs_appinit.c index 3a7697593089d..779c9f6be0b75 100644 --- a/boards/risc-v/mpfs/m100pfsevp/src/mpfs_appinit.c +++ b/boards/risc-v/mpfs/m100pfsevp/src/mpfs_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/m100pfsevp/src/mpfs_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/risc-v/mpfs/m100pfsevp/src/mpfs_autoleds.c b/boards/risc-v/mpfs/m100pfsevp/src/mpfs_autoleds.c index ef87b4ea29bb6..b12b5bc0a6c39 100644 --- a/boards/risc-v/mpfs/m100pfsevp/src/mpfs_autoleds.c +++ b/boards/risc-v/mpfs/m100pfsevp/src/mpfs_autoleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/m100pfsevp/src/mpfs_autoleds.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/risc-v/mpfs/m100pfsevp/src/mpfs_bringup.c b/boards/risc-v/mpfs/m100pfsevp/src/mpfs_bringup.c index 0152d5fac120e..4b868dcb861a4 100644 --- a/boards/risc-v/mpfs/m100pfsevp/src/mpfs_bringup.c +++ b/boards/risc-v/mpfs/m100pfsevp/src/mpfs_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/mpfs/m100pfsevp/src/mpfs_bringup.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 From 4ad7c3943fa4535afdd96870a1bb87e1fa149a79 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:59:20 +0100 Subject: [PATCH 35/53] boards/risk-v/qemu-rv: 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/risc-v/qemu-rv/rv-virt/CMakeLists.txt | 2 ++ boards/risc-v/qemu-rv/rv-virt/include/board.h | 2 ++ boards/risc-v/qemu-rv/rv-virt/include/board_memorymap.h | 2 ++ boards/risc-v/qemu-rv/rv-virt/kernel/CMakeLists.txt | 2 ++ boards/risc-v/qemu-rv/rv-virt/kernel/Makefile | 2 ++ boards/risc-v/qemu-rv/rv-virt/kernel/rv_virt_userspace.c | 2 ++ boards/risc-v/qemu-rv/rv-virt/scripts/Make.defs | 2 ++ boards/risc-v/qemu-rv/rv-virt/scripts/gnu-elf.ld | 2 ++ boards/risc-v/qemu-rv/rv-virt/scripts/ld-kernel.script | 2 ++ boards/risc-v/qemu-rv/rv-virt/scripts/ld-nuttsbi.script | 2 ++ boards/risc-v/qemu-rv/rv-virt/scripts/ld-protected.mem | 2 ++ boards/risc-v/qemu-rv/rv-virt/scripts/ld-protected.script | 2 ++ boards/risc-v/qemu-rv/rv-virt/scripts/ld-userland.script | 2 ++ boards/risc-v/qemu-rv/rv-virt/scripts/ld.script | 2 ++ boards/risc-v/qemu-rv/rv-virt/src/CMakeLists.txt | 2 ++ boards/risc-v/qemu-rv/rv-virt/src/Makefile | 2 ++ boards/risc-v/qemu-rv/rv-virt/src/etc/init.d/rc.sysinit | 2 ++ boards/risc-v/qemu-rv/rv-virt/src/etc/init.d/rcS | 2 ++ boards/risc-v/qemu-rv/rv-virt/src/qemu_rv_appinit.c | 2 ++ boards/risc-v/qemu-rv/rv-virt/src/qemu_rv_autoleds.c | 2 ++ boards/risc-v/qemu-rv/rv-virt/src/qemu_rv_userleds.c | 2 ++ boards/risc-v/qemu-rv/rv-virt/src/romfs.h | 2 ++ boards/risc-v/qemu-rv/rv-virt/src/romfs_stub.c | 2 ++ 23 files changed, 46 insertions(+) diff --git a/boards/risc-v/qemu-rv/rv-virt/CMakeLists.txt b/boards/risc-v/qemu-rv/rv-virt/CMakeLists.txt index a7c54dabdbbfd..c58e434ddaa5d 100644 --- a/boards/risc-v/qemu-rv/rv-virt/CMakeLists.txt +++ b/boards/risc-v/qemu-rv/rv-virt/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/risc-v/qemu-rv/rv-virt/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/risc-v/qemu-rv/rv-virt/include/board.h b/boards/risc-v/qemu-rv/rv-virt/include/board.h index 17c984d11c94e..871aedb83df74 100644 --- a/boards/risc-v/qemu-rv/rv-virt/include/board.h +++ b/boards/risc-v/qemu-rv/rv-virt/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/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/risc-v/qemu-rv/rv-virt/include/board_memorymap.h b/boards/risc-v/qemu-rv/rv-virt/include/board_memorymap.h index 58101fc19ac99..25f7aee94eff1 100644 --- a/boards/risc-v/qemu-rv/rv-virt/include/board_memorymap.h +++ b/boards/risc-v/qemu-rv/rv-virt/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/include/board_memorymap.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/risc-v/qemu-rv/rv-virt/kernel/CMakeLists.txt b/boards/risc-v/qemu-rv/rv-virt/kernel/CMakeLists.txt index 82638d9cc026f..8caf64c58dc7f 100644 --- a/boards/risc-v/qemu-rv/rv-virt/kernel/CMakeLists.txt +++ b/boards/risc-v/qemu-rv/rv-virt/kernel/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/risc-v/qemu-rv/rv-virt/kernel/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/risc-v/qemu-rv/rv-virt/kernel/Makefile b/boards/risc-v/qemu-rv/rv-virt/kernel/Makefile index 2c069dbdb2b06..09581bd313854 100644 --- a/boards/risc-v/qemu-rv/rv-virt/kernel/Makefile +++ b/boards/risc-v/qemu-rv/rv-virt/kernel/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/qemu-rv/rv-virt/kernel/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/risc-v/qemu-rv/rv-virt/kernel/rv_virt_userspace.c b/boards/risc-v/qemu-rv/rv-virt/kernel/rv_virt_userspace.c index 621313ea42c45..eaf2c8953ceb4 100644 --- a/boards/risc-v/qemu-rv/rv-virt/kernel/rv_virt_userspace.c +++ b/boards/risc-v/qemu-rv/rv-virt/kernel/rv_virt_userspace.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/kernel/rv_virt_userspace.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/risc-v/qemu-rv/rv-virt/scripts/Make.defs b/boards/risc-v/qemu-rv/rv-virt/scripts/Make.defs index bd2be83a50694..9b856a7a17b4a 100644 --- a/boards/risc-v/qemu-rv/rv-virt/scripts/Make.defs +++ b/boards/risc-v/qemu-rv/rv-virt/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/qemu-rv/rv-virt/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/risc-v/qemu-rv/rv-virt/scripts/gnu-elf.ld b/boards/risc-v/qemu-rv/rv-virt/scripts/gnu-elf.ld index d5e77d8e2c09c..6f082a1a87d4a 100644 --- a/boards/risc-v/qemu-rv/rv-virt/scripts/gnu-elf.ld +++ b/boards/risc-v/qemu-rv/rv-virt/scripts/gnu-elf.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/scripts/gnu-elf.ld * + * 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/risc-v/qemu-rv/rv-virt/scripts/ld-kernel.script b/boards/risc-v/qemu-rv/rv-virt/scripts/ld-kernel.script index fb01640420d84..3342516920767 100644 --- a/boards/risc-v/qemu-rv/rv-virt/scripts/ld-kernel.script +++ b/boards/risc-v/qemu-rv/rv-virt/scripts/ld-kernel.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/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/risc-v/qemu-rv/rv-virt/scripts/ld-nuttsbi.script b/boards/risc-v/qemu-rv/rv-virt/scripts/ld-nuttsbi.script index 28f22c0d52c3d..7d209f460e4f6 100644 --- a/boards/risc-v/qemu-rv/rv-virt/scripts/ld-nuttsbi.script +++ b/boards/risc-v/qemu-rv/rv-virt/scripts/ld-nuttsbi.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/scripts/ld-nuttsbi.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/risc-v/qemu-rv/rv-virt/scripts/ld-protected.mem b/boards/risc-v/qemu-rv/rv-virt/scripts/ld-protected.mem index 5d67adf8e5157..2d028d3058eff 100644 --- a/boards/risc-v/qemu-rv/rv-virt/scripts/ld-protected.mem +++ b/boards/risc-v/qemu-rv/rv-virt/scripts/ld-protected.mem @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/scripts/ld-protected.mem * + * 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/risc-v/qemu-rv/rv-virt/scripts/ld-protected.script b/boards/risc-v/qemu-rv/rv-virt/scripts/ld-protected.script index bc34cd4047612..3b57dc7e23926 100644 --- a/boards/risc-v/qemu-rv/rv-virt/scripts/ld-protected.script +++ b/boards/risc-v/qemu-rv/rv-virt/scripts/ld-protected.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/scripts/ld-protected.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/risc-v/qemu-rv/rv-virt/scripts/ld-userland.script b/boards/risc-v/qemu-rv/rv-virt/scripts/ld-userland.script index 297df64947a6e..1e6e26c23fc40 100644 --- a/boards/risc-v/qemu-rv/rv-virt/scripts/ld-userland.script +++ b/boards/risc-v/qemu-rv/rv-virt/scripts/ld-userland.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/scripts/ld-userland.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/risc-v/qemu-rv/rv-virt/scripts/ld.script b/boards/risc-v/qemu-rv/rv-virt/scripts/ld.script index b91e06cc1ab33..35e3fd99cd58f 100644 --- a/boards/risc-v/qemu-rv/rv-virt/scripts/ld.script +++ b/boards/risc-v/qemu-rv/rv-virt/scripts/ld.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/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/risc-v/qemu-rv/rv-virt/src/CMakeLists.txt b/boards/risc-v/qemu-rv/rv-virt/src/CMakeLists.txt index 46e760f6ccefd..d17da82ab568a 100644 --- a/boards/risc-v/qemu-rv/rv-virt/src/CMakeLists.txt +++ b/boards/risc-v/qemu-rv/rv-virt/src/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/risc-v/qemu-rv/rv-virt/src/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/risc-v/qemu-rv/rv-virt/src/Makefile b/boards/risc-v/qemu-rv/rv-virt/src/Makefile index 5c26c9a86d8e7..36278de7e4788 100644 --- a/boards/risc-v/qemu-rv/rv-virt/src/Makefile +++ b/boards/risc-v/qemu-rv/rv-virt/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/qemu-rv/rv-virt/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/risc-v/qemu-rv/rv-virt/src/etc/init.d/rc.sysinit b/boards/risc-v/qemu-rv/rv-virt/src/etc/init.d/rc.sysinit index 2f750bb614700..ca6eba4af6d91 100644 --- a/boards/risc-v/qemu-rv/rv-virt/src/etc/init.d/rc.sysinit +++ b/boards/risc-v/qemu-rv/rv-virt/src/etc/init.d/rc.sysinit @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/src/etc/init.d/rc.sysinit * + * 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/risc-v/qemu-rv/rv-virt/src/etc/init.d/rcS b/boards/risc-v/qemu-rv/rv-virt/src/etc/init.d/rcS index 08a25f93ff5c5..d548d48a12c88 100644 --- a/boards/risc-v/qemu-rv/rv-virt/src/etc/init.d/rcS +++ b/boards/risc-v/qemu-rv/rv-virt/src/etc/init.d/rcS @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/src/etc/init.d/rcS * + * 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/risc-v/qemu-rv/rv-virt/src/qemu_rv_appinit.c b/boards/risc-v/qemu-rv/rv-virt/src/qemu_rv_appinit.c index e94fde9005dba..d86ed5764becc 100644 --- a/boards/risc-v/qemu-rv/rv-virt/src/qemu_rv_appinit.c +++ b/boards/risc-v/qemu-rv/rv-virt/src/qemu_rv_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/src/qemu_rv_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/risc-v/qemu-rv/rv-virt/src/qemu_rv_autoleds.c b/boards/risc-v/qemu-rv/rv-virt/src/qemu_rv_autoleds.c index d82f6910b8171..7113b98303722 100644 --- a/boards/risc-v/qemu-rv/rv-virt/src/qemu_rv_autoleds.c +++ b/boards/risc-v/qemu-rv/rv-virt/src/qemu_rv_autoleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/src/qemu_rv_autoleds.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/risc-v/qemu-rv/rv-virt/src/qemu_rv_userleds.c b/boards/risc-v/qemu-rv/rv-virt/src/qemu_rv_userleds.c index 867b3242b5fce..63ed1768509b7 100644 --- a/boards/risc-v/qemu-rv/rv-virt/src/qemu_rv_userleds.c +++ b/boards/risc-v/qemu-rv/rv-virt/src/qemu_rv_userleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/src/qemu_rv_userleds.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/risc-v/qemu-rv/rv-virt/src/romfs.h b/boards/risc-v/qemu-rv/rv-virt/src/romfs.h index 746170cba0ce1..cffbe77171b80 100644 --- a/boards/risc-v/qemu-rv/rv-virt/src/romfs.h +++ b/boards/risc-v/qemu-rv/rv-virt/src/romfs.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/src/romfs.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/risc-v/qemu-rv/rv-virt/src/romfs_stub.c b/boards/risc-v/qemu-rv/rv-virt/src/romfs_stub.c index 8d47136f28476..746c625ec15c5 100644 --- a/boards/risc-v/qemu-rv/rv-virt/src/romfs_stub.c +++ b/boards/risc-v/qemu-rv/rv-virt/src/romfs_stub.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/qemu-rv/rv-virt/src/romfs_stub.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 From ae5145be45586e1b41017cbd216d88ef469bbc85 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 10:01:57 +0100 Subject: [PATCH 36/53] boards/risk-v/rv32m1: 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/risc-v/rv32m1/rv32m1-vega/include/board.h | 2 ++ boards/risc-v/rv32m1/rv32m1-vega/scripts/Make.defs | 2 ++ boards/risc-v/rv32m1/rv32m1-vega/scripts/ld-itcm.script | 2 ++ boards/risc-v/rv32m1/rv32m1-vega/scripts/ld.script | 2 ++ boards/risc-v/rv32m1/rv32m1-vega/src/Makefile | 2 ++ boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1-vega.h | 2 ++ boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_appinit.c | 2 ++ boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_autoleds.c | 2 ++ boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_boot.c | 2 ++ boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_bringup.c | 2 ++ boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_buttons.c | 2 ++ 11 files changed, 22 insertions(+) diff --git a/boards/risc-v/rv32m1/rv32m1-vega/include/board.h b/boards/risc-v/rv32m1/rv32m1-vega/include/board.h index 7e3fdff8d3668..ea8ddb096a852 100644 --- a/boards/risc-v/rv32m1/rv32m1-vega/include/board.h +++ b/boards/risc-v/rv32m1/rv32m1-vega/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/rv32m1/rv32m1-vega/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/risc-v/rv32m1/rv32m1-vega/scripts/Make.defs b/boards/risc-v/rv32m1/rv32m1-vega/scripts/Make.defs index cf48cc96781b0..67ad17ec7c69d 100644 --- a/boards/risc-v/rv32m1/rv32m1-vega/scripts/Make.defs +++ b/boards/risc-v/rv32m1/rv32m1-vega/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/rv32m1/rv32m1-vega/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/risc-v/rv32m1/rv32m1-vega/scripts/ld-itcm.script b/boards/risc-v/rv32m1/rv32m1-vega/scripts/ld-itcm.script index e2625e2dad80f..83ed215949a24 100644 --- a/boards/risc-v/rv32m1/rv32m1-vega/scripts/ld-itcm.script +++ b/boards/risc-v/rv32m1/rv32m1-vega/scripts/ld-itcm.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/rv32m1/rv32m1-vega/scripts/ld-itcm.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/risc-v/rv32m1/rv32m1-vega/scripts/ld.script b/boards/risc-v/rv32m1/rv32m1-vega/scripts/ld.script index 5dfd355075d32..6fa72c232e42b 100644 --- a/boards/risc-v/rv32m1/rv32m1-vega/scripts/ld.script +++ b/boards/risc-v/rv32m1/rv32m1-vega/scripts/ld.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/rv32m1/rv32m1-vega/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/risc-v/rv32m1/rv32m1-vega/src/Makefile b/boards/risc-v/rv32m1/rv32m1-vega/src/Makefile index 02ae18cf992d7..fd3de5139c3fa 100644 --- a/boards/risc-v/rv32m1/rv32m1-vega/src/Makefile +++ b/boards/risc-v/rv32m1/rv32m1-vega/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/rv32m1/rv32m1-vega/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/risc-v/rv32m1/rv32m1-vega/src/rv32m1-vega.h b/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1-vega.h index c74d582c3001f..15812a172099a 100644 --- a/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1-vega.h +++ b/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1-vega.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1-vega.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/risc-v/rv32m1/rv32m1-vega/src/rv32m1_appinit.c b/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_appinit.c index 21e41299dd95f..a44a188dca52b 100644 --- a/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_appinit.c +++ b/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_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/risc-v/rv32m1/rv32m1-vega/src/rv32m1_autoleds.c b/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_autoleds.c index d5048817aaf1d..e4722ced7d5a3 100644 --- a/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_autoleds.c +++ b/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_autoleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_autoleds.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/risc-v/rv32m1/rv32m1-vega/src/rv32m1_boot.c b/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_boot.c index 52e8a94431904..e9a7064fa60ee 100644 --- a/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_boot.c +++ b/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_boot.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/risc-v/rv32m1/rv32m1-vega/src/rv32m1_bringup.c b/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_bringup.c index 6af10072c07ad..4892186b86eac 100644 --- a/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_bringup.c +++ b/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_bringup.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/risc-v/rv32m1/rv32m1-vega/src/rv32m1_buttons.c b/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_buttons.c index 3471c6fddd3a3..e616ce9480d49 100644 --- a/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_buttons.c +++ b/boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/rv32m1/rv32m1-vega/src/rv32m1_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 From 7ec7608c8d9cf1891bd5ca0ce0502b9e61602c33 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 10:03:14 +0100 Subject: [PATCH 37/53] boards/risk-v/sg2000: 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/risc-v/sg2000/milkv_duos/include/board.h | 2 ++ boards/risc-v/sg2000/milkv_duos/include/board_memorymap.h | 2 ++ boards/risc-v/sg2000/milkv_duos/scripts/Make.defs | 2 ++ boards/risc-v/sg2000/milkv_duos/scripts/ld.script | 2 ++ boards/risc-v/sg2000/milkv_duos/src/Makefile | 2 ++ boards/risc-v/sg2000/milkv_duos/src/etc/init.d/rc.sysinit | 2 ++ boards/risc-v/sg2000/milkv_duos/src/etc/init.d/rcS | 2 ++ boards/risc-v/sg2000/milkv_duos/src/sg2000_appinit.c | 2 ++ 8 files changed, 16 insertions(+) diff --git a/boards/risc-v/sg2000/milkv_duos/include/board.h b/boards/risc-v/sg2000/milkv_duos/include/board.h index a1a23f7c55b8d..aef0cb310b475 100644 --- a/boards/risc-v/sg2000/milkv_duos/include/board.h +++ b/boards/risc-v/sg2000/milkv_duos/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/sg2000/milkv_duos/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/risc-v/sg2000/milkv_duos/include/board_memorymap.h b/boards/risc-v/sg2000/milkv_duos/include/board_memorymap.h index 2834a0137783b..f82b406f5fe90 100644 --- a/boards/risc-v/sg2000/milkv_duos/include/board_memorymap.h +++ b/boards/risc-v/sg2000/milkv_duos/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/sg2000/milkv_duos/include/board_memorymap.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/risc-v/sg2000/milkv_duos/scripts/Make.defs b/boards/risc-v/sg2000/milkv_duos/scripts/Make.defs index eb46ea76e0c82..cd93e12b27518 100644 --- a/boards/risc-v/sg2000/milkv_duos/scripts/Make.defs +++ b/boards/risc-v/sg2000/milkv_duos/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/sg2000/milkv_duos/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/risc-v/sg2000/milkv_duos/scripts/ld.script b/boards/risc-v/sg2000/milkv_duos/scripts/ld.script index 511b293ffc853..2eff5a29b87cd 100644 --- a/boards/risc-v/sg2000/milkv_duos/scripts/ld.script +++ b/boards/risc-v/sg2000/milkv_duos/scripts/ld.script @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/sg2000/milkv_duos/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/risc-v/sg2000/milkv_duos/src/Makefile b/boards/risc-v/sg2000/milkv_duos/src/Makefile index 911bfc1323e77..9103b16b8619a 100644 --- a/boards/risc-v/sg2000/milkv_duos/src/Makefile +++ b/boards/risc-v/sg2000/milkv_duos/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/risc-v/sg2000/milkv_duos/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/risc-v/sg2000/milkv_duos/src/etc/init.d/rc.sysinit b/boards/risc-v/sg2000/milkv_duos/src/etc/init.d/rc.sysinit index a28ab9a420ca2..2f70f558944ee 100644 --- a/boards/risc-v/sg2000/milkv_duos/src/etc/init.d/rc.sysinit +++ b/boards/risc-v/sg2000/milkv_duos/src/etc/init.d/rc.sysinit @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/sg2000/milkv_duos/src/etc/init.d/rc.sysinit * + * 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/risc-v/sg2000/milkv_duos/src/etc/init.d/rcS b/boards/risc-v/sg2000/milkv_duos/src/etc/init.d/rcS index ca609c2a423fa..5327954c870a4 100644 --- a/boards/risc-v/sg2000/milkv_duos/src/etc/init.d/rcS +++ b/boards/risc-v/sg2000/milkv_duos/src/etc/init.d/rcS @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/sg2000/milkv_duos/src/etc/init.d/rcS * + * 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/risc-v/sg2000/milkv_duos/src/sg2000_appinit.c b/boards/risc-v/sg2000/milkv_duos/src/sg2000_appinit.c index efdfd8659f89a..5d4419402180b 100644 --- a/boards/risc-v/sg2000/milkv_duos/src/sg2000_appinit.c +++ b/boards/risc-v/sg2000/milkv_duos/src/sg2000_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/risc-v/sg2000/milkv_duos/src/sg2000_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 From 3d2ce98f7881ca92b8172cb7c01a8f7137762709 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 10:06:27 +0100 Subject: [PATCH 38/53] boards/sim/sim: 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/sim/sim/sim/CMakeLists.txt | 2 ++ boards/sim/sim/sim/include/board.h | 2 ++ boards/sim/sim/sim/scripts/Make.defs | 2 ++ boards/sim/sim/sim/src/CMakeLists.txt | 2 ++ boards/sim/sim/sim/src/Makefile | 2 ++ boards/sim/sim/sim/src/dummy.c | 2 ++ boards/sim/sim/sim/src/etc/init.d/rc.sysinit | 2 ++ boards/sim/sim/sim/src/etc/init.d/rcS | 2 ++ boards/sim/sim/sim/src/sim.h | 2 ++ boards/sim/sim/sim/src/sim_appinit.c | 2 ++ boards/sim/sim/sim/src/sim_boot.c | 2 ++ boards/sim/sim/sim/src/sim_bringup.c | 2 ++ boards/sim/sim/sim/src/sim_buttons.c | 2 ++ boards/sim/sim/sim/src/sim_composite.c | 2 ++ boards/sim/sim/sim/src/sim_foc.c | 2 ++ boards/sim/sim/sim/src/sim_gpio.c | 2 ++ boards/sim/sim/sim/src/sim_ioexpander.c | 2 ++ boards/sim/sim/sim/src/sim_zoneinfo.c | 2 ++ 18 files changed, 36 insertions(+) diff --git a/boards/sim/sim/sim/CMakeLists.txt b/boards/sim/sim/sim/CMakeLists.txt index d34f1ed96de36..8f49981914bd2 100644 --- a/boards/sim/sim/sim/CMakeLists.txt +++ b/boards/sim/sim/sim/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/sim/sim/sim/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/sim/sim/sim/include/board.h b/boards/sim/sim/sim/include/board.h index fde01bb2761ab..539f3c0f3437b 100644 --- a/boards/sim/sim/sim/include/board.h +++ b/boards/sim/sim/sim/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sim/sim/sim/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/sim/sim/sim/scripts/Make.defs b/boards/sim/sim/sim/scripts/Make.defs index a801858f3ee17..314f4fcab283d 100644 --- a/boards/sim/sim/sim/scripts/Make.defs +++ b/boards/sim/sim/sim/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/sim/sim/sim/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/sim/sim/sim/src/CMakeLists.txt b/boards/sim/sim/sim/src/CMakeLists.txt index 332ce58c1bb34..de5a6695baa98 100644 --- a/boards/sim/sim/sim/src/CMakeLists.txt +++ b/boards/sim/sim/sim/src/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/sim/sim/sim/src/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/sim/sim/sim/src/Makefile b/boards/sim/sim/sim/src/Makefile index 9aa65fd1f4052..4d5c5e83152a7 100644 --- a/boards/sim/sim/sim/src/Makefile +++ b/boards/sim/sim/sim/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/sim/sim/sim/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/sim/sim/sim/src/dummy.c b/boards/sim/sim/sim/src/dummy.c index 5d985d630e144..e8e643f4ca97e 100644 --- a/boards/sim/sim/sim/src/dummy.c +++ b/boards/sim/sim/sim/src/dummy.c @@ -1,6 +1,8 @@ /*************************************************************************** * boards/sim/sim/sim/src/dummy.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/sim/sim/sim/src/etc/init.d/rc.sysinit b/boards/sim/sim/sim/src/etc/init.d/rc.sysinit index ab4f07b4510a0..d1b409a7a620f 100644 --- a/boards/sim/sim/sim/src/etc/init.d/rc.sysinit +++ b/boards/sim/sim/sim/src/etc/init.d/rc.sysinit @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sim/sim/sim/src/etc/init.d/rc.sysinit * + * 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/sim/sim/sim/src/etc/init.d/rcS b/boards/sim/sim/sim/src/etc/init.d/rcS index 27f9e961c102f..fee8526b63a34 100644 --- a/boards/sim/sim/sim/src/etc/init.d/rcS +++ b/boards/sim/sim/sim/src/etc/init.d/rcS @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sim/sim/sim/src/etc/init.d/rcS * + * 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/sim/sim/sim/src/sim.h b/boards/sim/sim/sim/src/sim.h index 7dd7174351a94..e2d87b975c0ea 100644 --- a/boards/sim/sim/sim/src/sim.h +++ b/boards/sim/sim/sim/src/sim.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sim/sim/sim/src/sim.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/sim/sim/sim/src/sim_appinit.c b/boards/sim/sim/sim/src/sim_appinit.c index f74e614d55e4b..f4208a663be80 100644 --- a/boards/sim/sim/sim/src/sim_appinit.c +++ b/boards/sim/sim/sim/src/sim_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sim/sim/sim/src/sim_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/sim/sim/sim/src/sim_boot.c b/boards/sim/sim/sim/src/sim_boot.c index 7883c7ffc2bf0..875188496c384 100644 --- a/boards/sim/sim/sim/src/sim_boot.c +++ b/boards/sim/sim/sim/src/sim_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sim/sim/sim/src/sim_boot.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/sim/sim/sim/src/sim_bringup.c b/boards/sim/sim/sim/src/sim_bringup.c index 8411ec7f44649..26eeddc25bc0f 100644 --- a/boards/sim/sim/sim/src/sim_bringup.c +++ b/boards/sim/sim/sim/src/sim_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sim/sim/sim/src/sim_bringup.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/sim/sim/sim/src/sim_buttons.c b/boards/sim/sim/sim/src/sim_buttons.c index 6596cdbffdf8b..3cad0b668e88f 100644 --- a/boards/sim/sim/sim/src/sim_buttons.c +++ b/boards/sim/sim/sim/src/sim_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sim/sim/sim/src/sim_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/sim/sim/sim/src/sim_composite.c b/boards/sim/sim/sim/src/sim_composite.c index 85563ee634cce..8207acd169068 100644 --- a/boards/sim/sim/sim/src/sim_composite.c +++ b/boards/sim/sim/sim/src/sim_composite.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sim/sim/sim/src/sim_composite.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/sim/sim/sim/src/sim_foc.c b/boards/sim/sim/sim/src/sim_foc.c index 7d3c675179cb1..40b7dfd0fead0 100644 --- a/boards/sim/sim/sim/src/sim_foc.c +++ b/boards/sim/sim/sim/src/sim_foc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sim/sim/sim/src/sim_foc.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/sim/sim/sim/src/sim_gpio.c b/boards/sim/sim/sim/src/sim_gpio.c index dd0a3dfe0a36d..44e5051bd6b03 100644 --- a/boards/sim/sim/sim/src/sim_gpio.c +++ b/boards/sim/sim/sim/src/sim_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sim/sim/sim/src/sim_gpio.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/sim/sim/sim/src/sim_ioexpander.c b/boards/sim/sim/sim/src/sim_ioexpander.c index 599ac68743b41..b0388c41b4661 100644 --- a/boards/sim/sim/sim/src/sim_ioexpander.c +++ b/boards/sim/sim/sim/src/sim_ioexpander.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sim/sim/sim/src/sim_ioexpander.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/sim/sim/sim/src/sim_zoneinfo.c b/boards/sim/sim/sim/src/sim_zoneinfo.c index a6dc4269cc377..0bec484942c5a 100644 --- a/boards/sim/sim/sim/src/sim_zoneinfo.c +++ b/boards/sim/sim/sim/src/sim_zoneinfo.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sim/sim/sim/src/sim_zoneinfo.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 From da410bf95028c63a87d20e0222fd16313a370104 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 10:09:17 +0100 Subject: [PATCH 39/53] boards/sparc/bm3803: 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/sparc/bm3803/xx3803/include/board.h | 2 ++ boards/sparc/bm3803/xx3803/scripts/Make.defs | 2 ++ boards/sparc/bm3803/xx3803/scripts/linksparc.ld | 2 ++ boards/sparc/bm3803/xx3803/src/Makefile | 2 ++ boards/sparc/bm3803/xx3803/src/bm3803_am29lv.c | 2 ++ boards/sparc/bm3803/xx3803/src/bm3803_appinit.c | 2 ++ boards/sparc/bm3803/xx3803/src/bm3803_boot.c | 2 ++ boards/sparc/bm3803/xx3803/src/bm3803_reset.c | 2 ++ boards/sparc/bm3803/xx3803/src/bm3803_wdt.c | 2 ++ boards/sparc/bm3803/xx3803/src/xx3803.h | 2 ++ 10 files changed, 20 insertions(+) diff --git a/boards/sparc/bm3803/xx3803/include/board.h b/boards/sparc/bm3803/xx3803/include/board.h index bf0394032be95..86ab832a0f12b 100644 --- a/boards/sparc/bm3803/xx3803/include/board.h +++ b/boards/sparc/bm3803/xx3803/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/bm3803/xx3803/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/sparc/bm3803/xx3803/scripts/Make.defs b/boards/sparc/bm3803/xx3803/scripts/Make.defs index 6688f724bc3d5..08b793bf977c6 100644 --- a/boards/sparc/bm3803/xx3803/scripts/Make.defs +++ b/boards/sparc/bm3803/xx3803/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/sparc/bm3803/xx3803/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/sparc/bm3803/xx3803/scripts/linksparc.ld b/boards/sparc/bm3803/xx3803/scripts/linksparc.ld index 04c7b15675cfd..6ae28b62fbaed 100644 --- a/boards/sparc/bm3803/xx3803/scripts/linksparc.ld +++ b/boards/sparc/bm3803/xx3803/scripts/linksparc.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/bm3803/xx3803/scripts/linksparc.ld * + * 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/sparc/bm3803/xx3803/src/Makefile b/boards/sparc/bm3803/xx3803/src/Makefile index 29d67eb8d395c..f970f8d9566dd 100644 --- a/boards/sparc/bm3803/xx3803/src/Makefile +++ b/boards/sparc/bm3803/xx3803/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/sparc/bm3803/xx3803/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/sparc/bm3803/xx3803/src/bm3803_am29lv.c b/boards/sparc/bm3803/xx3803/src/bm3803_am29lv.c index 00bddcd11a2eb..da39136a6a559 100644 --- a/boards/sparc/bm3803/xx3803/src/bm3803_am29lv.c +++ b/boards/sparc/bm3803/xx3803/src/bm3803_am29lv.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/bm3803/xx3803/src/bm3803_am29lv.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/sparc/bm3803/xx3803/src/bm3803_appinit.c b/boards/sparc/bm3803/xx3803/src/bm3803_appinit.c index 407a6ede9f5c4..3564610833f1c 100644 --- a/boards/sparc/bm3803/xx3803/src/bm3803_appinit.c +++ b/boards/sparc/bm3803/xx3803/src/bm3803_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/bm3803/xx3803/src/bm3803_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/sparc/bm3803/xx3803/src/bm3803_boot.c b/boards/sparc/bm3803/xx3803/src/bm3803_boot.c index f52f221b70c85..f0c948c1953ae 100644 --- a/boards/sparc/bm3803/xx3803/src/bm3803_boot.c +++ b/boards/sparc/bm3803/xx3803/src/bm3803_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/bm3803/xx3803/src/bm3803_boot.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/sparc/bm3803/xx3803/src/bm3803_reset.c b/boards/sparc/bm3803/xx3803/src/bm3803_reset.c index b385981673995..a1d3d8089d5e4 100644 --- a/boards/sparc/bm3803/xx3803/src/bm3803_reset.c +++ b/boards/sparc/bm3803/xx3803/src/bm3803_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/bm3803/xx3803/src/bm3803_reset.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/sparc/bm3803/xx3803/src/bm3803_wdt.c b/boards/sparc/bm3803/xx3803/src/bm3803_wdt.c index efd279aa4500a..3ae4b44b406d9 100644 --- a/boards/sparc/bm3803/xx3803/src/bm3803_wdt.c +++ b/boards/sparc/bm3803/xx3803/src/bm3803_wdt.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/bm3803/xx3803/src/bm3803_wdt.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/sparc/bm3803/xx3803/src/xx3803.h b/boards/sparc/bm3803/xx3803/src/xx3803.h index 6989ac00ca254..570c23dc168f6 100644 --- a/boards/sparc/bm3803/xx3803/src/xx3803.h +++ b/boards/sparc/bm3803/xx3803/src/xx3803.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/bm3803/xx3803/src/xx3803.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 From 88c3cb3d94e229b3550af49d6e9d8b67c65fc243 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 10:10:36 +0100 Subject: [PATCH 40/53] boards/sparc/bm3823: 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/sparc/bm3823/xx3823/include/board.h | 2 ++ boards/sparc/bm3823/xx3823/scripts/Make.defs | 2 ++ boards/sparc/bm3823/xx3823/scripts/linksparc.ld | 2 ++ boards/sparc/bm3823/xx3823/src/Makefile | 2 ++ boards/sparc/bm3823/xx3823/src/bm3823_am29lv.c | 2 ++ boards/sparc/bm3823/xx3823/src/bm3823_appinit.c | 2 ++ boards/sparc/bm3823/xx3823/src/bm3823_boot.c | 2 ++ boards/sparc/bm3823/xx3823/src/bm3823_leds.c | 2 ++ boards/sparc/bm3823/xx3823/src/xx3823.h | 2 ++ 9 files changed, 18 insertions(+) diff --git a/boards/sparc/bm3823/xx3823/include/board.h b/boards/sparc/bm3823/xx3823/include/board.h index d45f031341296..0bd7aa9110157 100644 --- a/boards/sparc/bm3823/xx3823/include/board.h +++ b/boards/sparc/bm3823/xx3823/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/bm3823/xx3823/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/sparc/bm3823/xx3823/scripts/Make.defs b/boards/sparc/bm3823/xx3823/scripts/Make.defs index a295499078d94..5efeb8560687b 100644 --- a/boards/sparc/bm3823/xx3823/scripts/Make.defs +++ b/boards/sparc/bm3823/xx3823/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/sparc/bm3823/xx3823/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/sparc/bm3823/xx3823/scripts/linksparc.ld b/boards/sparc/bm3823/xx3823/scripts/linksparc.ld index 63f1a8f9bbb09..b45c9b2438143 100644 --- a/boards/sparc/bm3823/xx3823/scripts/linksparc.ld +++ b/boards/sparc/bm3823/xx3823/scripts/linksparc.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/bm3803/xx3823/scripts/linksparc.ld * + * 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/sparc/bm3823/xx3823/src/Makefile b/boards/sparc/bm3823/xx3823/src/Makefile index a3b1f9d53a6d2..7079b5fd50ff4 100644 --- a/boards/sparc/bm3823/xx3823/src/Makefile +++ b/boards/sparc/bm3823/xx3823/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/sparc/bm3823/xx3823/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/sparc/bm3823/xx3823/src/bm3823_am29lv.c b/boards/sparc/bm3823/xx3823/src/bm3823_am29lv.c index a187e47720a61..66991f6b0c6c9 100644 --- a/boards/sparc/bm3823/xx3823/src/bm3823_am29lv.c +++ b/boards/sparc/bm3823/xx3823/src/bm3823_am29lv.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/bm3823/xx3823/src/bm3823_am29lv.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/sparc/bm3823/xx3823/src/bm3823_appinit.c b/boards/sparc/bm3823/xx3823/src/bm3823_appinit.c index 4c2248942ab5a..61ebbe507bc91 100644 --- a/boards/sparc/bm3823/xx3823/src/bm3823_appinit.c +++ b/boards/sparc/bm3823/xx3823/src/bm3823_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/bm3823/xx3823/src/bm3823_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/sparc/bm3823/xx3823/src/bm3823_boot.c b/boards/sparc/bm3823/xx3823/src/bm3823_boot.c index e16d73a84d4d7..a5f1e2ec9ad2c 100644 --- a/boards/sparc/bm3823/xx3823/src/bm3823_boot.c +++ b/boards/sparc/bm3823/xx3823/src/bm3823_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/bm3823/xx3823/src/bm3823_boot.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/sparc/bm3823/xx3823/src/bm3823_leds.c b/boards/sparc/bm3823/xx3823/src/bm3823_leds.c index a18e52d039dee..50643b6d95821 100644 --- a/boards/sparc/bm3823/xx3823/src/bm3823_leds.c +++ b/boards/sparc/bm3823/xx3823/src/bm3823_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/bm3823/xx3823/src/bm3823_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/sparc/bm3823/xx3823/src/xx3823.h b/boards/sparc/bm3823/xx3823/src/xx3823.h index b503bbfbb0b4d..adb8ff6e0bfdb 100644 --- a/boards/sparc/bm3823/xx3823/src/xx3823.h +++ b/boards/sparc/bm3823/xx3823/src/xx3823.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/bm3823/xx3823/src/xx3823.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 From d5e3890eaa0e67da27cefa1bd24138fb92a5f452 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 10:12:49 +0100 Subject: [PATCH 41/53] boards/sparc/s698pm: 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/sparc/s698pm/s698pm-dkit/include/board.h | 2 ++ boards/sparc/s698pm/s698pm-dkit/scripts/Make.defs | 2 ++ boards/sparc/s698pm/s698pm-dkit/scripts/linksparc.ld | 2 ++ boards/sparc/s698pm/s698pm-dkit/src/Makefile | 2 ++ boards/sparc/s698pm/s698pm-dkit/src/s698pm-dkit.h | 2 ++ boards/sparc/s698pm/s698pm-dkit/src/s698pm_appinit.c | 2 ++ boards/sparc/s698pm/s698pm-dkit/src/s698pm_boot.c | 2 ++ boards/sparc/s698pm/s698pm-dkit/src/s698pm_wdt.c | 2 ++ 8 files changed, 16 insertions(+) diff --git a/boards/sparc/s698pm/s698pm-dkit/include/board.h b/boards/sparc/s698pm/s698pm-dkit/include/board.h index 310d18caefccf..09634c94e8de1 100644 --- a/boards/sparc/s698pm/s698pm-dkit/include/board.h +++ b/boards/sparc/s698pm/s698pm-dkit/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/s698pm/s698pm-dkit/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/sparc/s698pm/s698pm-dkit/scripts/Make.defs b/boards/sparc/s698pm/s698pm-dkit/scripts/Make.defs index c4d4312277f1b..917bddbf9e866 100644 --- a/boards/sparc/s698pm/s698pm-dkit/scripts/Make.defs +++ b/boards/sparc/s698pm/s698pm-dkit/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/sparc/s698pm/s698pm-dkit/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/sparc/s698pm/s698pm-dkit/scripts/linksparc.ld b/boards/sparc/s698pm/s698pm-dkit/scripts/linksparc.ld index bf8bb409ca3f9..1ea21ee458edf 100644 --- a/boards/sparc/s698pm/s698pm-dkit/scripts/linksparc.ld +++ b/boards/sparc/s698pm/s698pm-dkit/scripts/linksparc.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/s698pm/s698pm_dkit/scripts/linksparc.ld * + * 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/sparc/s698pm/s698pm-dkit/src/Makefile b/boards/sparc/s698pm/s698pm-dkit/src/Makefile index 30f0896de2af2..4965f146f74d1 100644 --- a/boards/sparc/s698pm/s698pm-dkit/src/Makefile +++ b/boards/sparc/s698pm/s698pm-dkit/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/sparc/s698pm/s698pm-dkit/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/sparc/s698pm/s698pm-dkit/src/s698pm-dkit.h b/boards/sparc/s698pm/s698pm-dkit/src/s698pm-dkit.h index 6cba1bd2c01cf..2c50e9d452f91 100644 --- a/boards/sparc/s698pm/s698pm-dkit/src/s698pm-dkit.h +++ b/boards/sparc/s698pm/s698pm-dkit/src/s698pm-dkit.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/s698pm/s698pm-dkit/src/s698pm-dkit.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/sparc/s698pm/s698pm-dkit/src/s698pm_appinit.c b/boards/sparc/s698pm/s698pm-dkit/src/s698pm_appinit.c index f69ef8c0e4fe4..caf703c1dc23d 100644 --- a/boards/sparc/s698pm/s698pm-dkit/src/s698pm_appinit.c +++ b/boards/sparc/s698pm/s698pm-dkit/src/s698pm_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/s698pm/s698pm-dkit/src/s698pm_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/sparc/s698pm/s698pm-dkit/src/s698pm_boot.c b/boards/sparc/s698pm/s698pm-dkit/src/s698pm_boot.c index 3c16a2949b688..0e81802f8a89c 100644 --- a/boards/sparc/s698pm/s698pm-dkit/src/s698pm_boot.c +++ b/boards/sparc/s698pm/s698pm-dkit/src/s698pm_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/s698pm/s698pm-dkit/src/s698pm_boot.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/sparc/s698pm/s698pm-dkit/src/s698pm_wdt.c b/boards/sparc/s698pm/s698pm-dkit/src/s698pm_wdt.c index b5ec0a3dc7617..9bfe479aef08c 100644 --- a/boards/sparc/s698pm/s698pm-dkit/src/s698pm_wdt.c +++ b/boards/sparc/s698pm/s698pm-dkit/src/s698pm_wdt.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/sparc/s698pm/s698pm-dkit/src/s698pm_wdt.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 From d53e251c446a3d4047ad9c724ea6a933d6da8531 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 10:14:37 +0100 Subject: [PATCH 42/53] boards/tricore/tc3xx: 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/tricore/tc3xx/tc397/CMakeLists.txt | 2 ++ boards/tricore/tc3xx/tc397/include/board.h | 2 ++ boards/tricore/tc3xx/tc397/include/board_memorymap.h | 2 ++ boards/tricore/tc3xx/tc397/scripts/Lcf_Gnuc_Tricore_Tc.lsl | 2 ++ boards/tricore/tc3xx/tc397/scripts/Lcf_Tasking_Tricore_Tc.lsl | 2 ++ boards/tricore/tc3xx/tc397/scripts/Make.defs | 2 ++ boards/tricore/tc3xx/tc397/src/CMakeLists.txt | 2 ++ boards/tricore/tc3xx/tc397/src/Makefile | 2 ++ boards/tricore/tc3xx/tc397/src/tc397.h | 2 ++ boards/tricore/tc3xx/tc397/src/tc397_appinit.c | 2 ++ boards/tricore/tc3xx/tc397/src/tc397_boardinit.c | 2 ++ boards/tricore/tc3xx/tc397/src/tc397_bringup.c | 2 ++ 12 files changed, 24 insertions(+) diff --git a/boards/tricore/tc3xx/tc397/CMakeLists.txt b/boards/tricore/tc3xx/tc397/CMakeLists.txt index 92452302e0e44..0129c25c311c3 100644 --- a/boards/tricore/tc3xx/tc397/CMakeLists.txt +++ b/boards/tricore/tc3xx/tc397/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/tricore/tc3xx/tc397/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/tricore/tc3xx/tc397/include/board.h b/boards/tricore/tc3xx/tc397/include/board.h index 0100cc08f8066..8d7dc4622b47d 100644 --- a/boards/tricore/tc3xx/tc397/include/board.h +++ b/boards/tricore/tc3xx/tc397/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/tricore/tc3xx/tc397/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/tricore/tc3xx/tc397/include/board_memorymap.h b/boards/tricore/tc3xx/tc397/include/board_memorymap.h index 16c40b3653f42..1e8a7bbcf5d1f 100644 --- a/boards/tricore/tc3xx/tc397/include/board_memorymap.h +++ b/boards/tricore/tc3xx/tc397/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/tricore/tc3xx/tc397/include/board_memorymap.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/tricore/tc3xx/tc397/scripts/Lcf_Gnuc_Tricore_Tc.lsl b/boards/tricore/tc3xx/tc397/scripts/Lcf_Gnuc_Tricore_Tc.lsl index 12ee2b01f22d1..2c2369fc8a208 100644 --- a/boards/tricore/tc3xx/tc397/scripts/Lcf_Gnuc_Tricore_Tc.lsl +++ b/boards/tricore/tc3xx/tc397/scripts/Lcf_Gnuc_Tricore_Tc.lsl @@ -1,6 +1,8 @@ /**************************************************************************** * boards/tricore/tc3xx/tc397/scripts/Lcf_Gnuc_Tricore_Tc.lsl * + * 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/tricore/tc3xx/tc397/scripts/Lcf_Tasking_Tricore_Tc.lsl b/boards/tricore/tc3xx/tc397/scripts/Lcf_Tasking_Tricore_Tc.lsl index 32392bf88d655..3bfd13cf8322d 100644 --- a/boards/tricore/tc3xx/tc397/scripts/Lcf_Tasking_Tricore_Tc.lsl +++ b/boards/tricore/tc3xx/tc397/scripts/Lcf_Tasking_Tricore_Tc.lsl @@ -1,6 +1,8 @@ /**************************************************************************** * boards/tricore/tc3xx/tc397/scripts/Lcf_Tasking_Tricore_Tc.lsl * + * 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/tricore/tc3xx/tc397/scripts/Make.defs b/boards/tricore/tc3xx/tc397/scripts/Make.defs index b404c0aec5dd2..17072fc39b9ab 100644 --- a/boards/tricore/tc3xx/tc397/scripts/Make.defs +++ b/boards/tricore/tc3xx/tc397/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/tricore/tc3xx/tc397/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/tricore/tc3xx/tc397/src/CMakeLists.txt b/boards/tricore/tc3xx/tc397/src/CMakeLists.txt index e89a435537a60..ce7457293b7cb 100644 --- a/boards/tricore/tc3xx/tc397/src/CMakeLists.txt +++ b/boards/tricore/tc3xx/tc397/src/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/tricore/tc3xx/tc397/src/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/tricore/tc3xx/tc397/src/Makefile b/boards/tricore/tc3xx/tc397/src/Makefile index 83c7719356456..194932cde7f47 100644 --- a/boards/tricore/tc3xx/tc397/src/Makefile +++ b/boards/tricore/tc3xx/tc397/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/tricore/tc3xx/tc397/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/tricore/tc3xx/tc397/src/tc397.h b/boards/tricore/tc3xx/tc397/src/tc397.h index 776c0ae73e2fb..258d1fe2c4eeb 100644 --- a/boards/tricore/tc3xx/tc397/src/tc397.h +++ b/boards/tricore/tc3xx/tc397/src/tc397.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/tricore/tc3xx/tc397/src/tc397.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/tricore/tc3xx/tc397/src/tc397_appinit.c b/boards/tricore/tc3xx/tc397/src/tc397_appinit.c index dd419bd85f22a..869d111cae15d 100644 --- a/boards/tricore/tc3xx/tc397/src/tc397_appinit.c +++ b/boards/tricore/tc3xx/tc397/src/tc397_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/tricore/tc3xx/tc397/src/tc397_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/tricore/tc3xx/tc397/src/tc397_boardinit.c b/boards/tricore/tc3xx/tc397/src/tc397_boardinit.c index 41259440a2a92..6dc0de25b22fe 100644 --- a/boards/tricore/tc3xx/tc397/src/tc397_boardinit.c +++ b/boards/tricore/tc3xx/tc397/src/tc397_boardinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/tricore/tc3xx/tc397/src/tc397_boardinit.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/tricore/tc3xx/tc397/src/tc397_bringup.c b/boards/tricore/tc3xx/tc397/src/tc397_bringup.c index 25936c520cfb2..b9f30005adda6 100644 --- a/boards/tricore/tc3xx/tc397/src/tc397_bringup.c +++ b/boards/tricore/tc3xx/tc397/src/tc397_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/tricore/tc3xx/tc397/src/tc397_bringup.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 From e7ec1b24ceac13c6b86899acf41054d806c2517c Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 10:15:45 +0100 Subject: [PATCH 43/53] boards/x86/qemu: 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/x86/qemu/qemu-i486/include/board.h | 2 ++ boards/x86/qemu/qemu-i486/scripts/Make.defs | 2 ++ boards/x86/qemu/qemu-i486/scripts/qemu.ld | 2 ++ boards/x86/qemu/qemu-i486/src/Makefile | 2 ++ boards/x86/qemu/qemu-i486/src/qemu_appinit.c | 2 ++ boards/x86/qemu/qemu-i486/src/qemu_boot.c | 2 ++ boards/x86/qemu/qemu-i486/src/qemu_i486.h | 2 ++ 7 files changed, 14 insertions(+) diff --git a/boards/x86/qemu/qemu-i486/include/board.h b/boards/x86/qemu/qemu-i486/include/board.h index 1e2100cbc90b4..0a52155a75e24 100644 --- a/boards/x86/qemu/qemu-i486/include/board.h +++ b/boards/x86/qemu/qemu-i486/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/x86/qemu/qemu-i486/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/x86/qemu/qemu-i486/scripts/Make.defs b/boards/x86/qemu/qemu-i486/scripts/Make.defs index a8b5c7cdefc23..8fe92e276c1a8 100644 --- a/boards/x86/qemu/qemu-i486/scripts/Make.defs +++ b/boards/x86/qemu/qemu-i486/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/x86/qemu/qemu-i486/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/x86/qemu/qemu-i486/scripts/qemu.ld b/boards/x86/qemu/qemu-i486/scripts/qemu.ld index 711b858f8cd57..a3911869f44ed 100644 --- a/boards/x86/qemu/qemu-i486/scripts/qemu.ld +++ b/boards/x86/qemu/qemu-i486/scripts/qemu.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/x86/qemu/qemu-i486/scripts/qemu.ld * + * 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/x86/qemu/qemu-i486/src/Makefile b/boards/x86/qemu/qemu-i486/src/Makefile index d1903aef70864..1c7abf6e690c2 100644 --- a/boards/x86/qemu/qemu-i486/src/Makefile +++ b/boards/x86/qemu/qemu-i486/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/x86/qemu/qemu-i486/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/x86/qemu/qemu-i486/src/qemu_appinit.c b/boards/x86/qemu/qemu-i486/src/qemu_appinit.c index 7747cd572c39a..62bce5e6e4beb 100644 --- a/boards/x86/qemu/qemu-i486/src/qemu_appinit.c +++ b/boards/x86/qemu/qemu-i486/src/qemu_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/x86/qemu/qemu-i486/src/qemu_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/x86/qemu/qemu-i486/src/qemu_boot.c b/boards/x86/qemu/qemu-i486/src/qemu_boot.c index b5eb29065ecdc..47c827247992c 100644 --- a/boards/x86/qemu/qemu-i486/src/qemu_boot.c +++ b/boards/x86/qemu/qemu-i486/src/qemu_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/x86/qemu/qemu-i486/src/qemu_boot.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/x86/qemu/qemu-i486/src/qemu_i486.h b/boards/x86/qemu/qemu-i486/src/qemu_i486.h index a452244b5d258..b5e237826aa2c 100644 --- a/boards/x86/qemu/qemu-i486/src/qemu_i486.h +++ b/boards/x86/qemu/qemu-i486/src/qemu_i486.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/x86/qemu/qemu-i486/src/qemu_i486.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 From a5d0caef0404bc945f407abf9756c24b57f0110b Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 10:17:27 +0100 Subject: [PATCH 44/53] boards/x86_64/intel64: 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/x86_64/intel64/qemu-intel64/CMakeLists.txt | 2 ++ boards/x86_64/intel64/qemu-intel64/include/board.h | 2 ++ boards/x86_64/intel64/qemu-intel64/scripts/Make.defs | 2 ++ boards/x86_64/intel64/qemu-intel64/scripts/qemu.ld | 2 ++ boards/x86_64/intel64/qemu-intel64/src/CMakeLists.txt | 2 ++ boards/x86_64/intel64/qemu-intel64/src/Makefile | 2 ++ boards/x86_64/intel64/qemu-intel64/src/qemu_appinit.c | 2 ++ boards/x86_64/intel64/qemu-intel64/src/qemu_boot.c | 2 ++ boards/x86_64/intel64/qemu-intel64/src/qemu_bringup.c | 2 ++ boards/x86_64/intel64/qemu-intel64/src/qemu_intel64.h | 2 ++ boards/x86_64/intel64/qemu-intel64/src/qemu_net.c | 2 ++ boards/x86_64/intel64/qemu-intel64/src/qemu_reset.c | 2 ++ 12 files changed, 24 insertions(+) diff --git a/boards/x86_64/intel64/qemu-intel64/CMakeLists.txt b/boards/x86_64/intel64/qemu-intel64/CMakeLists.txt index 924df77850d27..2a5e278403a37 100644 --- a/boards/x86_64/intel64/qemu-intel64/CMakeLists.txt +++ b/boards/x86_64/intel64/qemu-intel64/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/x86_64/intel64/qemu-intel64/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/x86_64/intel64/qemu-intel64/include/board.h b/boards/x86_64/intel64/qemu-intel64/include/board.h index 9cb23e995b334..63544c4d40723 100644 --- a/boards/x86_64/intel64/qemu-intel64/include/board.h +++ b/boards/x86_64/intel64/qemu-intel64/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/x86_64/intel64/qemu-intel64/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/x86_64/intel64/qemu-intel64/scripts/Make.defs b/boards/x86_64/intel64/qemu-intel64/scripts/Make.defs index 1bcd75dbc6f2f..2b2d675e37a98 100644 --- a/boards/x86_64/intel64/qemu-intel64/scripts/Make.defs +++ b/boards/x86_64/intel64/qemu-intel64/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/x86_64/intel64/qemu-intel64/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/x86_64/intel64/qemu-intel64/scripts/qemu.ld b/boards/x86_64/intel64/qemu-intel64/scripts/qemu.ld index af3ec7b273524..4ba79aa2d8110 100644 --- a/boards/x86_64/intel64/qemu-intel64/scripts/qemu.ld +++ b/boards/x86_64/intel64/qemu-intel64/scripts/qemu.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/x86_64/intel64/qemu-intel64/scripts/qemu.ld * + * 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/x86_64/intel64/qemu-intel64/src/CMakeLists.txt b/boards/x86_64/intel64/qemu-intel64/src/CMakeLists.txt index a343c0b0f313b..b6abc485d46bd 100644 --- a/boards/x86_64/intel64/qemu-intel64/src/CMakeLists.txt +++ b/boards/x86_64/intel64/qemu-intel64/src/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/x86_64/intel64/qemu-intel64/src/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/x86_64/intel64/qemu-intel64/src/Makefile b/boards/x86_64/intel64/qemu-intel64/src/Makefile index 41d7c4b173c1c..ca8ec7e0a9a16 100644 --- a/boards/x86_64/intel64/qemu-intel64/src/Makefile +++ b/boards/x86_64/intel64/qemu-intel64/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/x86_64/intel64/qemu-intel64/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/x86_64/intel64/qemu-intel64/src/qemu_appinit.c b/boards/x86_64/intel64/qemu-intel64/src/qemu_appinit.c index 264058033952a..571ab8ee404f2 100644 --- a/boards/x86_64/intel64/qemu-intel64/src/qemu_appinit.c +++ b/boards/x86_64/intel64/qemu-intel64/src/qemu_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/x86_64/intel64/qemu-intel64/src/qemu_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/x86_64/intel64/qemu-intel64/src/qemu_boot.c b/boards/x86_64/intel64/qemu-intel64/src/qemu_boot.c index 2ec202247c9cf..94bcf7b5dcfa5 100644 --- a/boards/x86_64/intel64/qemu-intel64/src/qemu_boot.c +++ b/boards/x86_64/intel64/qemu-intel64/src/qemu_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/x86_64/intel64/qemu-intel64/src/qemu_boot.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/x86_64/intel64/qemu-intel64/src/qemu_bringup.c b/boards/x86_64/intel64/qemu-intel64/src/qemu_bringup.c index 4c8b60da5aabe..3a9b8ee4ece94 100644 --- a/boards/x86_64/intel64/qemu-intel64/src/qemu_bringup.c +++ b/boards/x86_64/intel64/qemu-intel64/src/qemu_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/x86_64/intel64/qemu-intel64/src/qemu_bringup.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/x86_64/intel64/qemu-intel64/src/qemu_intel64.h b/boards/x86_64/intel64/qemu-intel64/src/qemu_intel64.h index 9a711ee577d89..2f6d2defa3344 100644 --- a/boards/x86_64/intel64/qemu-intel64/src/qemu_intel64.h +++ b/boards/x86_64/intel64/qemu-intel64/src/qemu_intel64.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/x86_64/intel64/qemu-intel64/src/qemu_intel64.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/x86_64/intel64/qemu-intel64/src/qemu_net.c b/boards/x86_64/intel64/qemu-intel64/src/qemu_net.c index d538dae96f602..f03f4553ed6f3 100644 --- a/boards/x86_64/intel64/qemu-intel64/src/qemu_net.c +++ b/boards/x86_64/intel64/qemu-intel64/src/qemu_net.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/x86_64/intel64/qemu-intel64/src/qemu_net.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/x86_64/intel64/qemu-intel64/src/qemu_reset.c b/boards/x86_64/intel64/qemu-intel64/src/qemu_reset.c index 8e17027c340bc..0eb48d8f5861b 100644 --- a/boards/x86_64/intel64/qemu-intel64/src/qemu_reset.c +++ b/boards/x86_64/intel64/qemu-intel64/src/qemu_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/x86_64/intel64/qemu-intel64/src/qemu_reset.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 From e35f72341288c3173953c50afb0b8bad995487ee Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 12:25:42 +0100 Subject: [PATCH 45/53] boards/z16/z16f: 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 --- .../z16/z16f/z16f2800100zcog/include/board.h | 2 + .../z16f/z16f2800100zcog/scripts/Make.defs | 2 + .../scripts/z16f2800100zcog.linkcmd | 40 ++++++++++--------- boards/z16/z16f/z16f2800100zcog/src/Makefile | 2 + .../z16f/z16f2800100zcog/src/z16f_appinit.c | 2 + .../z16/z16f/z16f2800100zcog/src/z16f_boot.c | 2 + .../z16/z16f/z16f2800100zcog/src/z16f_leds.c | 2 + .../z16/z16f/z16f2800100zcog/tools/dopatch.sh | 2 + 8 files changed, 35 insertions(+), 19 deletions(-) diff --git a/boards/z16/z16f/z16f2800100zcog/include/board.h b/boards/z16/z16f/z16f2800100zcog/include/board.h index 4fb58894dc2e6..0d6d7403abdfb 100644 --- a/boards/z16/z16f/z16f2800100zcog/include/board.h +++ b/boards/z16/z16f/z16f2800100zcog/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z16/z16f/z16f2800100zcog/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/z16/z16f/z16f2800100zcog/scripts/Make.defs b/boards/z16/z16f/z16f2800100zcog/scripts/Make.defs index e6588c69ca75a..9912a1caa5fac 100644 --- a/boards/z16/z16f/z16f2800100zcog/scripts/Make.defs +++ b/boards/z16/z16f/z16f2800100zcog/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/z16/z16f/z16f2800100zcog/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/z16/z16f/z16f2800100zcog/scripts/z16f2800100zcog.linkcmd b/boards/z16/z16f/z16f2800100zcog/scripts/z16f2800100zcog.linkcmd index 36a03fc467e5b..751fd6301e000 100644 --- a/boards/z16/z16f/z16f2800100zcog/scripts/z16f2800100zcog.linkcmd +++ b/boards/z16/z16f/z16f2800100zcog/scripts/z16f2800100zcog.linkcmd @@ -1,22 +1,24 @@ -/****************************************************************************/ -/* boards/z16/z16f/z16f2800100zcog/scripts/z16f2800100zcog.linkcmd */ -/* */ -/* 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 */ -/* ASF licenses this file to you under the Apache License, Version 2.0 (the */ -/* "License"); you may not use this file except in compliance with the */ -/* License. You may obtain a copy of the License at */ -/* */ -/* http://www.apache.org/licenses/LICENSE-2.0 */ -/* */ -/* Unless required by applicable law or agreed to in writing, software */ -/* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT*/ -/* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the*/ -/* License for the specific language governing permissions and limitations */ -/* under the License. */ -/* */ -/****************************************************************************/ +/**************************************************************************** + * boards/z16/z16f/z16f2800100zcog/scripts/z16f2800100zcog.linkcmd + * + * 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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ -FORMAT=OMF695,INTEL32 -map -maxhexlen=64 -quiet -sort NAME=ascending -unresolved=fatal diff --git a/boards/z16/z16f/z16f2800100zcog/src/Makefile b/boards/z16/z16f/z16f2800100zcog/src/Makefile index e7d511e76f81f..9f244f1b0c701 100644 --- a/boards/z16/z16f/z16f2800100zcog/src/Makefile +++ b/boards/z16/z16f/z16f2800100zcog/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/z16/z16f/z16f2800100zcog/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/z16/z16f/z16f2800100zcog/src/z16f_appinit.c b/boards/z16/z16f/z16f2800100zcog/src/z16f_appinit.c index 456a9843e3b75..b641e0a455e0b 100644 --- a/boards/z16/z16f/z16f2800100zcog/src/z16f_appinit.c +++ b/boards/z16/z16f/z16f2800100zcog/src/z16f_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z16/z16f/z16f2800100zcog/src/z16f_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/z16/z16f/z16f2800100zcog/src/z16f_boot.c b/boards/z16/z16f/z16f2800100zcog/src/z16f_boot.c index e9bd9f68a17b2..45836bbd40385 100644 --- a/boards/z16/z16f/z16f2800100zcog/src/z16f_boot.c +++ b/boards/z16/z16f/z16f2800100zcog/src/z16f_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z16/z16f/z16f2800100zcog/src/z16f_boot.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/z16/z16f/z16f2800100zcog/src/z16f_leds.c b/boards/z16/z16f/z16f2800100zcog/src/z16f_leds.c index b6730a96d737e..d34caa0f16dd9 100644 --- a/boards/z16/z16f/z16f2800100zcog/src/z16f_leds.c +++ b/boards/z16/z16f/z16f2800100zcog/src/z16f_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z16/z16f/z16f2800100zcog/src/z16f_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/z16/z16f/z16f2800100zcog/tools/dopatch.sh b/boards/z16/z16f/z16f2800100zcog/tools/dopatch.sh index 0a5264a96b4cf..fab1511a6b9e8 100755 --- a/boards/z16/z16f/z16f2800100zcog/tools/dopatch.sh +++ b/boards/z16/z16f/z16f2800100zcog/tools/dopatch.sh @@ -2,6 +2,8 @@ ############################################################################ # boards/z16/z16f/z16f2800100zcog/tools/dopatch.sh # +# 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 From a915c5abbf4309eecacf9f124ee6fdd47754c588 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 12:34:07 +0100 Subject: [PATCH 46/53] boards/z80/ez80: 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 --- .../z80/ez80/ez80f910200kitg/include/board.h | 2 + .../ez80/ez80f910200kitg/scripts/Make.defs | 2 + .../scripts/ez80f910200kitg.linkcmd | 40 ++++++++++--------- boards/z80/ez80/ez80f910200kitg/src/Makefile | 2 + .../z80/ez80/ez80f910200kitg/src/ez80_boot.c | 2 + .../z80/ez80/ez80f910200kitg/src/ez80_leds.c | 2 + .../z80/ez80/ez80f910200zco/include/board.h | 2 + .../z80/ez80/ez80f910200zco/scripts/Make.defs | 2 + .../scripts/ez80f910200zco.linkcmd | 40 ++++++++++--------- boards/z80/ez80/ez80f910200zco/src/Makefile | 2 + .../z80/ez80/ez80f910200zco/src/ez80_boot.c | 2 + .../ez80/ez80f910200zco/src/ez80_buttons.c | 2 + .../z80/ez80/ez80f910200zco/src/ez80_leds.c | 2 + .../ez80/ez80f910200zco/src/ez80f910200zco.h | 2 + boards/z80/ez80/makerlisp/include/board.h | 2 + boards/z80/ez80/makerlisp/scripts/Make.defs | 2 + .../scripts/makerlisp_copytoram.linkcmd | 40 ++++++++++--------- .../makerlisp/scripts/makerlisp_flash.linkcmd | 40 ++++++++++--------- .../makerlisp/scripts/makerlisp_ram.linkcmd | 40 ++++++++++--------- boards/z80/ez80/makerlisp/src/Makefile | 2 + boards/z80/ez80/makerlisp/src/ez80_appinit.c | 2 + boards/z80/ez80/makerlisp/src/ez80_boot.c | 2 + boards/z80/ez80/makerlisp/src/ez80_bringup.c | 2 + boards/z80/ez80/makerlisp/src/ez80_leds.c | 2 + boards/z80/ez80/makerlisp/src/ez80_spi.c | 2 + boards/z80/ez80/makerlisp/src/ez80_spimmcsd.c | 2 + boards/z80/ez80/makerlisp/src/makerlisp.h | 2 + boards/z80/ez80/makerlisp/src/sd_main.c | 2 + boards/z80/ez80/z20x/include/board.h | 2 + boards/z80/ez80/z20x/scripts/Make.defs | 2 + .../ez80/z20x/scripts/z20x_copytoram.linkcmd | 40 ++++++++++--------- .../z80/ez80/z20x/scripts/z20x_flash.linkcmd | 40 ++++++++++--------- .../z80/ez80/z20x/scripts/z20x_loader.linkcmd | 40 ++++++++++--------- .../ez80/z20x/scripts/z20x_program.linkcmd | 40 ++++++++++--------- boards/z80/ez80/z20x/src/Makefile | 2 + boards/z80/ez80/z20x/src/ez80_appinit.c | 2 + boards/z80/ez80/z20x/src/ez80_boot.c | 2 + boards/z80/ez80/z20x/src/ez80_bringup.c | 2 + boards/z80/ez80/z20x/src/ez80_spi.c | 2 + boards/z80/ez80/z20x/src/ez80_spimmcsd.c | 2 + boards/z80/ez80/z20x/src/ez80_w25.c | 2 + boards/z80/ez80/z20x/src/sd_main.c | 2 + boards/z80/ez80/z20x/src/w25_main.c | 2 + boards/z80/ez80/z20x/src/z20x.h | 2 + 44 files changed, 259 insertions(+), 171 deletions(-) diff --git a/boards/z80/ez80/ez80f910200kitg/include/board.h b/boards/z80/ez80/ez80f910200kitg/include/board.h index c38e96bdccf4e..6c56159047b54 100644 --- a/boards/z80/ez80/ez80f910200kitg/include/board.h +++ b/boards/z80/ez80/ez80f910200kitg/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/ez80f910200kitg/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/z80/ez80/ez80f910200kitg/scripts/Make.defs b/boards/z80/ez80/ez80f910200kitg/scripts/Make.defs index af6bce0a5e7e5..69febd1b7f4c5 100644 --- a/boards/z80/ez80/ez80f910200kitg/scripts/Make.defs +++ b/boards/z80/ez80/ez80f910200kitg/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/z80/ez80/ez80f910200kitg/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/z80/ez80/ez80f910200kitg/scripts/ez80f910200kitg.linkcmd b/boards/z80/ez80/ez80f910200kitg/scripts/ez80f910200kitg.linkcmd index 0a44df28aa68f..578868622a4e0 100644 --- a/boards/z80/ez80/ez80f910200kitg/scripts/ez80f910200kitg.linkcmd +++ b/boards/z80/ez80/ez80f910200kitg/scripts/ez80f910200kitg.linkcmd @@ -1,22 +1,24 @@ -/****************************************************************************/ -/* boards/z80/ez80/ez80f910200kitg/scripts/ez80f910200kitg.linkcmd */ -/* */ -/* 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 */ -/* ASF licenses this file to you under the Apache License, Version 2.0 (the */ -/* "License"); you may not use this file except in compliance with the */ -/* License. You may obtain a copy of the License at */ -/* */ -/* http://www.apache.org/licenses/LICENSE-2.0 */ -/* */ -/* Unless required by applicable law or agreed to in writing, software */ -/* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT*/ -/* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the*/ -/* License for the specific language governing permissions and limitations */ -/* under the License. */ -/* */ -/****************************************************************************/ +/**************************************************************************** + * boards/z80/ez80/ez80f910200kitg/scripts/ez80f910200kitg.linkcmd + * + * 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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ -FORMAT=OMF695,INTEL32 -map -maxhexlen=64 -quiet -NOwarnoverlap -xref -unresolved=fatal diff --git a/boards/z80/ez80/ez80f910200kitg/src/Makefile b/boards/z80/ez80/ez80f910200kitg/src/Makefile index 2a89666c2bd80..320f6c15317ff 100644 --- a/boards/z80/ez80/ez80f910200kitg/src/Makefile +++ b/boards/z80/ez80/ez80f910200kitg/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/z80/ez80/ez80f910200kitg/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/z80/ez80/ez80f910200kitg/src/ez80_boot.c b/boards/z80/ez80/ez80f910200kitg/src/ez80_boot.c index 678fc934846fe..77fe731eddc54 100644 --- a/boards/z80/ez80/ez80f910200kitg/src/ez80_boot.c +++ b/boards/z80/ez80/ez80f910200kitg/src/ez80_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/ez80f910200kitg/src/ez80_boot.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/z80/ez80/ez80f910200kitg/src/ez80_leds.c b/boards/z80/ez80/ez80f910200kitg/src/ez80_leds.c index c2fbabdd60896..5445d6a063bab 100644 --- a/boards/z80/ez80/ez80f910200kitg/src/ez80_leds.c +++ b/boards/z80/ez80/ez80f910200kitg/src/ez80_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/ez80f910200kitg/src/ez80_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/z80/ez80/ez80f910200zco/include/board.h b/boards/z80/ez80/ez80f910200zco/include/board.h index 84e46fdf82f16..49bbfe07ff753 100644 --- a/boards/z80/ez80/ez80f910200zco/include/board.h +++ b/boards/z80/ez80/ez80f910200zco/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/ez80f910200zco/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/z80/ez80/ez80f910200zco/scripts/Make.defs b/boards/z80/ez80/ez80f910200zco/scripts/Make.defs index d587ce208011a..d9b1239fbf6f9 100644 --- a/boards/z80/ez80/ez80f910200zco/scripts/Make.defs +++ b/boards/z80/ez80/ez80f910200zco/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/z80/ez80/ez80f910200zco/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/z80/ez80/ez80f910200zco/scripts/ez80f910200zco.linkcmd b/boards/z80/ez80/ez80f910200zco/scripts/ez80f910200zco.linkcmd index deaf2a2693a36..bc7f0a36316f7 100644 --- a/boards/z80/ez80/ez80f910200zco/scripts/ez80f910200zco.linkcmd +++ b/boards/z80/ez80/ez80f910200zco/scripts/ez80f910200zco.linkcmd @@ -1,22 +1,24 @@ -/****************************************************************************/ -/* boards/z80/ez80/ez80f910200zco/scripts/ez80f910200zco.linkcmd */ -/* */ -/* 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 */ -/* ASF licenses this file to you under the Apache License, Version 2.0 (the */ -/* "License"); you may not use this file except in compliance with the */ -/* License. You may obtain a copy of the License at */ -/* */ -/* http://www.apache.org/licenses/LICENSE-2.0 */ -/* */ -/* Unless required by applicable law or agreed to in writing, software */ -/* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT*/ -/* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the*/ -/* License for the specific language governing permissions and limitations */ -/* under the License. */ -/* */ -/****************************************************************************/ +/**************************************************************************** + * boards/z80/ez80/ez80f910200zco/scripts/ez80f910200zco.linkcmd + * + * 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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ -FORMAT=OMF695,INTEL32 -map -maxhexlen=64 -quiet -NOwarnoverlap -xref -unresolved=fatal diff --git a/boards/z80/ez80/ez80f910200zco/src/Makefile b/boards/z80/ez80/ez80f910200zco/src/Makefile index 639c7128b310c..3b3cca367b70a 100644 --- a/boards/z80/ez80/ez80f910200zco/src/Makefile +++ b/boards/z80/ez80/ez80f910200zco/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/z80/ez80/ez80f910200zco/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/z80/ez80/ez80f910200zco/src/ez80_boot.c b/boards/z80/ez80/ez80f910200zco/src/ez80_boot.c index 576894267b7b1..a71adb123c698 100644 --- a/boards/z80/ez80/ez80f910200zco/src/ez80_boot.c +++ b/boards/z80/ez80/ez80f910200zco/src/ez80_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/ez80f910200zco/src/ez80_boot.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/z80/ez80/ez80f910200zco/src/ez80_buttons.c b/boards/z80/ez80/ez80f910200zco/src/ez80_buttons.c index 0d6c568693240..2b2f9d513e29c 100644 --- a/boards/z80/ez80/ez80f910200zco/src/ez80_buttons.c +++ b/boards/z80/ez80/ez80f910200zco/src/ez80_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/ez80f910200zco/src/ez80_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/z80/ez80/ez80f910200zco/src/ez80_leds.c b/boards/z80/ez80/ez80f910200zco/src/ez80_leds.c index 6953562988e45..60dc96d05bbcd 100644 --- a/boards/z80/ez80/ez80f910200zco/src/ez80_leds.c +++ b/boards/z80/ez80/ez80f910200zco/src/ez80_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/ez80f910200zco/src/ez80_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/z80/ez80/ez80f910200zco/src/ez80f910200zco.h b/boards/z80/ez80/ez80f910200zco/src/ez80f910200zco.h index d2ff4bc6309da..02906666d161a 100644 --- a/boards/z80/ez80/ez80f910200zco/src/ez80f910200zco.h +++ b/boards/z80/ez80/ez80f910200zco/src/ez80f910200zco.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/ez80f910200zco/src/ez80f910200zco.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/z80/ez80/makerlisp/include/board.h b/boards/z80/ez80/makerlisp/include/board.h index 6714dea342b0c..e1ffdd7dadbe0 100644 --- a/boards/z80/ez80/makerlisp/include/board.h +++ b/boards/z80/ez80/makerlisp/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/makerlisp/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/z80/ez80/makerlisp/scripts/Make.defs b/boards/z80/ez80/makerlisp/scripts/Make.defs index cf9ed976406fa..a61982f5c1f3d 100644 --- a/boards/z80/ez80/makerlisp/scripts/Make.defs +++ b/boards/z80/ez80/makerlisp/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/z80/ez80/makerlisp/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/z80/ez80/makerlisp/scripts/makerlisp_copytoram.linkcmd b/boards/z80/ez80/makerlisp/scripts/makerlisp_copytoram.linkcmd index 05fe8575be008..07bfab1fa8b87 100644 --- a/boards/z80/ez80/makerlisp/scripts/makerlisp_copytoram.linkcmd +++ b/boards/z80/ez80/makerlisp/scripts/makerlisp_copytoram.linkcmd @@ -1,22 +1,24 @@ -/****************************************************************************/ -/* boards/z80/ez80/makerlisp/scripts/makerlisp_copytoram.linkcmd */ -/* */ -/* 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 */ -/* ASF licenses this file to you under the Apache License, Version 2.0 (the */ -/* "License"); you may not use this file except in compliance with the */ -/* License. You may obtain a copy of the License at */ -/* */ -/* http://www.apache.org/licenses/LICENSE-2.0 */ -/* */ -/* Unless required by applicable law or agreed to in writing, software */ -/* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT*/ -/* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the*/ -/* License for the specific language governing permissions and limitations */ -/* under the License. */ -/* */ -/****************************************************************************/ +/**************************************************************************** + * boards/z80/ez80/makerlisp/scripts/makerlisp_copytoram.linkcmd + * + * 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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ /* For configurations booting from flash but otherwise running out of RAM */ diff --git a/boards/z80/ez80/makerlisp/scripts/makerlisp_flash.linkcmd b/boards/z80/ez80/makerlisp/scripts/makerlisp_flash.linkcmd index d3de782d2b51e..027190430d2fe 100644 --- a/boards/z80/ez80/makerlisp/scripts/makerlisp_flash.linkcmd +++ b/boards/z80/ez80/makerlisp/scripts/makerlisp_flash.linkcmd @@ -1,22 +1,24 @@ -/****************************************************************************/ -/* boards/z80/ez80/makerlisp/scripts/makerlisp_flash.linkcmd */ -/* */ -/* 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 */ -/* ASF licenses this file to you under the Apache License, Version 2.0 (the */ -/* "License"); you may not use this file except in compliance with the */ -/* License. You may obtain a copy of the License at */ -/* */ -/* http://www.apache.org/licenses/LICENSE-2.0 */ -/* */ -/* Unless required by applicable law or agreed to in writing, software */ -/* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT*/ -/* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the*/ -/* License for the specific language governing permissions and limitations */ -/* under the License. */ -/* */ -/****************************************************************************/ +/**************************************************************************** + * boards/z80/ez80/makerlisp/scripts/makerlisp_flash.linkcmd + * + * 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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ /* For configurations running entirely out of FLASH */ diff --git a/boards/z80/ez80/makerlisp/scripts/makerlisp_ram.linkcmd b/boards/z80/ez80/makerlisp/scripts/makerlisp_ram.linkcmd index 181c2672f1091..0d27c3510aa3d 100644 --- a/boards/z80/ez80/makerlisp/scripts/makerlisp_ram.linkcmd +++ b/boards/z80/ez80/makerlisp/scripts/makerlisp_ram.linkcmd @@ -1,22 +1,24 @@ -/****************************************************************************/ -/* boards/z80/ez80/makerlisp/scripts/makerlisp_ram.linkcmd */ -/* */ -/* 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 */ -/* ASF licenses this file to you under the Apache License, Version 2.0 (the */ -/* "License"); you may not use this file except in compliance with the */ -/* License. You may obtain a copy of the License at */ -/* */ -/* http://www.apache.org/licenses/LICENSE-2.0 */ -/* */ -/* Unless required by applicable law or agreed to in writing, software */ -/* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT*/ -/* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the*/ -/* License for the specific language governing permissions and limitations */ -/* under the License. */ -/* */ -/****************************************************************************/ +/**************************************************************************** + * boards/z80/ez80/makerlisp/scripts/makerlisp_ram.linkcmd + * + * 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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ /* For configurations running entirely out of RAM with nothing in FLASH */ diff --git a/boards/z80/ez80/makerlisp/src/Makefile b/boards/z80/ez80/makerlisp/src/Makefile index 5e31c745966c7..79a870e8cab58 100644 --- a/boards/z80/ez80/makerlisp/src/Makefile +++ b/boards/z80/ez80/makerlisp/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/z80/ez80/makerlisp/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/z80/ez80/makerlisp/src/ez80_appinit.c b/boards/z80/ez80/makerlisp/src/ez80_appinit.c index b0a1569be31c7..52d1f2ca7c5a0 100644 --- a/boards/z80/ez80/makerlisp/src/ez80_appinit.c +++ b/boards/z80/ez80/makerlisp/src/ez80_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/makerlisp/src/ez80_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/z80/ez80/makerlisp/src/ez80_boot.c b/boards/z80/ez80/makerlisp/src/ez80_boot.c index 08ebab35c19b7..6642dc8ace65c 100644 --- a/boards/z80/ez80/makerlisp/src/ez80_boot.c +++ b/boards/z80/ez80/makerlisp/src/ez80_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/makerlisp/src/ez80_boot.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/z80/ez80/makerlisp/src/ez80_bringup.c b/boards/z80/ez80/makerlisp/src/ez80_bringup.c index 263c7568b0d59..46ea929d18d80 100644 --- a/boards/z80/ez80/makerlisp/src/ez80_bringup.c +++ b/boards/z80/ez80/makerlisp/src/ez80_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/makerlisp/src/ez80_bringup.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/z80/ez80/makerlisp/src/ez80_leds.c b/boards/z80/ez80/makerlisp/src/ez80_leds.c index dc9e1179561b8..34edbd986ee3a 100644 --- a/boards/z80/ez80/makerlisp/src/ez80_leds.c +++ b/boards/z80/ez80/makerlisp/src/ez80_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/makerlisp/src/ez80_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/z80/ez80/makerlisp/src/ez80_spi.c b/boards/z80/ez80/makerlisp/src/ez80_spi.c index 68ef0e4c03fa9..8146400f0a728 100644 --- a/boards/z80/ez80/makerlisp/src/ez80_spi.c +++ b/boards/z80/ez80/makerlisp/src/ez80_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/makerlisp/src/ez80_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 diff --git a/boards/z80/ez80/makerlisp/src/ez80_spimmcsd.c b/boards/z80/ez80/makerlisp/src/ez80_spimmcsd.c index e68798b46be44..df1d39e1341a8 100644 --- a/boards/z80/ez80/makerlisp/src/ez80_spimmcsd.c +++ b/boards/z80/ez80/makerlisp/src/ez80_spimmcsd.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/makerlisp/src/ez80_spimmcsd.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/z80/ez80/makerlisp/src/makerlisp.h b/boards/z80/ez80/makerlisp/src/makerlisp.h index 78498045ec276..ae3fe045c5421 100644 --- a/boards/z80/ez80/makerlisp/src/makerlisp.h +++ b/boards/z80/ez80/makerlisp/src/makerlisp.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/makerlisp/src/makerlisp.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/z80/ez80/makerlisp/src/sd_main.c b/boards/z80/ez80/makerlisp/src/sd_main.c index 581b9ae8932be..478201b89872e 100644 --- a/boards/z80/ez80/makerlisp/src/sd_main.c +++ b/boards/z80/ez80/makerlisp/src/sd_main.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/makerlisp/src/sd_main.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/z80/ez80/z20x/include/board.h b/boards/z80/ez80/z20x/include/board.h index 8d2f531a92b42..ba040fb671621 100644 --- a/boards/z80/ez80/z20x/include/board.h +++ b/boards/z80/ez80/z20x/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/z20x/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/z80/ez80/z20x/scripts/Make.defs b/boards/z80/ez80/z20x/scripts/Make.defs index db28913326d4d..139a4207a0782 100644 --- a/boards/z80/ez80/z20x/scripts/Make.defs +++ b/boards/z80/ez80/z20x/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/z80/ez80/z20x/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/z80/ez80/z20x/scripts/z20x_copytoram.linkcmd b/boards/z80/ez80/z20x/scripts/z20x_copytoram.linkcmd index fc9ecf9aaf6de..439a6865b6495 100644 --- a/boards/z80/ez80/z20x/scripts/z20x_copytoram.linkcmd +++ b/boards/z80/ez80/z20x/scripts/z20x_copytoram.linkcmd @@ -1,22 +1,24 @@ -/****************************************************************************/ -/* boards/z80/ez80/z20x/scripts/z20x_copytoram.linkcmd */ -/* */ -/* 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 */ -/* ASF licenses this file to you under the Apache License, Version 2.0 (the */ -/* "License"); you may not use this file except in compliance with the */ -/* License. You may obtain a copy of the License at */ -/* */ -/* http://www.apache.org/licenses/LICENSE-2.0 */ -/* */ -/* Unless required by applicable law or agreed to in writing, software */ -/* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT*/ -/* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the*/ -/* License for the specific language governing permissions and limitations */ -/* under the License. */ -/* */ -/****************************************************************************/ +/**************************************************************************** + * boards/z80/ez80/z20x/scripts/z20x_copytoram.linkcmd + * + * 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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ /* For configurations booting from flash but otherwise running out of RAM */ diff --git a/boards/z80/ez80/z20x/scripts/z20x_flash.linkcmd b/boards/z80/ez80/z20x/scripts/z20x_flash.linkcmd index 29d129c58a917..1423de881930d 100644 --- a/boards/z80/ez80/z20x/scripts/z20x_flash.linkcmd +++ b/boards/z80/ez80/z20x/scripts/z20x_flash.linkcmd @@ -1,22 +1,24 @@ -/****************************************************************************/ -/* boards/z80/ez80/z20x/scripts/z20x_flash.linkcmd */ -/* */ -/* 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 */ -/* ASF licenses this file to you under the Apache License, Version 2.0 (the */ -/* "License"); you may not use this file except in compliance with the */ -/* License. You may obtain a copy of the License at */ -/* */ -/* http://www.apache.org/licenses/LICENSE-2.0 */ -/* */ -/* Unless required by applicable law or agreed to in writing, software */ -/* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT*/ -/* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the*/ -/* License for the specific language governing permissions and limitations */ -/* under the License. */ -/* */ -/****************************************************************************/ +/**************************************************************************** + * boards/z80/ez80/z20x/scripts/z20x_flash.linkcmd + * + * 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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ /* For configurations running entirely out of FLASH */ diff --git a/boards/z80/ez80/z20x/scripts/z20x_loader.linkcmd b/boards/z80/ez80/z20x/scripts/z20x_loader.linkcmd index 40e21720e8710..5554b23578b16 100644 --- a/boards/z80/ez80/z20x/scripts/z20x_loader.linkcmd +++ b/boards/z80/ez80/z20x/scripts/z20x_loader.linkcmd @@ -1,22 +1,24 @@ -/****************************************************************************/ -/* boards/z80/ez80/z20x/scripts/z20x_loader.linkcmd */ -/* */ -/* 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 */ -/* ASF licenses this file to you under the Apache License, Version 2.0 (the */ -/* "License"); you may not use this file except in compliance with the */ -/* License. You may obtain a copy of the License at */ -/* */ -/* http://www.apache.org/licenses/LICENSE-2.0 */ -/* */ -/* Unless required by applicable law or agreed to in writing, software */ -/* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT*/ -/* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the*/ -/* License for the specific language governing permissions and limitations */ -/* under the License. */ -/* */ -/****************************************************************************/ +/**************************************************************************** + * boards/z80/ez80/z20x/scripts/z20x_loader.linkcmd + * + * 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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ /* For bootloader configurations running entirely out of FLASH */ diff --git a/boards/z80/ez80/z20x/scripts/z20x_program.linkcmd b/boards/z80/ez80/z20x/scripts/z20x_program.linkcmd index 8eb54bfab3da7..1854460bba6b0 100644 --- a/boards/z80/ez80/z20x/scripts/z20x_program.linkcmd +++ b/boards/z80/ez80/z20x/scripts/z20x_program.linkcmd @@ -1,22 +1,24 @@ -/****************************************************************************/ -/* boards/z80/ez80/z20x/scripts/z20x_program.linkcmd */ -/* */ -/* 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 */ -/* ASF licenses this file to you under the Apache License, Version 2.0 (the */ -/* "License"); you may not use this file except in compliance with the */ -/* License. You may obtain a copy of the License at */ -/* */ -/* http://www.apache.org/licenses/LICENSE-2.0 */ -/* */ -/* Unless required by applicable law or agreed to in writing, software */ -/* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT*/ -/* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the*/ -/* License for the specific language governing permissions and limitations */ -/* under the License. */ -/* */ -/****************************************************************************/ +/**************************************************************************** + * boards/z80/ez80/z20x/scripts/z20x_program.linkcmd + * + * 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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ /* For configurations running entirely out of RAM with nothing in FLASH */ diff --git a/boards/z80/ez80/z20x/src/Makefile b/boards/z80/ez80/z20x/src/Makefile index 7f79a50c26c27..8463ef5a753b4 100644 --- a/boards/z80/ez80/z20x/src/Makefile +++ b/boards/z80/ez80/z20x/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/z80/ez80/z20x/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/z80/ez80/z20x/src/ez80_appinit.c b/boards/z80/ez80/z20x/src/ez80_appinit.c index 43bce24e5377e..fb6f7d7da9da0 100644 --- a/boards/z80/ez80/z20x/src/ez80_appinit.c +++ b/boards/z80/ez80/z20x/src/ez80_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/z20x/src/ez80_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/z80/ez80/z20x/src/ez80_boot.c b/boards/z80/ez80/z20x/src/ez80_boot.c index 0dc6560b3a174..f87aab13e9b98 100644 --- a/boards/z80/ez80/z20x/src/ez80_boot.c +++ b/boards/z80/ez80/z20x/src/ez80_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/z20x/src/ez80_boot.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/z80/ez80/z20x/src/ez80_bringup.c b/boards/z80/ez80/z20x/src/ez80_bringup.c index e780ded506747..1c87a22db43f2 100644 --- a/boards/z80/ez80/z20x/src/ez80_bringup.c +++ b/boards/z80/ez80/z20x/src/ez80_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/z20x/src/ez80_bringup.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/z80/ez80/z20x/src/ez80_spi.c b/boards/z80/ez80/z20x/src/ez80_spi.c index 2541c63141341..3579655bde1d2 100644 --- a/boards/z80/ez80/z20x/src/ez80_spi.c +++ b/boards/z80/ez80/z20x/src/ez80_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/z20x/src/ez80_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 diff --git a/boards/z80/ez80/z20x/src/ez80_spimmcsd.c b/boards/z80/ez80/z20x/src/ez80_spimmcsd.c index b75256fdb540d..79842a80cb87a 100644 --- a/boards/z80/ez80/z20x/src/ez80_spimmcsd.c +++ b/boards/z80/ez80/z20x/src/ez80_spimmcsd.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/z20x/src/ez80_spimmcsd.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/z80/ez80/z20x/src/ez80_w25.c b/boards/z80/ez80/z20x/src/ez80_w25.c index 6029e69b370e7..218c290f2e748 100644 --- a/boards/z80/ez80/z20x/src/ez80_w25.c +++ b/boards/z80/ez80/z20x/src/ez80_w25.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/z20x/src/ez80_w25.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/z80/ez80/z20x/src/sd_main.c b/boards/z80/ez80/z20x/src/sd_main.c index 443480d0446a9..8cdd02bcb5b46 100644 --- a/boards/z80/ez80/z20x/src/sd_main.c +++ b/boards/z80/ez80/z20x/src/sd_main.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/z20x/src/sd_main.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/z80/ez80/z20x/src/w25_main.c b/boards/z80/ez80/z20x/src/w25_main.c index b4bd35bb6d5b1..392521db73f42 100644 --- a/boards/z80/ez80/z20x/src/w25_main.c +++ b/boards/z80/ez80/z20x/src/w25_main.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/z20x/src/w25_main.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/z80/ez80/z20x/src/z20x.h b/boards/z80/ez80/z20x/src/z20x.h index e277051759a29..3b9c8e255ebac 100644 --- a/boards/z80/ez80/z20x/src/z20x.h +++ b/boards/z80/ez80/z20x/src/z20x.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/ez80/z20x/src/z20x.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 From 9708f6b5bfd36f47bc728fdf748aef3fc7afa441 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 12:36:06 +0100 Subject: [PATCH 47/53] boards/z80/z180: 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/z80/z180/p112/include/board.h | 2 ++ boards/z80/z180/p112/scripts/Make.defs | 2 ++ boards/z80/z180/p112/src/Makefile | 2 ++ 3 files changed, 6 insertions(+) diff --git a/boards/z80/z180/p112/include/board.h b/boards/z80/z180/p112/include/board.h index f156eadab5f09..652eabefddd67 100644 --- a/boards/z80/z180/p112/include/board.h +++ b/boards/z80/z180/p112/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/z180/p112/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/z80/z180/p112/scripts/Make.defs b/boards/z80/z180/p112/scripts/Make.defs index d32472f7910f0..b14e65740d6f8 100644 --- a/boards/z80/z180/p112/scripts/Make.defs +++ b/boards/z80/z180/p112/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/z80/z180/p112/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/z80/z180/p112/src/Makefile b/boards/z80/z180/p112/src/Makefile index 510454b542e97..6ecf7aaaf818d 100644 --- a/boards/z80/z180/p112/src/Makefile +++ b/boards/z80/z180/p112/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/z80/z180/p112/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 From fa13b9aacfe8d5225041c7997f6cf2ce7d81f253 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 12:37:37 +0100 Subject: [PATCH 48/53] boards/z80/z8: 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/z80/z8/z8encore000zco/include/board.h | 2 ++ boards/z80/z8/z8encore000zco/scripts/Make.defs | 2 ++ boards/z80/z8/z8encore000zco/src/Makefile | 2 ++ boards/z80/z8/z8encore000zco/src/z8_boot.c | 2 ++ boards/z80/z8/z8encore000zco/src/z8_leds.c | 2 ++ boards/z80/z8/z8f64200100kit/include/board.h | 2 ++ boards/z80/z8/z8f64200100kit/scripts/Make.defs | 2 ++ boards/z80/z8/z8f64200100kit/src/Makefile | 2 ++ boards/z80/z8/z8f64200100kit/src/z8_boot.c | 2 ++ boards/z80/z8/z8f64200100kit/src/z8_leds.c | 2 ++ 10 files changed, 20 insertions(+) diff --git a/boards/z80/z8/z8encore000zco/include/board.h b/boards/z80/z8/z8encore000zco/include/board.h index d1ce273ddffcd..9fd02bdb68c61 100644 --- a/boards/z80/z8/z8encore000zco/include/board.h +++ b/boards/z80/z8/z8encore000zco/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/z8/z8encore000zco/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/z80/z8/z8encore000zco/scripts/Make.defs b/boards/z80/z8/z8encore000zco/scripts/Make.defs index edc60f3309a7d..2b892058b3790 100644 --- a/boards/z80/z8/z8encore000zco/scripts/Make.defs +++ b/boards/z80/z8/z8encore000zco/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/z80/z8/z8encore000zco/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/z80/z8/z8encore000zco/src/Makefile b/boards/z80/z8/z8encore000zco/src/Makefile index a58311cd9554d..a96e32b1bdc62 100644 --- a/boards/z80/z8/z8encore000zco/src/Makefile +++ b/boards/z80/z8/z8encore000zco/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/z80/z8/z8encore000zco/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/z80/z8/z8encore000zco/src/z8_boot.c b/boards/z80/z8/z8encore000zco/src/z8_boot.c index 8d4e969bfac3e..3297257712f5a 100644 --- a/boards/z80/z8/z8encore000zco/src/z8_boot.c +++ b/boards/z80/z8/z8encore000zco/src/z8_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/z8/z8encore000zco/src/z8_boot.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/z80/z8/z8encore000zco/src/z8_leds.c b/boards/z80/z8/z8encore000zco/src/z8_leds.c index c8e286c274b8d..ea609bfc328ab 100644 --- a/boards/z80/z8/z8encore000zco/src/z8_leds.c +++ b/boards/z80/z8/z8encore000zco/src/z8_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/z8/z8encore000zco/src/z8_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/z80/z8/z8f64200100kit/include/board.h b/boards/z80/z8/z8f64200100kit/include/board.h index 3689114e23090..7011b1c9978ad 100644 --- a/boards/z80/z8/z8f64200100kit/include/board.h +++ b/boards/z80/z8/z8f64200100kit/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/z8/z8f64200100kit/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/z80/z8/z8f64200100kit/scripts/Make.defs b/boards/z80/z8/z8f64200100kit/scripts/Make.defs index e1183d7ea6d43..5bd597f25a062 100644 --- a/boards/z80/z8/z8f64200100kit/scripts/Make.defs +++ b/boards/z80/z8/z8f64200100kit/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/z80/z8/z8f64200100kit/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/z80/z8/z8f64200100kit/src/Makefile b/boards/z80/z8/z8f64200100kit/src/Makefile index e5f25b525aa2a..fd14b1fee118e 100644 --- a/boards/z80/z8/z8f64200100kit/src/Makefile +++ b/boards/z80/z8/z8f64200100kit/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/z80/z8/z8f64200100kit/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/z80/z8/z8f64200100kit/src/z8_boot.c b/boards/z80/z8/z8f64200100kit/src/z8_boot.c index bf0ee9a9cce31..ffb53fed70bad 100644 --- a/boards/z80/z8/z8f64200100kit/src/z8_boot.c +++ b/boards/z80/z8/z8f64200100kit/src/z8_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/z8/z8f64200100kit/src/z8_boot.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/z80/z8/z8f64200100kit/src/z8_leds.c b/boards/z80/z8/z8f64200100kit/src/z8_leds.c index a9739543a0753..c82ae70f9a39e 100644 --- a/boards/z80/z8/z8f64200100kit/src/z8_leds.c +++ b/boards/z80/z8/z8f64200100kit/src/z8_leds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/z8/z8f64200100kit/src/z8_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 From ac029d3be420bf1461799bb84901a236ea9ae686 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 12:38:34 +0100 Subject: [PATCH 49/53] boards/z80/z80: 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/z80/z80/z80sim/include/board.h | 2 ++ boards/z80/z80/z80sim/scripts/Make.defs | 2 ++ boards/z80/z80/z80sim/src/Makefile | 2 ++ boards/z80/z80/z80sim/src/z80_irq.c | 2 ++ boards/z80/z80/z80sim/src/z80_lowputc.c | 2 ++ boards/z80/z80/z80sim/src/z80_serial.c | 2 ++ boards/z80/z80/z80sim/src/z80_timerisr.c | 2 ++ 7 files changed, 14 insertions(+) diff --git a/boards/z80/z80/z80sim/include/board.h b/boards/z80/z80/z80sim/include/board.h index f0aa01976c24a..7dd51c8916bd5 100644 --- a/boards/z80/z80/z80sim/include/board.h +++ b/boards/z80/z80/z80sim/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/z80/z80sim/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/z80/z80/z80sim/scripts/Make.defs b/boards/z80/z80/z80sim/scripts/Make.defs index f1d34e84a4e4c..8725f73e547a7 100644 --- a/boards/z80/z80/z80sim/scripts/Make.defs +++ b/boards/z80/z80/z80sim/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/z80/z80/z80sim/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/z80/z80/z80sim/src/Makefile b/boards/z80/z80/z80sim/src/Makefile index dcf9fcb51bee4..0d9eb5545f710 100644 --- a/boards/z80/z80/z80sim/src/Makefile +++ b/boards/z80/z80/z80sim/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/z80/z80/z80sim/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/z80/z80/z80sim/src/z80_irq.c b/boards/z80/z80/z80sim/src/z80_irq.c index 0de8b1833badb..30e3c76f77dcd 100644 --- a/boards/z80/z80/z80sim/src/z80_irq.c +++ b/boards/z80/z80/z80sim/src/z80_irq.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/z80/z80sim/src/z80_irq.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/z80/z80/z80sim/src/z80_lowputc.c b/boards/z80/z80/z80sim/src/z80_lowputc.c index 212f4cb38461a..2fe25457070dd 100644 --- a/boards/z80/z80/z80sim/src/z80_lowputc.c +++ b/boards/z80/z80/z80sim/src/z80_lowputc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/z80/z80sim/src/z80_lowputc.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/z80/z80/z80sim/src/z80_serial.c b/boards/z80/z80/z80sim/src/z80_serial.c index 05fb56ec1a654..c44b840a6f2fe 100644 --- a/boards/z80/z80/z80sim/src/z80_serial.c +++ b/boards/z80/z80/z80sim/src/z80_serial.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/z80/z80sim/src/z80_serial.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/z80/z80/z80sim/src/z80_timerisr.c b/boards/z80/z80/z80sim/src/z80_timerisr.c index 3f3ff10d9966f..ed34198a7b3ff 100644 --- a/boards/z80/z80/z80sim/src/z80_timerisr.c +++ b/boards/z80/z80/z80sim/src/z80_timerisr.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/z80/z80/z80sim/src/z80_timerisr.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 From 5a89830efcd6ee9d5d43633f3f55bc0800cf738c Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 12:39:27 +0100 Subject: [PATCH 50/53] boards: 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/CMakeLists.txt | 2 ++ boards/Makefile | 2 ++ boards/boardctl.c | 2 ++ boards/dummy.c | 2 ++ 4 files changed, 8 insertions(+) diff --git a/boards/CMakeLists.txt b/boards/CMakeLists.txt index 820c652fdd7f1..f1cf1f91ada47 100644 --- a/boards/CMakeLists.txt +++ b/boards/CMakeLists.txt @@ -1,6 +1,8 @@ # ############################################################################## # boards/CMakeLists.txt # +# 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 ASF licenses this diff --git a/boards/Makefile b/boards/Makefile index cf28f17777f16..64db0b0337fc7 100644 --- a/boards/Makefile +++ b/boards/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/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/boardctl.c b/boards/boardctl.c index 9e652560d6c02..caf459c4f39c8 100644 --- a/boards/boardctl.c +++ b/boards/boardctl.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/boardctl.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/dummy.c b/boards/dummy.c index c21020d902460..efd8bd49e504d 100644 --- a/boards/dummy.c +++ b/boards/dummy.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/dummy.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 From 23c420dac9d3c1a160c0661301b7c8dc0e9ec23c Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 12:59:02 +0100 Subject: [PATCH 51/53] boards/xtensa/esp32: 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/xtensa/esp32/common/Makefile | 2 ++ boards/xtensa/esp32/common/include/board_qencoder.h | 2 ++ boards/xtensa/esp32/common/include/esp32_backlight.h | 2 ++ boards/xtensa/esp32/common/include/esp32_bme680.h | 2 ++ boards/xtensa/esp32/common/include/esp32_bmp180.h | 2 ++ boards/xtensa/esp32/common/include/esp32_bmp280.h | 2 ++ boards/xtensa/esp32/common/include/esp32_board_apds9960.h | 2 ++ boards/xtensa/esp32/common/include/esp32_board_dac.h | 2 ++ boards/xtensa/esp32/common/include/esp32_board_i2c.h | 2 ++ boards/xtensa/esp32/common/include/esp32_board_mcpwm.h | 2 ++ boards/xtensa/esp32/common/include/esp32_board_oneshot.h | 2 ++ boards/xtensa/esp32/common/include/esp32_board_rmt.h | 2 ++ boards/xtensa/esp32/common/include/esp32_board_spiflash.h | 2 ++ boards/xtensa/esp32/common/include/esp32_board_spislavedev.h | 2 ++ boards/xtensa/esp32/common/include/esp32_board_wdt.h | 2 ++ boards/xtensa/esp32/common/include/esp32_board_wlan.h | 2 ++ boards/xtensa/esp32/common/include/esp32_es8388.h | 2 ++ boards/xtensa/esp32/common/include/esp32_ht16k33.h | 2 ++ boards/xtensa/esp32/common/include/esp32_lcd_backpack.h | 2 ++ boards/xtensa/esp32/common/include/esp32_ltr308.h | 2 ++ boards/xtensa/esp32/common/include/esp32_max6675.h | 2 ++ boards/xtensa/esp32/common/include/esp32_mcp2515.h | 2 ++ boards/xtensa/esp32/common/include/esp32_ms5611.h | 2 ++ boards/xtensa/esp32/common/include/esp32_rgbled.h | 2 ++ boards/xtensa/esp32/common/include/esp32_sht3x.h | 2 ++ boards/xtensa/esp32/common/include/esp32_ssd1680.h | 2 ++ boards/xtensa/esp32/common/include/esp32_tca9548a.h | 2 ++ boards/xtensa/esp32/common/include/esp32_zerocross.h | 2 ++ boards/xtensa/esp32/common/kernel/Makefile | 2 ++ boards/xtensa/esp32/common/kernel/esp32_userspace.c | 2 ++ boards/xtensa/esp32/common/scripts/esp32_aliases.ld | 2 ++ boards/xtensa/esp32/common/scripts/flat_memory.ld | 2 ++ boards/xtensa/esp32/common/scripts/kernel-space.ld | 2 ++ boards/xtensa/esp32/common/scripts/legacy_sections.ld | 2 ++ boards/xtensa/esp32/common/scripts/mcuboot_sections.ld | 2 ++ boards/xtensa/esp32/common/scripts/protected_memory.ld | 2 ++ boards/xtensa/esp32/common/scripts/simple_boot_sections.ld | 2 ++ boards/xtensa/esp32/common/scripts/user-space.ld | 2 ++ boards/xtensa/esp32/common/src/Make.defs | 2 ++ boards/xtensa/esp32/common/src/esp32_backlight.c | 2 ++ boards/xtensa/esp32/common/src/esp32_bme680.c | 2 ++ boards/xtensa/esp32/common/src/esp32_bmp180.c | 2 ++ boards/xtensa/esp32/common/src/esp32_bmp280.c | 2 ++ boards/xtensa/esp32/common/src/esp32_board_apa102_lcd.c | 2 ++ boards/xtensa/esp32/common/src/esp32_board_apds9960.c | 2 ++ boards/xtensa/esp32/common/src/esp32_board_dac.c | 2 ++ boards/xtensa/esp32/common/src/esp32_board_i2c.c | 2 ++ boards/xtensa/esp32/common/src/esp32_board_i2sdev.c | 2 ++ boards/xtensa/esp32/common/src/esp32_board_mcpwm.c | 2 ++ boards/xtensa/esp32/common/src/esp32_board_rmt.c | 2 ++ boards/xtensa/esp32/common/src/esp32_board_spi.c | 2 ++ boards/xtensa/esp32/common/src/esp32_board_spidev.c | 2 ++ boards/xtensa/esp32/common/src/esp32_board_spiflash.c | 2 ++ boards/xtensa/esp32/common/src/esp32_board_spislavedev.c | 2 ++ boards/xtensa/esp32/common/src/esp32_board_wdt.c | 2 ++ boards/xtensa/esp32/common/src/esp32_board_wlan.c | 2 ++ boards/xtensa/esp32/common/src/esp32_cs4344.c | 2 ++ boards/xtensa/esp32/common/src/esp32_es8388.c | 2 ++ boards/xtensa/esp32/common/src/esp32_ht16k33.c | 2 ++ boards/xtensa/esp32/common/src/esp32_ili9341.c | 2 ++ boards/xtensa/esp32/common/src/esp32_lcd_backpack.c | 2 ++ boards/xtensa/esp32/common/src/esp32_ltr308.c | 2 ++ boards/xtensa/esp32/common/src/esp32_max6675.c | 2 ++ boards/xtensa/esp32/common/src/esp32_mcp2515.c | 2 ++ boards/xtensa/esp32/common/src/esp32_ms5611.c | 2 ++ boards/xtensa/esp32/common/src/esp32_oneshot.c | 2 ++ boards/xtensa/esp32/common/src/esp32_qencoder.c | 2 ++ boards/xtensa/esp32/common/src/esp32_rgbled.c | 2 ++ boards/xtensa/esp32/common/src/esp32_sht3x.c | 2 ++ boards/xtensa/esp32/common/src/esp32_ssd1306.c | 2 ++ boards/xtensa/esp32/common/src/esp32_ssd1680.c | 2 ++ boards/xtensa/esp32/common/src/esp32_st7789.c | 2 ++ boards/xtensa/esp32/common/src/esp32_tca9548a.c | 2 ++ boards/xtensa/esp32/common/src/esp32_zerocross.c | 2 ++ boards/xtensa/esp32/esp32-2432S028/include/board.h | 2 ++ boards/xtensa/esp32/esp32-2432S028/include/board_memorymap.h | 2 ++ boards/xtensa/esp32/esp32-2432S028/scripts/Make.defs | 2 ++ boards/xtensa/esp32/esp32-2432S028/src/Make.defs | 2 ++ boards/xtensa/esp32/esp32-2432S028/src/esp32-2432S028.h | 2 ++ boards/xtensa/esp32/esp32-2432S028/src/esp32_appinit.c | 2 ++ boards/xtensa/esp32/esp32-2432S028/src/esp32_boot.c | 2 ++ boards/xtensa/esp32/esp32-2432S028/src/esp32_bringup.c | 2 ++ boards/xtensa/esp32/esp32-2432S028/src/esp32_reset.c | 2 ++ boards/xtensa/esp32/esp32-audio-kit/include/board.h | 2 ++ boards/xtensa/esp32/esp32-audio-kit/include/board_memorymap.h | 2 ++ boards/xtensa/esp32/esp32-audio-kit/scripts/Make.defs | 2 ++ boards/xtensa/esp32/esp32-audio-kit/src/Make.defs | 2 ++ boards/xtensa/esp32/esp32-audio-kit/src/esp32-audio-kit.h | 2 ++ boards/xtensa/esp32/esp32-audio-kit/src/esp32_appinit.c | 2 ++ boards/xtensa/esp32/esp32-audio-kit/src/esp32_boot.c | 2 ++ boards/xtensa/esp32/esp32-audio-kit/src/esp32_bringup.c | 2 ++ boards/xtensa/esp32/esp32-audio-kit/src/esp32_buttons.c | 2 ++ boards/xtensa/esp32/esp32-audio-kit/src/esp32_gpio.c | 2 ++ boards/xtensa/esp32/esp32-audio-kit/src/esp32_mmcsd.c | 2 ++ boards/xtensa/esp32/esp32-audio-kit/src/esp32_reset.c | 2 ++ boards/xtensa/esp32/esp32-audio-kit/src/esp32_userleds.c | 2 ++ boards/xtensa/esp32/esp32-devkitc/include/board.h | 2 ++ boards/xtensa/esp32/esp32-devkitc/include/board_memorymap.h | 2 ++ boards/xtensa/esp32/esp32-devkitc/scripts/Make.defs | 2 ++ boards/xtensa/esp32/esp32-devkitc/src/Make.defs | 2 ++ boards/xtensa/esp32/esp32-devkitc/src/esp32-devkitc.h | 2 ++ boards/xtensa/esp32/esp32-devkitc/src/esp32_appinit.c | 2 ++ boards/xtensa/esp32/esp32-devkitc/src/esp32_boot.c | 2 ++ boards/xtensa/esp32/esp32-devkitc/src/esp32_bringup.c | 2 ++ boards/xtensa/esp32/esp32-devkitc/src/esp32_buttons.c | 2 ++ boards/xtensa/esp32/esp32-devkitc/src/esp32_gpio.c | 2 ++ boards/xtensa/esp32/esp32-devkitc/src/esp32_ledc.c | 2 ++ boards/xtensa/esp32/esp32-devkitc/src/esp32_mmcsd.c | 2 ++ boards/xtensa/esp32/esp32-devkitc/src/esp32_reset.c | 2 ++ boards/xtensa/esp32/esp32-devkitc/src/esp32_twai.c | 2 ++ boards/xtensa/esp32/esp32-devkitc/src/esp32_userleds.c | 2 ++ boards/xtensa/esp32/esp32-devkitc/src/esp32_w5500.c | 2 ++ boards/xtensa/esp32/esp32-devkitc/src/esp32_ws2812.c | 2 ++ boards/xtensa/esp32/esp32-ethernet-kit/include/board.h | 2 ++ .../xtensa/esp32/esp32-ethernet-kit/include/board_memorymap.h | 2 ++ boards/xtensa/esp32/esp32-ethernet-kit/scripts/Make.defs | 2 ++ boards/xtensa/esp32/esp32-ethernet-kit/src/Make.defs | 2 ++ boards/xtensa/esp32/esp32-ethernet-kit/src/esp32-ethernet-kit.h | 2 ++ boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_appinit.c | 2 ++ boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_boot.c | 2 ++ boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_bringup.c | 2 ++ boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_buttons.c | 2 ++ boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_mmcsd.c | 2 ++ boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_reset.c | 2 ++ boards/xtensa/esp32/esp32-lyrat/include/board.h | 2 ++ boards/xtensa/esp32/esp32-lyrat/include/board_memorymap.h | 2 ++ boards/xtensa/esp32/esp32-lyrat/scripts/Make.defs | 2 ++ boards/xtensa/esp32/esp32-lyrat/src/Make.defs | 2 ++ boards/xtensa/esp32/esp32-lyrat/src/esp32-lyrat.h | 2 ++ boards/xtensa/esp32/esp32-lyrat/src/esp32_appinit.c | 2 ++ boards/xtensa/esp32/esp32-lyrat/src/esp32_boot.c | 2 ++ boards/xtensa/esp32/esp32-lyrat/src/esp32_bringup.c | 2 ++ boards/xtensa/esp32/esp32-lyrat/src/esp32_buttons.c | 2 ++ boards/xtensa/esp32/esp32-lyrat/src/esp32_gpio.c | 2 ++ boards/xtensa/esp32/esp32-lyrat/src/esp32_mmcsd.c | 2 ++ boards/xtensa/esp32/esp32-lyrat/src/esp32_reset.c | 2 ++ boards/xtensa/esp32/esp32-lyrat/src/esp32_userleds.c | 2 ++ boards/xtensa/esp32/esp32-pico-kit/include/board.h | 2 ++ boards/xtensa/esp32/esp32-pico-kit/include/board_memorymap.h | 2 ++ boards/xtensa/esp32/esp32-pico-kit/scripts/Make.defs | 2 ++ boards/xtensa/esp32/esp32-pico-kit/src/Make.defs | 2 ++ boards/xtensa/esp32/esp32-pico-kit/src/esp32-pico-kit.h | 2 ++ boards/xtensa/esp32/esp32-pico-kit/src/esp32_appinit.c | 2 ++ boards/xtensa/esp32/esp32-pico-kit/src/esp32_boot.c | 2 ++ boards/xtensa/esp32/esp32-pico-kit/src/esp32_bringup.c | 2 ++ boards/xtensa/esp32/esp32-pico-kit/src/esp32_buttons.c | 2 ++ boards/xtensa/esp32/esp32-pico-kit/src/esp32_gpio.c | 2 ++ boards/xtensa/esp32/esp32-pico-kit/src/esp32_ledc.c | 2 ++ boards/xtensa/esp32/esp32-pico-kit/src/esp32_reset.c | 2 ++ boards/xtensa/esp32/esp32-pico-kit/src/esp32_twai.c | 2 ++ boards/xtensa/esp32/esp32-sparrow-kit/include/board.h | 2 ++ boards/xtensa/esp32/esp32-sparrow-kit/include/board_memorymap.h | 2 ++ boards/xtensa/esp32/esp32-sparrow-kit/scripts/Make.defs | 2 ++ boards/xtensa/esp32/esp32-sparrow-kit/src/Make.defs | 2 ++ boards/xtensa/esp32/esp32-sparrow-kit/src/esp32-sparrow-kit.h | 2 ++ boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_appinit.c | 2 ++ boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_autoleds.c | 2 ++ boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_boot.c | 2 ++ boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_bringup.c | 2 ++ boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_buttons.c | 2 ++ boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_gpio.c | 2 ++ boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_mmcsd.c | 2 ++ boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_reset.c | 2 ++ boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_userleds.c | 2 ++ boards/xtensa/esp32/esp32-wrover-kit/include/board.h | 2 ++ boards/xtensa/esp32/esp32-wrover-kit/include/board_memorymap.h | 2 ++ boards/xtensa/esp32/esp32-wrover-kit/scripts/Make.defs | 2 ++ boards/xtensa/esp32/esp32-wrover-kit/src/Make.defs | 2 ++ boards/xtensa/esp32/esp32-wrover-kit/src/esp32-wrover-kit.h | 2 ++ boards/xtensa/esp32/esp32-wrover-kit/src/esp32_appinit.c | 2 ++ boards/xtensa/esp32/esp32-wrover-kit/src/esp32_autoleds.c | 2 ++ boards/xtensa/esp32/esp32-wrover-kit/src/esp32_boot.c | 2 ++ boards/xtensa/esp32/esp32-wrover-kit/src/esp32_bringup.c | 2 ++ boards/xtensa/esp32/esp32-wrover-kit/src/esp32_buttons.c | 2 ++ boards/xtensa/esp32/esp32-wrover-kit/src/esp32_gpio.c | 2 ++ boards/xtensa/esp32/esp32-wrover-kit/src/esp32_mmcsd.c | 2 ++ boards/xtensa/esp32/esp32-wrover-kit/src/esp32_reset.c | 2 ++ boards/xtensa/esp32/esp32-wrover-kit/src/esp32_userleds.c | 2 ++ boards/xtensa/esp32/lilygo_tbeam_lora_gps/include/board.h | 2 ++ .../esp32/lilygo_tbeam_lora_gps/include/board_memorymap.h | 2 ++ boards/xtensa/esp32/lilygo_tbeam_lora_gps/scripts/Make.defs | 2 ++ boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/Make.defs | 2 ++ boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_appinit.c | 2 ++ boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_boot.c | 2 ++ boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_bringup.c | 2 ++ boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_buttons.c | 2 ++ boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_gpio.c | 2 ++ boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_reset.c | 2 ++ boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_sx127x.c | 2 ++ boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_userleds.c | 2 ++ .../esp32/lilygo_tbeam_lora_gps/src/lilygo_tbeam_lora_gps.h | 2 ++ boards/xtensa/esp32/ttgo_eink5_v2/include/board.h | 2 ++ boards/xtensa/esp32/ttgo_eink5_v2/include/board_memorymap.h | 2 ++ boards/xtensa/esp32/ttgo_eink5_v2/scripts/Make.defs | 2 ++ boards/xtensa/esp32/ttgo_eink5_v2/src/Make.defs | 2 ++ boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_appinit.c | 2 ++ boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_boot.c | 2 ++ boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_bringup.c | 2 ++ boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_buttons.c | 2 ++ boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_gpio.c | 2 ++ boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_ledc.c | 2 ++ boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_mmcsd.c | 2 ++ boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_reset.c | 2 ++ boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_twai.c | 2 ++ boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_userleds.c | 2 ++ boards/xtensa/esp32/ttgo_eink5_v2/src/ttgo_eink5_v2.h | 2 ++ boards/xtensa/esp32/ttgo_lora_esp32/include/board.h | 2 ++ boards/xtensa/esp32/ttgo_lora_esp32/include/board_memorymap.h | 2 ++ boards/xtensa/esp32/ttgo_lora_esp32/scripts/Make.defs | 2 ++ boards/xtensa/esp32/ttgo_lora_esp32/src/Make.defs | 2 ++ boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_appinit.c | 2 ++ boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_boot.c | 2 ++ boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_bringup.c | 2 ++ boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_buttons.c | 2 ++ boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_gpio.c | 2 ++ boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_reset.c | 2 ++ boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_sx127x.c | 2 ++ boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_userleds.c | 2 ++ boards/xtensa/esp32/ttgo_lora_esp32/src/ttgo_lora_esp32.h | 2 ++ boards/xtensa/esp32/ttgo_t_display_esp32/include/board.h | 2 ++ .../xtensa/esp32/ttgo_t_display_esp32/include/board_memorymap.h | 2 ++ boards/xtensa/esp32/ttgo_t_display_esp32/scripts/Make.defs | 2 ++ boards/xtensa/esp32/ttgo_t_display_esp32/src/Make.defs | 2 ++ boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_appinit.c | 2 ++ boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_boot.c | 2 ++ boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_bringup.c | 2 ++ boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_buttons.c | 2 ++ boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_gpio.c | 2 ++ boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_ledc.c | 2 ++ boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_mmcsd.c | 2 ++ boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_reset.c | 2 ++ boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_twai.c | 2 ++ boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_userleds.c | 2 ++ .../esp32/ttgo_t_display_esp32/src/ttgo_t_display_esp32.h | 2 ++ 234 files changed, 468 insertions(+) diff --git a/boards/xtensa/esp32/common/Makefile b/boards/xtensa/esp32/common/Makefile index 6ecb8247ae3e0..5f6d4d12b1179 100644 --- a/boards/xtensa/esp32/common/Makefile +++ b/boards/xtensa/esp32/common/Makefile @@ -1,6 +1,8 @@ ############################################################################# # boards/xtensa/esp32/common/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/xtensa/esp32/common/include/board_qencoder.h b/boards/xtensa/esp32/common/include/board_qencoder.h index 97c3915991b43..5bc5dc02e8dcf 100644 --- a/boards/xtensa/esp32/common/include/board_qencoder.h +++ b/boards/xtensa/esp32/common/include/board_qencoder.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/board_qencoder.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/xtensa/esp32/common/include/esp32_backlight.h b/boards/xtensa/esp32/common/include/esp32_backlight.h index 3f672f57c0dca..63e1566cd1877 100644 --- a/boards/xtensa/esp32/common/include/esp32_backlight.h +++ b/boards/xtensa/esp32/common/include/esp32_backlight.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_backlight.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/xtensa/esp32/common/include/esp32_bme680.h b/boards/xtensa/esp32/common/include/esp32_bme680.h index 01dc1bdc34f1e..b608d503278ff 100644 --- a/boards/xtensa/esp32/common/include/esp32_bme680.h +++ b/boards/xtensa/esp32/common/include/esp32_bme680.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_bme680.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/xtensa/esp32/common/include/esp32_bmp180.h b/boards/xtensa/esp32/common/include/esp32_bmp180.h index d74edcc70d9bd..c4747eb2b269c 100644 --- a/boards/xtensa/esp32/common/include/esp32_bmp180.h +++ b/boards/xtensa/esp32/common/include/esp32_bmp180.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_bmp180.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/xtensa/esp32/common/include/esp32_bmp280.h b/boards/xtensa/esp32/common/include/esp32_bmp280.h index 229c6d5f8818f..f8cf71e7584d7 100644 --- a/boards/xtensa/esp32/common/include/esp32_bmp280.h +++ b/boards/xtensa/esp32/common/include/esp32_bmp280.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_bmp280.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/xtensa/esp32/common/include/esp32_board_apds9960.h b/boards/xtensa/esp32/common/include/esp32_board_apds9960.h index a4a3dd18c5316..c8302a04aed66 100644 --- a/boards/xtensa/esp32/common/include/esp32_board_apds9960.h +++ b/boards/xtensa/esp32/common/include/esp32_board_apds9960.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_board_apds9960.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/xtensa/esp32/common/include/esp32_board_dac.h b/boards/xtensa/esp32/common/include/esp32_board_dac.h index b364590db7c25..a8198574df6f0 100644 --- a/boards/xtensa/esp32/common/include/esp32_board_dac.h +++ b/boards/xtensa/esp32/common/include/esp32_board_dac.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_board_dac.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/xtensa/esp32/common/include/esp32_board_i2c.h b/boards/xtensa/esp32/common/include/esp32_board_i2c.h index 9b9cf2d5e968d..77eee87d6212c 100644 --- a/boards/xtensa/esp32/common/include/esp32_board_i2c.h +++ b/boards/xtensa/esp32/common/include/esp32_board_i2c.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_board_i2c.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/xtensa/esp32/common/include/esp32_board_mcpwm.h b/boards/xtensa/esp32/common/include/esp32_board_mcpwm.h index ecb402120a06d..13c70c557e4a4 100644 --- a/boards/xtensa/esp32/common/include/esp32_board_mcpwm.h +++ b/boards/xtensa/esp32/common/include/esp32_board_mcpwm.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_board_mcpwm.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/xtensa/esp32/common/include/esp32_board_oneshot.h b/boards/xtensa/esp32/common/include/esp32_board_oneshot.h index 66ce46c5e9dd4..b039e84f4a047 100644 --- a/boards/xtensa/esp32/common/include/esp32_board_oneshot.h +++ b/boards/xtensa/esp32/common/include/esp32_board_oneshot.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_board_oneshot.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/xtensa/esp32/common/include/esp32_board_rmt.h b/boards/xtensa/esp32/common/include/esp32_board_rmt.h index 0d218892f7eec..f380ecca16c58 100644 --- a/boards/xtensa/esp32/common/include/esp32_board_rmt.h +++ b/boards/xtensa/esp32/common/include/esp32_board_rmt.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_board_rmt.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/xtensa/esp32/common/include/esp32_board_spiflash.h b/boards/xtensa/esp32/common/include/esp32_board_spiflash.h index 273cfe8230e86..04b1178bbb28e 100644 --- a/boards/xtensa/esp32/common/include/esp32_board_spiflash.h +++ b/boards/xtensa/esp32/common/include/esp32_board_spiflash.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_board_spiflash.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/xtensa/esp32/common/include/esp32_board_spislavedev.h b/boards/xtensa/esp32/common/include/esp32_board_spislavedev.h index 69dd3e998e885..f767eb3ca222f 100644 --- a/boards/xtensa/esp32/common/include/esp32_board_spislavedev.h +++ b/boards/xtensa/esp32/common/include/esp32_board_spislavedev.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_board_spislavedev.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/xtensa/esp32/common/include/esp32_board_wdt.h b/boards/xtensa/esp32/common/include/esp32_board_wdt.h index 152c16e467ecb..6709db0a93e87 100644 --- a/boards/xtensa/esp32/common/include/esp32_board_wdt.h +++ b/boards/xtensa/esp32/common/include/esp32_board_wdt.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_board_wdt.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/xtensa/esp32/common/include/esp32_board_wlan.h b/boards/xtensa/esp32/common/include/esp32_board_wlan.h index ffa65f2bf0b2e..5cf66ce5e50e7 100644 --- a/boards/xtensa/esp32/common/include/esp32_board_wlan.h +++ b/boards/xtensa/esp32/common/include/esp32_board_wlan.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_board_wlan.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/xtensa/esp32/common/include/esp32_es8388.h b/boards/xtensa/esp32/common/include/esp32_es8388.h index 3fed36a381110..a8f7f6428b68c 100644 --- a/boards/xtensa/esp32/common/include/esp32_es8388.h +++ b/boards/xtensa/esp32/common/include/esp32_es8388.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_es8388.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/xtensa/esp32/common/include/esp32_ht16k33.h b/boards/xtensa/esp32/common/include/esp32_ht16k33.h index 2edebb2edb45e..c46e7730759ea 100644 --- a/boards/xtensa/esp32/common/include/esp32_ht16k33.h +++ b/boards/xtensa/esp32/common/include/esp32_ht16k33.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_ht16k33.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/xtensa/esp32/common/include/esp32_lcd_backpack.h b/boards/xtensa/esp32/common/include/esp32_lcd_backpack.h index ea53469640a2b..507968e6f62da 100644 --- a/boards/xtensa/esp32/common/include/esp32_lcd_backpack.h +++ b/boards/xtensa/esp32/common/include/esp32_lcd_backpack.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_lcd_backpack.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/xtensa/esp32/common/include/esp32_ltr308.h b/boards/xtensa/esp32/common/include/esp32_ltr308.h index 76b7c67dcc7af..2d47bdf4fa97b 100644 --- a/boards/xtensa/esp32/common/include/esp32_ltr308.h +++ b/boards/xtensa/esp32/common/include/esp32_ltr308.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_ltr308.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/xtensa/esp32/common/include/esp32_max6675.h b/boards/xtensa/esp32/common/include/esp32_max6675.h index cba1e86825e9f..2c2cc63d79b66 100644 --- a/boards/xtensa/esp32/common/include/esp32_max6675.h +++ b/boards/xtensa/esp32/common/include/esp32_max6675.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_max6675.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/xtensa/esp32/common/include/esp32_mcp2515.h b/boards/xtensa/esp32/common/include/esp32_mcp2515.h index 89d30fc7d3e72..e595d7431916a 100644 --- a/boards/xtensa/esp32/common/include/esp32_mcp2515.h +++ b/boards/xtensa/esp32/common/include/esp32_mcp2515.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_mcp2515.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/xtensa/esp32/common/include/esp32_ms5611.h b/boards/xtensa/esp32/common/include/esp32_ms5611.h index 7a05ff0199b8b..e733c6b1e8ae4 100644 --- a/boards/xtensa/esp32/common/include/esp32_ms5611.h +++ b/boards/xtensa/esp32/common/include/esp32_ms5611.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_ms5611.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/xtensa/esp32/common/include/esp32_rgbled.h b/boards/xtensa/esp32/common/include/esp32_rgbled.h index e34f237aef9b0..cff9b5cee35f5 100644 --- a/boards/xtensa/esp32/common/include/esp32_rgbled.h +++ b/boards/xtensa/esp32/common/include/esp32_rgbled.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_rgbled.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/xtensa/esp32/common/include/esp32_sht3x.h b/boards/xtensa/esp32/common/include/esp32_sht3x.h index 37d5d56335493..42d938e094e2b 100644 --- a/boards/xtensa/esp32/common/include/esp32_sht3x.h +++ b/boards/xtensa/esp32/common/include/esp32_sht3x.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_sht3x.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/xtensa/esp32/common/include/esp32_ssd1680.h b/boards/xtensa/esp32/common/include/esp32_ssd1680.h index fe6792d5f5020..1a69a04e8ab19 100644 --- a/boards/xtensa/esp32/common/include/esp32_ssd1680.h +++ b/boards/xtensa/esp32/common/include/esp32_ssd1680.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_ssd1680.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/xtensa/esp32/common/include/esp32_tca9548a.h b/boards/xtensa/esp32/common/include/esp32_tca9548a.h index 7c453791ccd30..8706b472e793f 100644 --- a/boards/xtensa/esp32/common/include/esp32_tca9548a.h +++ b/boards/xtensa/esp32/common/include/esp32_tca9548a.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_tca9548a.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/xtensa/esp32/common/include/esp32_zerocross.h b/boards/xtensa/esp32/common/include/esp32_zerocross.h index bed369cbe93bc..d6df6f24aace7 100644 --- a/boards/xtensa/esp32/common/include/esp32_zerocross.h +++ b/boards/xtensa/esp32/common/include/esp32_zerocross.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/include/esp32_zerocross.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/xtensa/esp32/common/kernel/Makefile b/boards/xtensa/esp32/common/kernel/Makefile index e5fe029711606..dd3cbc5fda75e 100644 --- a/boards/xtensa/esp32/common/kernel/Makefile +++ b/boards/xtensa/esp32/common/kernel/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/common/kernel/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/xtensa/esp32/common/kernel/esp32_userspace.c b/boards/xtensa/esp32/common/kernel/esp32_userspace.c index d477bd99fd91b..d4ce744bec55b 100644 --- a/boards/xtensa/esp32/common/kernel/esp32_userspace.c +++ b/boards/xtensa/esp32/common/kernel/esp32_userspace.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/kernel/esp32_userspace.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/xtensa/esp32/common/scripts/esp32_aliases.ld b/boards/xtensa/esp32/common/scripts/esp32_aliases.ld index da6f5ac10e95e..636e272a4daff 100644 --- a/boards/xtensa/esp32/common/scripts/esp32_aliases.ld +++ b/boards/xtensa/esp32/common/scripts/esp32_aliases.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/scripts/esp32_aliases.ld * + * 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/xtensa/esp32/common/scripts/flat_memory.ld b/boards/xtensa/esp32/common/scripts/flat_memory.ld index 73fc59c3219f9..93cf389fb7bd9 100644 --- a/boards/xtensa/esp32/common/scripts/flat_memory.ld +++ b/boards/xtensa/esp32/common/scripts/flat_memory.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/scripts/flat_memory.ld * + * 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/xtensa/esp32/common/scripts/kernel-space.ld b/boards/xtensa/esp32/common/scripts/kernel-space.ld index 5e0013fd5546d..839ea324906c2 100644 --- a/boards/xtensa/esp32/common/scripts/kernel-space.ld +++ b/boards/xtensa/esp32/common/scripts/kernel-space.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/scripts/kernel-space.ld * + * 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/xtensa/esp32/common/scripts/legacy_sections.ld b/boards/xtensa/esp32/common/scripts/legacy_sections.ld index fe13ee37fc34e..b6a7690425a79 100644 --- a/boards/xtensa/esp32/common/scripts/legacy_sections.ld +++ b/boards/xtensa/esp32/common/scripts/legacy_sections.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/scripts/legacy_sections.ld * + * 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/xtensa/esp32/common/scripts/mcuboot_sections.ld b/boards/xtensa/esp32/common/scripts/mcuboot_sections.ld index f592efb5dae1c..da9ecfc0a5dc2 100644 --- a/boards/xtensa/esp32/common/scripts/mcuboot_sections.ld +++ b/boards/xtensa/esp32/common/scripts/mcuboot_sections.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/scripts/mcuboot_sections.ld * + * 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/xtensa/esp32/common/scripts/protected_memory.ld b/boards/xtensa/esp32/common/scripts/protected_memory.ld index f22f8eb4262d3..bdb8f044b6949 100644 --- a/boards/xtensa/esp32/common/scripts/protected_memory.ld +++ b/boards/xtensa/esp32/common/scripts/protected_memory.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/scripts/protected_memory.ld * + * 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/xtensa/esp32/common/scripts/simple_boot_sections.ld b/boards/xtensa/esp32/common/scripts/simple_boot_sections.ld index ecd86fa3e8df4..dbacec68cb7e1 100644 --- a/boards/xtensa/esp32/common/scripts/simple_boot_sections.ld +++ b/boards/xtensa/esp32/common/scripts/simple_boot_sections.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/scripts/simple_boot_sections.ld * + * 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/xtensa/esp32/common/scripts/user-space.ld b/boards/xtensa/esp32/common/scripts/user-space.ld index 4977cc67515c9..721e4b2a3ae89 100644 --- a/boards/xtensa/esp32/common/scripts/user-space.ld +++ b/boards/xtensa/esp32/common/scripts/user-space.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/scripts/user-space.ld * + * 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/xtensa/esp32/common/src/Make.defs b/boards/xtensa/esp32/common/src/Make.defs index 787a1992664ab..3b31af2f1985d 100644 --- a/boards/xtensa/esp32/common/src/Make.defs +++ b/boards/xtensa/esp32/common/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/xtensa/esp32/common/src/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/xtensa/esp32/common/src/esp32_backlight.c b/boards/xtensa/esp32/common/src/esp32_backlight.c index b0fdcc96baa76..cd78eeae82b34 100644 --- a/boards/xtensa/esp32/common/src/esp32_backlight.c +++ b/boards/xtensa/esp32/common/src/esp32_backlight.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_backlight.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/xtensa/esp32/common/src/esp32_bme680.c b/boards/xtensa/esp32/common/src/esp32_bme680.c index 644eeee7d0b81..8d5161f1ee402 100644 --- a/boards/xtensa/esp32/common/src/esp32_bme680.c +++ b/boards/xtensa/esp32/common/src/esp32_bme680.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_bme680.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/xtensa/esp32/common/src/esp32_bmp180.c b/boards/xtensa/esp32/common/src/esp32_bmp180.c index 17822235b452b..2c0fac25ef860 100644 --- a/boards/xtensa/esp32/common/src/esp32_bmp180.c +++ b/boards/xtensa/esp32/common/src/esp32_bmp180.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_bmp180.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/xtensa/esp32/common/src/esp32_bmp280.c b/boards/xtensa/esp32/common/src/esp32_bmp280.c index 37638bd704a34..9aca7aa996e9c 100644 --- a/boards/xtensa/esp32/common/src/esp32_bmp280.c +++ b/boards/xtensa/esp32/common/src/esp32_bmp280.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_bmp280.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/xtensa/esp32/common/src/esp32_board_apa102_lcd.c b/boards/xtensa/esp32/common/src/esp32_board_apa102_lcd.c index 3776c4bbc643b..e5ceac5ef5349 100644 --- a/boards/xtensa/esp32/common/src/esp32_board_apa102_lcd.c +++ b/boards/xtensa/esp32/common/src/esp32_board_apa102_lcd.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_board_apa102_lcd.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/xtensa/esp32/common/src/esp32_board_apds9960.c b/boards/xtensa/esp32/common/src/esp32_board_apds9960.c index 763df5f454ef0..a79f286a8301d 100644 --- a/boards/xtensa/esp32/common/src/esp32_board_apds9960.c +++ b/boards/xtensa/esp32/common/src/esp32_board_apds9960.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_board_apds9960.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/xtensa/esp32/common/src/esp32_board_dac.c b/boards/xtensa/esp32/common/src/esp32_board_dac.c index fb71f35b12912..10c8f19aa36fa 100644 --- a/boards/xtensa/esp32/common/src/esp32_board_dac.c +++ b/boards/xtensa/esp32/common/src/esp32_board_dac.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_board_dac.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/xtensa/esp32/common/src/esp32_board_i2c.c b/boards/xtensa/esp32/common/src/esp32_board_i2c.c index 7e7a543261d94..3a8615a5aada1 100644 --- a/boards/xtensa/esp32/common/src/esp32_board_i2c.c +++ b/boards/xtensa/esp32/common/src/esp32_board_i2c.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_board_i2c.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/xtensa/esp32/common/src/esp32_board_i2sdev.c b/boards/xtensa/esp32/common/src/esp32_board_i2sdev.c index 369e91d18e7e1..2838964f7e960 100644 --- a/boards/xtensa/esp32/common/src/esp32_board_i2sdev.c +++ b/boards/xtensa/esp32/common/src/esp32_board_i2sdev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_board_i2sdev.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/xtensa/esp32/common/src/esp32_board_mcpwm.c b/boards/xtensa/esp32/common/src/esp32_board_mcpwm.c index 09d1b2728aae3..8366028b30c51 100644 --- a/boards/xtensa/esp32/common/src/esp32_board_mcpwm.c +++ b/boards/xtensa/esp32/common/src/esp32_board_mcpwm.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_board_mcpwm.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/xtensa/esp32/common/src/esp32_board_rmt.c b/boards/xtensa/esp32/common/src/esp32_board_rmt.c index 993ec87361e94..e450d36ce8692 100644 --- a/boards/xtensa/esp32/common/src/esp32_board_rmt.c +++ b/boards/xtensa/esp32/common/src/esp32_board_rmt.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_board_rmt.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/xtensa/esp32/common/src/esp32_board_spi.c b/boards/xtensa/esp32/common/src/esp32_board_spi.c index 7d6e300600662..b7c367d75e8db 100644 --- a/boards/xtensa/esp32/common/src/esp32_board_spi.c +++ b/boards/xtensa/esp32/common/src/esp32_board_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_board_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 diff --git a/boards/xtensa/esp32/common/src/esp32_board_spidev.c b/boards/xtensa/esp32/common/src/esp32_board_spidev.c index 2eaedad6dc785..274b50938acdc 100644 --- a/boards/xtensa/esp32/common/src/esp32_board_spidev.c +++ b/boards/xtensa/esp32/common/src/esp32_board_spidev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_board_spidev.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/xtensa/esp32/common/src/esp32_board_spiflash.c b/boards/xtensa/esp32/common/src/esp32_board_spiflash.c index d68b712b6d734..56ad37c2faad0 100644 --- a/boards/xtensa/esp32/common/src/esp32_board_spiflash.c +++ b/boards/xtensa/esp32/common/src/esp32_board_spiflash.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_board_spiflash.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/xtensa/esp32/common/src/esp32_board_spislavedev.c b/boards/xtensa/esp32/common/src/esp32_board_spislavedev.c index f602e97b32fe0..8ad731f0e88b6 100644 --- a/boards/xtensa/esp32/common/src/esp32_board_spislavedev.c +++ b/boards/xtensa/esp32/common/src/esp32_board_spislavedev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_board_spislavedev.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/xtensa/esp32/common/src/esp32_board_wdt.c b/boards/xtensa/esp32/common/src/esp32_board_wdt.c index 3d0e52ef183f6..915fe58968c1e 100644 --- a/boards/xtensa/esp32/common/src/esp32_board_wdt.c +++ b/boards/xtensa/esp32/common/src/esp32_board_wdt.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_board_wdt.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/xtensa/esp32/common/src/esp32_board_wlan.c b/boards/xtensa/esp32/common/src/esp32_board_wlan.c index 22cdcf1d45535..926187559dbd7 100644 --- a/boards/xtensa/esp32/common/src/esp32_board_wlan.c +++ b/boards/xtensa/esp32/common/src/esp32_board_wlan.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_board_wlan.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/xtensa/esp32/common/src/esp32_cs4344.c b/boards/xtensa/esp32/common/src/esp32_cs4344.c index 6fe6c5d48512b..fc821e94902c3 100644 --- a/boards/xtensa/esp32/common/src/esp32_cs4344.c +++ b/boards/xtensa/esp32/common/src/esp32_cs4344.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_cs4344.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/xtensa/esp32/common/src/esp32_es8388.c b/boards/xtensa/esp32/common/src/esp32_es8388.c index b6974ed0e5138..2eb98b61ce844 100644 --- a/boards/xtensa/esp32/common/src/esp32_es8388.c +++ b/boards/xtensa/esp32/common/src/esp32_es8388.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_es8388.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/xtensa/esp32/common/src/esp32_ht16k33.c b/boards/xtensa/esp32/common/src/esp32_ht16k33.c index 34170a3cac4ad..16a0fa107da7c 100644 --- a/boards/xtensa/esp32/common/src/esp32_ht16k33.c +++ b/boards/xtensa/esp32/common/src/esp32_ht16k33.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_ht16k33.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/xtensa/esp32/common/src/esp32_ili9341.c b/boards/xtensa/esp32/common/src/esp32_ili9341.c index d99ea2d967ee5..eff3be6c7a5ef 100644 --- a/boards/xtensa/esp32/common/src/esp32_ili9341.c +++ b/boards/xtensa/esp32/common/src/esp32_ili9341.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_ili9341.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/xtensa/esp32/common/src/esp32_lcd_backpack.c b/boards/xtensa/esp32/common/src/esp32_lcd_backpack.c index 66d5d8a0f7242..9758b0300dc06 100644 --- a/boards/xtensa/esp32/common/src/esp32_lcd_backpack.c +++ b/boards/xtensa/esp32/common/src/esp32_lcd_backpack.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_lcd_backpack.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/xtensa/esp32/common/src/esp32_ltr308.c b/boards/xtensa/esp32/common/src/esp32_ltr308.c index eadbdd8385530..fcab8ce558666 100644 --- a/boards/xtensa/esp32/common/src/esp32_ltr308.c +++ b/boards/xtensa/esp32/common/src/esp32_ltr308.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_ltr308.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/xtensa/esp32/common/src/esp32_max6675.c b/boards/xtensa/esp32/common/src/esp32_max6675.c index 1cfc5d16a76da..ae624d4b7441b 100644 --- a/boards/xtensa/esp32/common/src/esp32_max6675.c +++ b/boards/xtensa/esp32/common/src/esp32_max6675.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_max6675.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/xtensa/esp32/common/src/esp32_mcp2515.c b/boards/xtensa/esp32/common/src/esp32_mcp2515.c index 4ecef46241262..519c561f95a93 100644 --- a/boards/xtensa/esp32/common/src/esp32_mcp2515.c +++ b/boards/xtensa/esp32/common/src/esp32_mcp2515.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_mcp2515.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/xtensa/esp32/common/src/esp32_ms5611.c b/boards/xtensa/esp32/common/src/esp32_ms5611.c index 0f5e911701a35..0c129288d64bc 100644 --- a/boards/xtensa/esp32/common/src/esp32_ms5611.c +++ b/boards/xtensa/esp32/common/src/esp32_ms5611.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_ms5611.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/xtensa/esp32/common/src/esp32_oneshot.c b/boards/xtensa/esp32/common/src/esp32_oneshot.c index fc0b6ccc2b152..9c9f4e250e493 100644 --- a/boards/xtensa/esp32/common/src/esp32_oneshot.c +++ b/boards/xtensa/esp32/common/src/esp32_oneshot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_oneshot.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/xtensa/esp32/common/src/esp32_qencoder.c b/boards/xtensa/esp32/common/src/esp32_qencoder.c index cf1ecdd3d6de2..025a6fe5b0b68 100644 --- a/boards/xtensa/esp32/common/src/esp32_qencoder.c +++ b/boards/xtensa/esp32/common/src/esp32_qencoder.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_qencoder.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/xtensa/esp32/common/src/esp32_rgbled.c b/boards/xtensa/esp32/common/src/esp32_rgbled.c index 82faf17573962..8668393ac95d1 100644 --- a/boards/xtensa/esp32/common/src/esp32_rgbled.c +++ b/boards/xtensa/esp32/common/src/esp32_rgbled.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_rgbled.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/xtensa/esp32/common/src/esp32_sht3x.c b/boards/xtensa/esp32/common/src/esp32_sht3x.c index 0f10949b764f2..80fdd91966a8b 100644 --- a/boards/xtensa/esp32/common/src/esp32_sht3x.c +++ b/boards/xtensa/esp32/common/src/esp32_sht3x.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_sht3x.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/xtensa/esp32/common/src/esp32_ssd1306.c b/boards/xtensa/esp32/common/src/esp32_ssd1306.c index 4e51fee9c7bf7..1b2813c6f35d4 100644 --- a/boards/xtensa/esp32/common/src/esp32_ssd1306.c +++ b/boards/xtensa/esp32/common/src/esp32_ssd1306.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_ssd1306.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/xtensa/esp32/common/src/esp32_ssd1680.c b/boards/xtensa/esp32/common/src/esp32_ssd1680.c index 9255a0a56a481..3a1ebc772dd8e 100644 --- a/boards/xtensa/esp32/common/src/esp32_ssd1680.c +++ b/boards/xtensa/esp32/common/src/esp32_ssd1680.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_ssd1680.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/xtensa/esp32/common/src/esp32_st7789.c b/boards/xtensa/esp32/common/src/esp32_st7789.c index a97afb665c9dd..bdc0298e25d8d 100644 --- a/boards/xtensa/esp32/common/src/esp32_st7789.c +++ b/boards/xtensa/esp32/common/src/esp32_st7789.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_st7789.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/xtensa/esp32/common/src/esp32_tca9548a.c b/boards/xtensa/esp32/common/src/esp32_tca9548a.c index 74584f1fb4029..b23214d88176b 100644 --- a/boards/xtensa/esp32/common/src/esp32_tca9548a.c +++ b/boards/xtensa/esp32/common/src/esp32_tca9548a.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_tca9548a.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/xtensa/esp32/common/src/esp32_zerocross.c b/boards/xtensa/esp32/common/src/esp32_zerocross.c index 45a945508b3dc..2bbbd94aea100 100644 --- a/boards/xtensa/esp32/common/src/esp32_zerocross.c +++ b/boards/xtensa/esp32/common/src/esp32_zerocross.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/common/src/esp32_zerocross.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/xtensa/esp32/esp32-2432S028/include/board.h b/boards/xtensa/esp32/esp32-2432S028/include/board.h index 9ae014b1f0c31..757cca40b3876 100644 --- a/boards/xtensa/esp32/esp32-2432S028/include/board.h +++ b/boards/xtensa/esp32/esp32-2432S028/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-2432S028/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/xtensa/esp32/esp32-2432S028/include/board_memorymap.h b/boards/xtensa/esp32/esp32-2432S028/include/board_memorymap.h index b937a067667a2..263082470a732 100644 --- a/boards/xtensa/esp32/esp32-2432S028/include/board_memorymap.h +++ b/boards/xtensa/esp32/esp32-2432S028/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-2432S028/include/board_memorymap.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/xtensa/esp32/esp32-2432S028/scripts/Make.defs b/boards/xtensa/esp32/esp32-2432S028/scripts/Make.defs index c043fc9d0e636..244b2cf1a19ad 100644 --- a/boards/xtensa/esp32/esp32-2432S028/scripts/Make.defs +++ b/boards/xtensa/esp32/esp32-2432S028/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/esp32-2432S028/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/xtensa/esp32/esp32-2432S028/src/Make.defs b/boards/xtensa/esp32/esp32-2432S028/src/Make.defs index 74d8ad72b7c08..3c290f39dbf8f 100644 --- a/boards/xtensa/esp32/esp32-2432S028/src/Make.defs +++ b/boards/xtensa/esp32/esp32-2432S028/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/xtensa/esp32/esp32-2432S028/src/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/xtensa/esp32/esp32-2432S028/src/esp32-2432S028.h b/boards/xtensa/esp32/esp32-2432S028/src/esp32-2432S028.h index 7bf1e7cb2e9f8..027ec6c2d5727 100644 --- a/boards/xtensa/esp32/esp32-2432S028/src/esp32-2432S028.h +++ b/boards/xtensa/esp32/esp32-2432S028/src/esp32-2432S028.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-2432S028/src/esp32-2432S028.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/xtensa/esp32/esp32-2432S028/src/esp32_appinit.c b/boards/xtensa/esp32/esp32-2432S028/src/esp32_appinit.c index ea6e562653424..11620018d9ba6 100644 --- a/boards/xtensa/esp32/esp32-2432S028/src/esp32_appinit.c +++ b/boards/xtensa/esp32/esp32-2432S028/src/esp32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-2432S028/src/esp32_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/xtensa/esp32/esp32-2432S028/src/esp32_boot.c b/boards/xtensa/esp32/esp32-2432S028/src/esp32_boot.c index c9dab6e2bcba9..05bbb70c16a27 100644 --- a/boards/xtensa/esp32/esp32-2432S028/src/esp32_boot.c +++ b/boards/xtensa/esp32/esp32-2432S028/src/esp32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-2432S028/src/esp32_boot.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/xtensa/esp32/esp32-2432S028/src/esp32_bringup.c b/boards/xtensa/esp32/esp32-2432S028/src/esp32_bringup.c index 2e7e340412e6f..1ed9140c30261 100644 --- a/boards/xtensa/esp32/esp32-2432S028/src/esp32_bringup.c +++ b/boards/xtensa/esp32/esp32-2432S028/src/esp32_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-2432S028/src/esp32_bringup.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/xtensa/esp32/esp32-2432S028/src/esp32_reset.c b/boards/xtensa/esp32/esp32-2432S028/src/esp32_reset.c index ecd1151ea1dfb..5f66907a29cf1 100644 --- a/boards/xtensa/esp32/esp32-2432S028/src/esp32_reset.c +++ b/boards/xtensa/esp32/esp32-2432S028/src/esp32_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-2432S028/src/esp32_reset.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/xtensa/esp32/esp32-audio-kit/include/board.h b/boards/xtensa/esp32/esp32-audio-kit/include/board.h index 3e6a8941cbf86..f7b91ab617100 100644 --- a/boards/xtensa/esp32/esp32-audio-kit/include/board.h +++ b/boards/xtensa/esp32/esp32-audio-kit/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-audio-kit/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/xtensa/esp32/esp32-audio-kit/include/board_memorymap.h b/boards/xtensa/esp32/esp32-audio-kit/include/board_memorymap.h index ece46113e8f2b..802c4ac840732 100644 --- a/boards/xtensa/esp32/esp32-audio-kit/include/board_memorymap.h +++ b/boards/xtensa/esp32/esp32-audio-kit/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-audio-kit/include/board_memorymap.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/xtensa/esp32/esp32-audio-kit/scripts/Make.defs b/boards/xtensa/esp32/esp32-audio-kit/scripts/Make.defs index 694cb042e3289..e5ba450a71e8b 100644 --- a/boards/xtensa/esp32/esp32-audio-kit/scripts/Make.defs +++ b/boards/xtensa/esp32/esp32-audio-kit/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/esp32-audio-kit/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/xtensa/esp32/esp32-audio-kit/src/Make.defs b/boards/xtensa/esp32/esp32-audio-kit/src/Make.defs index a8202b3bc4490..98762a60ec4b6 100644 --- a/boards/xtensa/esp32/esp32-audio-kit/src/Make.defs +++ b/boards/xtensa/esp32/esp32-audio-kit/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/xtensa/esp32/esp32-audio-kit/src/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/xtensa/esp32/esp32-audio-kit/src/esp32-audio-kit.h b/boards/xtensa/esp32/esp32-audio-kit/src/esp32-audio-kit.h index 489f7b01068ab..589134ae4be20 100644 --- a/boards/xtensa/esp32/esp32-audio-kit/src/esp32-audio-kit.h +++ b/boards/xtensa/esp32/esp32-audio-kit/src/esp32-audio-kit.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-audio-kit/src/esp32-audio-kit.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/xtensa/esp32/esp32-audio-kit/src/esp32_appinit.c b/boards/xtensa/esp32/esp32-audio-kit/src/esp32_appinit.c index 2959ca024b67c..06c43572d40c3 100644 --- a/boards/xtensa/esp32/esp32-audio-kit/src/esp32_appinit.c +++ b/boards/xtensa/esp32/esp32-audio-kit/src/esp32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-audio-kit/src/esp32_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/xtensa/esp32/esp32-audio-kit/src/esp32_boot.c b/boards/xtensa/esp32/esp32-audio-kit/src/esp32_boot.c index a4446c86b42aa..f6232747930e0 100644 --- a/boards/xtensa/esp32/esp32-audio-kit/src/esp32_boot.c +++ b/boards/xtensa/esp32/esp32-audio-kit/src/esp32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-audio-kit/src/esp32_boot.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/xtensa/esp32/esp32-audio-kit/src/esp32_bringup.c b/boards/xtensa/esp32/esp32-audio-kit/src/esp32_bringup.c index e6503456e6839..adfbef847f0fe 100644 --- a/boards/xtensa/esp32/esp32-audio-kit/src/esp32_bringup.c +++ b/boards/xtensa/esp32/esp32-audio-kit/src/esp32_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-audio-kit/src/esp32_bringup.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/xtensa/esp32/esp32-audio-kit/src/esp32_buttons.c b/boards/xtensa/esp32/esp32-audio-kit/src/esp32_buttons.c index 278ff8a6e3a4b..af3a68db990ef 100644 --- a/boards/xtensa/esp32/esp32-audio-kit/src/esp32_buttons.c +++ b/boards/xtensa/esp32/esp32-audio-kit/src/esp32_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-audio-kit/src/esp32_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/xtensa/esp32/esp32-audio-kit/src/esp32_gpio.c b/boards/xtensa/esp32/esp32-audio-kit/src/esp32_gpio.c index e23048cc4487d..bd181d71783a1 100644 --- a/boards/xtensa/esp32/esp32-audio-kit/src/esp32_gpio.c +++ b/boards/xtensa/esp32/esp32-audio-kit/src/esp32_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-audio-kit/src/esp32_gpio.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/xtensa/esp32/esp32-audio-kit/src/esp32_mmcsd.c b/boards/xtensa/esp32/esp32-audio-kit/src/esp32_mmcsd.c index 2ae013af5ee0e..93705cee8faa7 100644 --- a/boards/xtensa/esp32/esp32-audio-kit/src/esp32_mmcsd.c +++ b/boards/xtensa/esp32/esp32-audio-kit/src/esp32_mmcsd.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-audio-kit/src/esp32_mmcsd.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/xtensa/esp32/esp32-audio-kit/src/esp32_reset.c b/boards/xtensa/esp32/esp32-audio-kit/src/esp32_reset.c index a262a3d307f56..e78e133bd3783 100644 --- a/boards/xtensa/esp32/esp32-audio-kit/src/esp32_reset.c +++ b/boards/xtensa/esp32/esp32-audio-kit/src/esp32_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-audio-kit/src/esp32_reset.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/xtensa/esp32/esp32-audio-kit/src/esp32_userleds.c b/boards/xtensa/esp32/esp32-audio-kit/src/esp32_userleds.c index 33964fe1e1d41..b9e061a5c6edd 100644 --- a/boards/xtensa/esp32/esp32-audio-kit/src/esp32_userleds.c +++ b/boards/xtensa/esp32/esp32-audio-kit/src/esp32_userleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-audio-kit/src/esp32_userleds.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/xtensa/esp32/esp32-devkitc/include/board.h b/boards/xtensa/esp32/esp32-devkitc/include/board.h index 103c4a9c9ed3f..bbd54b6c5b0d5 100644 --- a/boards/xtensa/esp32/esp32-devkitc/include/board.h +++ b/boards/xtensa/esp32/esp32-devkitc/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-devkitc/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/xtensa/esp32/esp32-devkitc/include/board_memorymap.h b/boards/xtensa/esp32/esp32-devkitc/include/board_memorymap.h index a67e54d860bdf..12fe44e25f357 100644 --- a/boards/xtensa/esp32/esp32-devkitc/include/board_memorymap.h +++ b/boards/xtensa/esp32/esp32-devkitc/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-devkitc/include/board_memorymap.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/xtensa/esp32/esp32-devkitc/scripts/Make.defs b/boards/xtensa/esp32/esp32-devkitc/scripts/Make.defs index 73cbc5bc6ea74..c8d940eed44f7 100644 --- a/boards/xtensa/esp32/esp32-devkitc/scripts/Make.defs +++ b/boards/xtensa/esp32/esp32-devkitc/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/esp32-devkitc/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/xtensa/esp32/esp32-devkitc/src/Make.defs b/boards/xtensa/esp32/esp32-devkitc/src/Make.defs index 784eaf1ea257d..de8acb1a4e817 100644 --- a/boards/xtensa/esp32/esp32-devkitc/src/Make.defs +++ b/boards/xtensa/esp32/esp32-devkitc/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/esp32-devkitc/src/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/xtensa/esp32/esp32-devkitc/src/esp32-devkitc.h b/boards/xtensa/esp32/esp32-devkitc/src/esp32-devkitc.h index ddce1e7bafea2..5c8b2e6ed978c 100644 --- a/boards/xtensa/esp32/esp32-devkitc/src/esp32-devkitc.h +++ b/boards/xtensa/esp32/esp32-devkitc/src/esp32-devkitc.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-devkitc/src/esp32-devkitc.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/xtensa/esp32/esp32-devkitc/src/esp32_appinit.c b/boards/xtensa/esp32/esp32-devkitc/src/esp32_appinit.c index 4f51ea7914c7a..a6ae085adaa25 100644 --- a/boards/xtensa/esp32/esp32-devkitc/src/esp32_appinit.c +++ b/boards/xtensa/esp32/esp32-devkitc/src/esp32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-devkitc/src/esp32_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/xtensa/esp32/esp32-devkitc/src/esp32_boot.c b/boards/xtensa/esp32/esp32-devkitc/src/esp32_boot.c index 645c6f354e712..adc2ecfc4f0b2 100644 --- a/boards/xtensa/esp32/esp32-devkitc/src/esp32_boot.c +++ b/boards/xtensa/esp32/esp32-devkitc/src/esp32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-devkitc/src/esp32_boot.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/xtensa/esp32/esp32-devkitc/src/esp32_bringup.c b/boards/xtensa/esp32/esp32-devkitc/src/esp32_bringup.c index 3fca7db59b5f9..9714a9f62f21b 100644 --- a/boards/xtensa/esp32/esp32-devkitc/src/esp32_bringup.c +++ b/boards/xtensa/esp32/esp32-devkitc/src/esp32_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-devkitc/src/esp32_bringup.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/xtensa/esp32/esp32-devkitc/src/esp32_buttons.c b/boards/xtensa/esp32/esp32-devkitc/src/esp32_buttons.c index 0a33fb9636f13..3fc02201d8815 100644 --- a/boards/xtensa/esp32/esp32-devkitc/src/esp32_buttons.c +++ b/boards/xtensa/esp32/esp32-devkitc/src/esp32_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-devkitc/src/esp32_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/xtensa/esp32/esp32-devkitc/src/esp32_gpio.c b/boards/xtensa/esp32/esp32-devkitc/src/esp32_gpio.c index 58b0d74dbe45a..d54803f8c2144 100644 --- a/boards/xtensa/esp32/esp32-devkitc/src/esp32_gpio.c +++ b/boards/xtensa/esp32/esp32-devkitc/src/esp32_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-devkitc/src/esp32_gpio.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/xtensa/esp32/esp32-devkitc/src/esp32_ledc.c b/boards/xtensa/esp32/esp32-devkitc/src/esp32_ledc.c index 7f424fddb2eee..321878f5ab56a 100644 --- a/boards/xtensa/esp32/esp32-devkitc/src/esp32_ledc.c +++ b/boards/xtensa/esp32/esp32-devkitc/src/esp32_ledc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-devkitc/src/esp32_ledc.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/xtensa/esp32/esp32-devkitc/src/esp32_mmcsd.c b/boards/xtensa/esp32/esp32-devkitc/src/esp32_mmcsd.c index 0bbe718ab5c3b..8feb2dda3aa2d 100644 --- a/boards/xtensa/esp32/esp32-devkitc/src/esp32_mmcsd.c +++ b/boards/xtensa/esp32/esp32-devkitc/src/esp32_mmcsd.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-devkitc/src/esp32_mmcsd.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/xtensa/esp32/esp32-devkitc/src/esp32_reset.c b/boards/xtensa/esp32/esp32-devkitc/src/esp32_reset.c index 3a0d7b3cdc111..18f6b4a47927e 100644 --- a/boards/xtensa/esp32/esp32-devkitc/src/esp32_reset.c +++ b/boards/xtensa/esp32/esp32-devkitc/src/esp32_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-devkitc/src/esp32_reset.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/xtensa/esp32/esp32-devkitc/src/esp32_twai.c b/boards/xtensa/esp32/esp32-devkitc/src/esp32_twai.c index d464e236d1ef7..d6bc25a77d298 100644 --- a/boards/xtensa/esp32/esp32-devkitc/src/esp32_twai.c +++ b/boards/xtensa/esp32/esp32-devkitc/src/esp32_twai.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-devkitc/src/esp32_twai.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/xtensa/esp32/esp32-devkitc/src/esp32_userleds.c b/boards/xtensa/esp32/esp32-devkitc/src/esp32_userleds.c index c439747217339..eea2ae6191aa3 100644 --- a/boards/xtensa/esp32/esp32-devkitc/src/esp32_userleds.c +++ b/boards/xtensa/esp32/esp32-devkitc/src/esp32_userleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-devkitc/src/esp32_userleds.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/xtensa/esp32/esp32-devkitc/src/esp32_w5500.c b/boards/xtensa/esp32/esp32-devkitc/src/esp32_w5500.c index b629d19d00119..272a0e6ff0861 100644 --- a/boards/xtensa/esp32/esp32-devkitc/src/esp32_w5500.c +++ b/boards/xtensa/esp32/esp32-devkitc/src/esp32_w5500.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-devkitc/src/esp32_w5500.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/xtensa/esp32/esp32-devkitc/src/esp32_ws2812.c b/boards/xtensa/esp32/esp32-devkitc/src/esp32_ws2812.c index 41e5ffcb415fb..2033b31d8f22c 100644 --- a/boards/xtensa/esp32/esp32-devkitc/src/esp32_ws2812.c +++ b/boards/xtensa/esp32/esp32-devkitc/src/esp32_ws2812.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-devkitc/src/esp32_ws2812.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/xtensa/esp32/esp32-ethernet-kit/include/board.h b/boards/xtensa/esp32/esp32-ethernet-kit/include/board.h index 6fb43b22d11f7..5327406faa001 100644 --- a/boards/xtensa/esp32/esp32-ethernet-kit/include/board.h +++ b/boards/xtensa/esp32/esp32-ethernet-kit/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-ethernet-kit/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/xtensa/esp32/esp32-ethernet-kit/include/board_memorymap.h b/boards/xtensa/esp32/esp32-ethernet-kit/include/board_memorymap.h index dac4e87d511f6..930652ec27b5b 100644 --- a/boards/xtensa/esp32/esp32-ethernet-kit/include/board_memorymap.h +++ b/boards/xtensa/esp32/esp32-ethernet-kit/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-ethernet-kit/include/board_memorymap.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/xtensa/esp32/esp32-ethernet-kit/scripts/Make.defs b/boards/xtensa/esp32/esp32-ethernet-kit/scripts/Make.defs index f0ad439e3c9d5..7356bde03d301 100644 --- a/boards/xtensa/esp32/esp32-ethernet-kit/scripts/Make.defs +++ b/boards/xtensa/esp32/esp32-ethernet-kit/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/esp32-ethernet-kit/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/xtensa/esp32/esp32-ethernet-kit/src/Make.defs b/boards/xtensa/esp32/esp32-ethernet-kit/src/Make.defs index 17e94f57126b4..918b9b15138eb 100644 --- a/boards/xtensa/esp32/esp32-ethernet-kit/src/Make.defs +++ b/boards/xtensa/esp32/esp32-ethernet-kit/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/xtensa/esp32/esp32-ethernet-kit/src/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/xtensa/esp32/esp32-ethernet-kit/src/esp32-ethernet-kit.h b/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32-ethernet-kit.h index a8d992c4ea63e..0a880131ca8dc 100644 --- a/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32-ethernet-kit.h +++ b/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32-ethernet-kit.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-ethernet-kit/src/esp32-ethernet-kit.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/xtensa/esp32/esp32-ethernet-kit/src/esp32_appinit.c b/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_appinit.c index 4366443aa0478..cb24b96828e84 100644 --- a/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_appinit.c +++ b/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_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/xtensa/esp32/esp32-ethernet-kit/src/esp32_boot.c b/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_boot.c index 01a16ae8cf15b..affdc79f47ad2 100644 --- a/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_boot.c +++ b/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_boot.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/xtensa/esp32/esp32-ethernet-kit/src/esp32_bringup.c b/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_bringup.c index 10fba05b17d57..27b9e36b82f75 100644 --- a/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_bringup.c +++ b/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_bringup.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/xtensa/esp32/esp32-ethernet-kit/src/esp32_buttons.c b/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_buttons.c index 1966dd76beacb..a0a408b812066 100644 --- a/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_buttons.c +++ b/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_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/xtensa/esp32/esp32-ethernet-kit/src/esp32_mmcsd.c b/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_mmcsd.c index 330c609138000..32732db91c6a1 100644 --- a/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_mmcsd.c +++ b/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_mmcsd.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_mmcsd.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/xtensa/esp32/esp32-ethernet-kit/src/esp32_reset.c b/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_reset.c index 28f88175babf1..3149651d0c51d 100644 --- a/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_reset.c +++ b/boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_reset.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/xtensa/esp32/esp32-lyrat/include/board.h b/boards/xtensa/esp32/esp32-lyrat/include/board.h index 08609dc963d1b..90af238b525f3 100644 --- a/boards/xtensa/esp32/esp32-lyrat/include/board.h +++ b/boards/xtensa/esp32/esp32-lyrat/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-lyrat/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/xtensa/esp32/esp32-lyrat/include/board_memorymap.h b/boards/xtensa/esp32/esp32-lyrat/include/board_memorymap.h index 878d8b83b2731..ae0b354ed9b74 100644 --- a/boards/xtensa/esp32/esp32-lyrat/include/board_memorymap.h +++ b/boards/xtensa/esp32/esp32-lyrat/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-lyrat/include/board_memorymap.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/xtensa/esp32/esp32-lyrat/scripts/Make.defs b/boards/xtensa/esp32/esp32-lyrat/scripts/Make.defs index abffc7854ef05..71286505c9430 100644 --- a/boards/xtensa/esp32/esp32-lyrat/scripts/Make.defs +++ b/boards/xtensa/esp32/esp32-lyrat/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/esp32-lyrat/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/xtensa/esp32/esp32-lyrat/src/Make.defs b/boards/xtensa/esp32/esp32-lyrat/src/Make.defs index 6476febe39a67..f3255daccb8ce 100644 --- a/boards/xtensa/esp32/esp32-lyrat/src/Make.defs +++ b/boards/xtensa/esp32/esp32-lyrat/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/xtensa/esp32/esp32-lyrat/src/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/xtensa/esp32/esp32-lyrat/src/esp32-lyrat.h b/boards/xtensa/esp32/esp32-lyrat/src/esp32-lyrat.h index 0f3687ef91f86..ec8feb4c60899 100644 --- a/boards/xtensa/esp32/esp32-lyrat/src/esp32-lyrat.h +++ b/boards/xtensa/esp32/esp32-lyrat/src/esp32-lyrat.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-lyrat/src/esp32-lyrat.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/xtensa/esp32/esp32-lyrat/src/esp32_appinit.c b/boards/xtensa/esp32/esp32-lyrat/src/esp32_appinit.c index e818a5fe54ae5..71f05bdeddb98 100644 --- a/boards/xtensa/esp32/esp32-lyrat/src/esp32_appinit.c +++ b/boards/xtensa/esp32/esp32-lyrat/src/esp32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-lyrat/src/esp32_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/xtensa/esp32/esp32-lyrat/src/esp32_boot.c b/boards/xtensa/esp32/esp32-lyrat/src/esp32_boot.c index 82dec5e606143..8ddda662cc6e1 100644 --- a/boards/xtensa/esp32/esp32-lyrat/src/esp32_boot.c +++ b/boards/xtensa/esp32/esp32-lyrat/src/esp32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-lyrat/src/esp32_boot.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/xtensa/esp32/esp32-lyrat/src/esp32_bringup.c b/boards/xtensa/esp32/esp32-lyrat/src/esp32_bringup.c index 44a995ff7fc12..d772ca1cf51ae 100644 --- a/boards/xtensa/esp32/esp32-lyrat/src/esp32_bringup.c +++ b/boards/xtensa/esp32/esp32-lyrat/src/esp32_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-lyrat/src/esp32_bringup.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/xtensa/esp32/esp32-lyrat/src/esp32_buttons.c b/boards/xtensa/esp32/esp32-lyrat/src/esp32_buttons.c index d04ef4b006e04..afbf937fed3ee 100644 --- a/boards/xtensa/esp32/esp32-lyrat/src/esp32_buttons.c +++ b/boards/xtensa/esp32/esp32-lyrat/src/esp32_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-lyrat/src/esp32_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/xtensa/esp32/esp32-lyrat/src/esp32_gpio.c b/boards/xtensa/esp32/esp32-lyrat/src/esp32_gpio.c index 03c299dce4255..e07eba3839506 100644 --- a/boards/xtensa/esp32/esp32-lyrat/src/esp32_gpio.c +++ b/boards/xtensa/esp32/esp32-lyrat/src/esp32_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-lyrat/src/esp32_gpio.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/xtensa/esp32/esp32-lyrat/src/esp32_mmcsd.c b/boards/xtensa/esp32/esp32-lyrat/src/esp32_mmcsd.c index 8d21089b0dc05..5a2fbfff8a625 100644 --- a/boards/xtensa/esp32/esp32-lyrat/src/esp32_mmcsd.c +++ b/boards/xtensa/esp32/esp32-lyrat/src/esp32_mmcsd.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-lyrat/src/esp32_mmcsd.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/xtensa/esp32/esp32-lyrat/src/esp32_reset.c b/boards/xtensa/esp32/esp32-lyrat/src/esp32_reset.c index cc75eb52d517f..8cbdc712f948e 100644 --- a/boards/xtensa/esp32/esp32-lyrat/src/esp32_reset.c +++ b/boards/xtensa/esp32/esp32-lyrat/src/esp32_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-lyrat/src/esp32_reset.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/xtensa/esp32/esp32-lyrat/src/esp32_userleds.c b/boards/xtensa/esp32/esp32-lyrat/src/esp32_userleds.c index 038516357162d..300bd8c371393 100644 --- a/boards/xtensa/esp32/esp32-lyrat/src/esp32_userleds.c +++ b/boards/xtensa/esp32/esp32-lyrat/src/esp32_userleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-lyrat/src/esp32_userleds.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/xtensa/esp32/esp32-pico-kit/include/board.h b/boards/xtensa/esp32/esp32-pico-kit/include/board.h index dd9c5a8411ac7..3f222a43fc886 100644 --- a/boards/xtensa/esp32/esp32-pico-kit/include/board.h +++ b/boards/xtensa/esp32/esp32-pico-kit/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-pico-kit/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/xtensa/esp32/esp32-pico-kit/include/board_memorymap.h b/boards/xtensa/esp32/esp32-pico-kit/include/board_memorymap.h index ede920b426148..04b625e2df7c5 100644 --- a/boards/xtensa/esp32/esp32-pico-kit/include/board_memorymap.h +++ b/boards/xtensa/esp32/esp32-pico-kit/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-pico-kit/include/board_memorymap.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/xtensa/esp32/esp32-pico-kit/scripts/Make.defs b/boards/xtensa/esp32/esp32-pico-kit/scripts/Make.defs index c585abe4bc79b..78fa330e38d0c 100644 --- a/boards/xtensa/esp32/esp32-pico-kit/scripts/Make.defs +++ b/boards/xtensa/esp32/esp32-pico-kit/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/esp32-pico-kit/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/xtensa/esp32/esp32-pico-kit/src/Make.defs b/boards/xtensa/esp32/esp32-pico-kit/src/Make.defs index da6ac0e970ab3..1aae7571fa2cb 100644 --- a/boards/xtensa/esp32/esp32-pico-kit/src/Make.defs +++ b/boards/xtensa/esp32/esp32-pico-kit/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/esp32-pico-kit/src/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/xtensa/esp32/esp32-pico-kit/src/esp32-pico-kit.h b/boards/xtensa/esp32/esp32-pico-kit/src/esp32-pico-kit.h index 566f1b03cef6a..10504f9117de9 100644 --- a/boards/xtensa/esp32/esp32-pico-kit/src/esp32-pico-kit.h +++ b/boards/xtensa/esp32/esp32-pico-kit/src/esp32-pico-kit.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-pico-kit/src/esp32-pico-kit.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/xtensa/esp32/esp32-pico-kit/src/esp32_appinit.c b/boards/xtensa/esp32/esp32-pico-kit/src/esp32_appinit.c index 63da8e5969aef..b1c36f604e8fd 100644 --- a/boards/xtensa/esp32/esp32-pico-kit/src/esp32_appinit.c +++ b/boards/xtensa/esp32/esp32-pico-kit/src/esp32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-pico-kit/src/esp32_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/xtensa/esp32/esp32-pico-kit/src/esp32_boot.c b/boards/xtensa/esp32/esp32-pico-kit/src/esp32_boot.c index 6d1ae79200ae7..a40cc6977cf45 100644 --- a/boards/xtensa/esp32/esp32-pico-kit/src/esp32_boot.c +++ b/boards/xtensa/esp32/esp32-pico-kit/src/esp32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-pico-kit/src/esp32_boot.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/xtensa/esp32/esp32-pico-kit/src/esp32_bringup.c b/boards/xtensa/esp32/esp32-pico-kit/src/esp32_bringup.c index 9008c56829785..e7becaec67298 100644 --- a/boards/xtensa/esp32/esp32-pico-kit/src/esp32_bringup.c +++ b/boards/xtensa/esp32/esp32-pico-kit/src/esp32_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-pico-kit/src/esp32_bringup.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/xtensa/esp32/esp32-pico-kit/src/esp32_buttons.c b/boards/xtensa/esp32/esp32-pico-kit/src/esp32_buttons.c index c96619899f7cd..881741eace89c 100644 --- a/boards/xtensa/esp32/esp32-pico-kit/src/esp32_buttons.c +++ b/boards/xtensa/esp32/esp32-pico-kit/src/esp32_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-pico-kit/src/esp32_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/xtensa/esp32/esp32-pico-kit/src/esp32_gpio.c b/boards/xtensa/esp32/esp32-pico-kit/src/esp32_gpio.c index 48c33a3eee061..99de2dc85bed7 100644 --- a/boards/xtensa/esp32/esp32-pico-kit/src/esp32_gpio.c +++ b/boards/xtensa/esp32/esp32-pico-kit/src/esp32_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-pico-kit/src/esp32_gpio.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/xtensa/esp32/esp32-pico-kit/src/esp32_ledc.c b/boards/xtensa/esp32/esp32-pico-kit/src/esp32_ledc.c index f6f0fbc4da5f0..6e9d1a51acedd 100644 --- a/boards/xtensa/esp32/esp32-pico-kit/src/esp32_ledc.c +++ b/boards/xtensa/esp32/esp32-pico-kit/src/esp32_ledc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-pico-kit/src/esp32_ledc.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/xtensa/esp32/esp32-pico-kit/src/esp32_reset.c b/boards/xtensa/esp32/esp32-pico-kit/src/esp32_reset.c index 7c6e105c27353..5f186d1c14b61 100644 --- a/boards/xtensa/esp32/esp32-pico-kit/src/esp32_reset.c +++ b/boards/xtensa/esp32/esp32-pico-kit/src/esp32_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-pico-kit/src/esp32_reset.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/xtensa/esp32/esp32-pico-kit/src/esp32_twai.c b/boards/xtensa/esp32/esp32-pico-kit/src/esp32_twai.c index 4c813c5ba2a0a..036feec2092d8 100644 --- a/boards/xtensa/esp32/esp32-pico-kit/src/esp32_twai.c +++ b/boards/xtensa/esp32/esp32-pico-kit/src/esp32_twai.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-pico-kit/src/esp32_twai.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/xtensa/esp32/esp32-sparrow-kit/include/board.h b/boards/xtensa/esp32/esp32-sparrow-kit/include/board.h index e2ec9edaf8df1..c93383fe42142 100644 --- a/boards/xtensa/esp32/esp32-sparrow-kit/include/board.h +++ b/boards/xtensa/esp32/esp32-sparrow-kit/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-sparrow-kit/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/xtensa/esp32/esp32-sparrow-kit/include/board_memorymap.h b/boards/xtensa/esp32/esp32-sparrow-kit/include/board_memorymap.h index 8b6018704ab36..a67d058cf8594 100644 --- a/boards/xtensa/esp32/esp32-sparrow-kit/include/board_memorymap.h +++ b/boards/xtensa/esp32/esp32-sparrow-kit/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-sparrow-kit/include/board_memorymap.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/xtensa/esp32/esp32-sparrow-kit/scripts/Make.defs b/boards/xtensa/esp32/esp32-sparrow-kit/scripts/Make.defs index 8540e6b8a6e60..1dd358814495d 100644 --- a/boards/xtensa/esp32/esp32-sparrow-kit/scripts/Make.defs +++ b/boards/xtensa/esp32/esp32-sparrow-kit/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/esp32-sparrow-kit/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/xtensa/esp32/esp32-sparrow-kit/src/Make.defs b/boards/xtensa/esp32/esp32-sparrow-kit/src/Make.defs index da969ff7f2dd7..49438da92e9e0 100644 --- a/boards/xtensa/esp32/esp32-sparrow-kit/src/Make.defs +++ b/boards/xtensa/esp32/esp32-sparrow-kit/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/xtensa/esp32/esp32-sparrow-kit/src/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/xtensa/esp32/esp32-sparrow-kit/src/esp32-sparrow-kit.h b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32-sparrow-kit.h index c4b87b22d9e65..65d22e3181ec6 100644 --- a/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32-sparrow-kit.h +++ b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32-sparrow-kit.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-sparrow-kit/src/esp32-sparrow-kit.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/xtensa/esp32/esp32-sparrow-kit/src/esp32_appinit.c b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_appinit.c index cc5ff31e2f0fd..8e678300a6ed2 100644 --- a/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_appinit.c +++ b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_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/xtensa/esp32/esp32-sparrow-kit/src/esp32_autoleds.c b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_autoleds.c index 74229dcada354..ce3cc25d0c5e4 100644 --- a/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_autoleds.c +++ b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_autoleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_autoleds.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/xtensa/esp32/esp32-sparrow-kit/src/esp32_boot.c b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_boot.c index e7ce03815fc29..0023ee0f54533 100644 --- a/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_boot.c +++ b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_boot.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/xtensa/esp32/esp32-sparrow-kit/src/esp32_bringup.c b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_bringup.c index 4b06008116c96..b7fde28c3039d 100644 --- a/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_bringup.c +++ b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_bringup.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/xtensa/esp32/esp32-sparrow-kit/src/esp32_buttons.c b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_buttons.c index 9c4b25f2edee6..acf459d86e586 100644 --- a/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_buttons.c +++ b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_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/xtensa/esp32/esp32-sparrow-kit/src/esp32_gpio.c b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_gpio.c index a2c455ac7e9f5..f8616455c669c 100644 --- a/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_gpio.c +++ b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_gpio.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/xtensa/esp32/esp32-sparrow-kit/src/esp32_mmcsd.c b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_mmcsd.c index 6dc3afda83dbc..47f224f6637a3 100644 --- a/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_mmcsd.c +++ b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_mmcsd.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_mmcsd.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/xtensa/esp32/esp32-sparrow-kit/src/esp32_reset.c b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_reset.c index e77dac380513d..d62b8bee5c61d 100644 --- a/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_reset.c +++ b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_reset.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/xtensa/esp32/esp32-sparrow-kit/src/esp32_userleds.c b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_userleds.c index a1b49875d8867..9402a19eb4a33 100644 --- a/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_userleds.c +++ b/boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_userleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-sparrow-kit/src/esp32_userleds.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/xtensa/esp32/esp32-wrover-kit/include/board.h b/boards/xtensa/esp32/esp32-wrover-kit/include/board.h index 4db79503b9593..93f8a8d32213d 100644 --- a/boards/xtensa/esp32/esp32-wrover-kit/include/board.h +++ b/boards/xtensa/esp32/esp32-wrover-kit/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-wrover-kit/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/xtensa/esp32/esp32-wrover-kit/include/board_memorymap.h b/boards/xtensa/esp32/esp32-wrover-kit/include/board_memorymap.h index 63527fd893f93..33ce8deb3e8fb 100644 --- a/boards/xtensa/esp32/esp32-wrover-kit/include/board_memorymap.h +++ b/boards/xtensa/esp32/esp32-wrover-kit/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-wrover-kit/include/board_memorymap.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/xtensa/esp32/esp32-wrover-kit/scripts/Make.defs b/boards/xtensa/esp32/esp32-wrover-kit/scripts/Make.defs index 8d61ee7eca7c5..9742c96ed704f 100644 --- a/boards/xtensa/esp32/esp32-wrover-kit/scripts/Make.defs +++ b/boards/xtensa/esp32/esp32-wrover-kit/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/esp32-wrover-kit/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/xtensa/esp32/esp32-wrover-kit/src/Make.defs b/boards/xtensa/esp32/esp32-wrover-kit/src/Make.defs index 16a636399f139..ad6f1659542ab 100644 --- a/boards/xtensa/esp32/esp32-wrover-kit/src/Make.defs +++ b/boards/xtensa/esp32/esp32-wrover-kit/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/xtensa/esp32/esp32-wrover-kit/src/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/xtensa/esp32/esp32-wrover-kit/src/esp32-wrover-kit.h b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32-wrover-kit.h index f1b040f0c8f96..aea94dc404731 100644 --- a/boards/xtensa/esp32/esp32-wrover-kit/src/esp32-wrover-kit.h +++ b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32-wrover-kit.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-wrover-kit/src/esp32-wrover-kit.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/xtensa/esp32/esp32-wrover-kit/src/esp32_appinit.c b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_appinit.c index d8eb27deb7e21..3869cc494783b 100644 --- a/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_appinit.c +++ b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-wrover-kit/src/esp32_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/xtensa/esp32/esp32-wrover-kit/src/esp32_autoleds.c b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_autoleds.c index ef658a70351f6..f7812642776e7 100644 --- a/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_autoleds.c +++ b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_autoleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-wrover-kit/src/esp32_autoleds.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/xtensa/esp32/esp32-wrover-kit/src/esp32_boot.c b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_boot.c index 6e1ef0700ac91..90a2752e39050 100644 --- a/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_boot.c +++ b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-wrover-kit/src/esp32_boot.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/xtensa/esp32/esp32-wrover-kit/src/esp32_bringup.c b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_bringup.c index 342b518e6817d..8ee68f28a16b3 100644 --- a/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_bringup.c +++ b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-wrover-kit/src/esp32_bringup.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/xtensa/esp32/esp32-wrover-kit/src/esp32_buttons.c b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_buttons.c index 5d1fb4727c685..6de3eef25713b 100644 --- a/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_buttons.c +++ b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-wrover-kit/src/esp32_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/xtensa/esp32/esp32-wrover-kit/src/esp32_gpio.c b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_gpio.c index e7ed75cb700be..8a3303e828676 100644 --- a/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_gpio.c +++ b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-wrover-kit/src/esp32_gpio.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/xtensa/esp32/esp32-wrover-kit/src/esp32_mmcsd.c b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_mmcsd.c index 893f0d96e3c0f..c561908e50350 100644 --- a/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_mmcsd.c +++ b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_mmcsd.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-wrover-kit/src/esp32_mmcsd.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/xtensa/esp32/esp32-wrover-kit/src/esp32_reset.c b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_reset.c index 663300b0bb145..f361207611b82 100644 --- a/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_reset.c +++ b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-wrover-kit/src/esp32_reset.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/xtensa/esp32/esp32-wrover-kit/src/esp32_userleds.c b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_userleds.c index ad2fab5ed8c09..bd060a38c9bcf 100644 --- a/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_userleds.c +++ b/boards/xtensa/esp32/esp32-wrover-kit/src/esp32_userleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/esp32-wrover-kit/src/esp32_userleds.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/xtensa/esp32/lilygo_tbeam_lora_gps/include/board.h b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/include/board.h index 15e7e4c3e34f4..f2677034c2298 100644 --- a/boards/xtensa/esp32/lilygo_tbeam_lora_gps/include/board.h +++ b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/lilygo_tbeam_lora_gps/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/xtensa/esp32/lilygo_tbeam_lora_gps/include/board_memorymap.h b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/include/board_memorymap.h index 69a5fffdfe4bc..cde70a562217a 100644 --- a/boards/xtensa/esp32/lilygo_tbeam_lora_gps/include/board_memorymap.h +++ b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/lilygo_tbeam_lora_gps/include/board_memorymap.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/xtensa/esp32/lilygo_tbeam_lora_gps/scripts/Make.defs b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/scripts/Make.defs index de23709fa5647..ec01cb2a6345e 100644 --- a/boards/xtensa/esp32/lilygo_tbeam_lora_gps/scripts/Make.defs +++ b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/lilygo_tbeam_lora_gps/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/xtensa/esp32/lilygo_tbeam_lora_gps/src/Make.defs b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/Make.defs index 9852cc7b3f8a5..e46a871d8e9a2 100644 --- a/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/Make.defs +++ b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/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/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_appinit.c b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_appinit.c index b181e05158ef9..33afd1756877a 100644 --- a/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_appinit.c +++ b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_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/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_boot.c b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_boot.c index c44554a9960f3..039677f0e99e1 100644 --- a/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_boot.c +++ b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_boot.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/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_bringup.c b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_bringup.c index 14903d2dfe4a5..0c3b0cf212cd4 100644 --- a/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_bringup.c +++ b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_bringup.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/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_buttons.c b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_buttons.c index e3aad8508fc8d..9add751242401 100644 --- a/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_buttons.c +++ b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_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/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_gpio.c b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_gpio.c index 3b39006701138..6becf0cfc329d 100644 --- a/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_gpio.c +++ b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_gpio.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/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_reset.c b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_reset.c index b7afcc4cb88a3..853ad1216ba77 100644 --- a/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_reset.c +++ b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_reset.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/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_sx127x.c b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_sx127x.c index d9e78183ebdd2..6c8f09993f714 100644 --- a/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_sx127x.c +++ b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_sx127x.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_sx127x.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/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_userleds.c b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_userleds.c index e4ddaecc07724..819200f78b955 100644 --- a/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_userleds.c +++ b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_userleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/esp32_userleds.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/xtensa/esp32/lilygo_tbeam_lora_gps/src/lilygo_tbeam_lora_gps.h b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/lilygo_tbeam_lora_gps.h index bd64856ffb952..a7bc8b3560d7a 100644 --- a/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/lilygo_tbeam_lora_gps.h +++ b/boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/lilygo_tbeam_lora_gps.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/lilygo_tbeam_lora_gps/src/lilygo_tbeam_lora_gps.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/xtensa/esp32/ttgo_eink5_v2/include/board.h b/boards/xtensa/esp32/ttgo_eink5_v2/include/board.h index 793ceb91df147..5500aa9e82778 100644 --- a/boards/xtensa/esp32/ttgo_eink5_v2/include/board.h +++ b/boards/xtensa/esp32/ttgo_eink5_v2/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_eink5_v2/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/xtensa/esp32/ttgo_eink5_v2/include/board_memorymap.h b/boards/xtensa/esp32/ttgo_eink5_v2/include/board_memorymap.h index 653c36551d446..b8eb2f3767b60 100644 --- a/boards/xtensa/esp32/ttgo_eink5_v2/include/board_memorymap.h +++ b/boards/xtensa/esp32/ttgo_eink5_v2/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_eink5_v2/include/board_memorymap.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/xtensa/esp32/ttgo_eink5_v2/scripts/Make.defs b/boards/xtensa/esp32/ttgo_eink5_v2/scripts/Make.defs index e7c52d84e93d7..65b14b6218c33 100644 --- a/boards/xtensa/esp32/ttgo_eink5_v2/scripts/Make.defs +++ b/boards/xtensa/esp32/ttgo_eink5_v2/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/ttgo_eink5_v2/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/xtensa/esp32/ttgo_eink5_v2/src/Make.defs b/boards/xtensa/esp32/ttgo_eink5_v2/src/Make.defs index 926f6f6b4dced..6492101aeb146 100644 --- a/boards/xtensa/esp32/ttgo_eink5_v2/src/Make.defs +++ b/boards/xtensa/esp32/ttgo_eink5_v2/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/ttgo_eink5_v2/src/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/xtensa/esp32/ttgo_eink5_v2/src/esp32_appinit.c b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_appinit.c index 62b97d27e028f..f14c13c8a2c00 100644 --- a/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_appinit.c +++ b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_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/xtensa/esp32/ttgo_eink5_v2/src/esp32_boot.c b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_boot.c index ba485b278146f..6bc643b9bdb43 100644 --- a/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_boot.c +++ b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_boot.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/xtensa/esp32/ttgo_eink5_v2/src/esp32_bringup.c b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_bringup.c index f06819b4c9e7c..b917891100ec3 100644 --- a/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_bringup.c +++ b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_bringup.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/xtensa/esp32/ttgo_eink5_v2/src/esp32_buttons.c b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_buttons.c index baa74fd40eea5..fcf05c3ee5ce3 100644 --- a/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_buttons.c +++ b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_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/xtensa/esp32/ttgo_eink5_v2/src/esp32_gpio.c b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_gpio.c index c79e2808ee44d..cac7f93ab04e5 100644 --- a/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_gpio.c +++ b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_gpio.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/xtensa/esp32/ttgo_eink5_v2/src/esp32_ledc.c b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_ledc.c index 61c9079d44998..98322999ac39f 100644 --- a/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_ledc.c +++ b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_ledc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_ledc.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/xtensa/esp32/ttgo_eink5_v2/src/esp32_mmcsd.c b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_mmcsd.c index be051b860f1b0..e1c2c09890dad 100644 --- a/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_mmcsd.c +++ b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_mmcsd.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_mmcsd.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/xtensa/esp32/ttgo_eink5_v2/src/esp32_reset.c b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_reset.c index 7d6e8800f0bd9..bf4d404b0b44e 100644 --- a/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_reset.c +++ b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_reset.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/xtensa/esp32/ttgo_eink5_v2/src/esp32_twai.c b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_twai.c index 46ebc4d668eec..b73ff36fbc543 100644 --- a/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_twai.c +++ b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_twai.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_twai.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/xtensa/esp32/ttgo_eink5_v2/src/esp32_userleds.c b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_userleds.c index 16d8b86ffd7a3..118e0f357ff75 100644 --- a/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_userleds.c +++ b/boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_userleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_eink5_v2/src/esp32_userleds.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/xtensa/esp32/ttgo_eink5_v2/src/ttgo_eink5_v2.h b/boards/xtensa/esp32/ttgo_eink5_v2/src/ttgo_eink5_v2.h index 19db5d147baff..c3eeb27942251 100644 --- a/boards/xtensa/esp32/ttgo_eink5_v2/src/ttgo_eink5_v2.h +++ b/boards/xtensa/esp32/ttgo_eink5_v2/src/ttgo_eink5_v2.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_eink5_v2/src/ttgo_eink5_v2.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/xtensa/esp32/ttgo_lora_esp32/include/board.h b/boards/xtensa/esp32/ttgo_lora_esp32/include/board.h index 8ff8ea28a59f5..511ff009be854 100644 --- a/boards/xtensa/esp32/ttgo_lora_esp32/include/board.h +++ b/boards/xtensa/esp32/ttgo_lora_esp32/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_lora_esp32/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/xtensa/esp32/ttgo_lora_esp32/include/board_memorymap.h b/boards/xtensa/esp32/ttgo_lora_esp32/include/board_memorymap.h index 60529acad6b90..2d493fbe8d8d4 100644 --- a/boards/xtensa/esp32/ttgo_lora_esp32/include/board_memorymap.h +++ b/boards/xtensa/esp32/ttgo_lora_esp32/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_lora_esp32/include/board_memorymap.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/xtensa/esp32/ttgo_lora_esp32/scripts/Make.defs b/boards/xtensa/esp32/ttgo_lora_esp32/scripts/Make.defs index d3f820e657f43..dcb83e7168990 100644 --- a/boards/xtensa/esp32/ttgo_lora_esp32/scripts/Make.defs +++ b/boards/xtensa/esp32/ttgo_lora_esp32/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/ttgo_lora_esp32/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/xtensa/esp32/ttgo_lora_esp32/src/Make.defs b/boards/xtensa/esp32/ttgo_lora_esp32/src/Make.defs index 9c57b91e1063d..db9b84dd725d2 100644 --- a/boards/xtensa/esp32/ttgo_lora_esp32/src/Make.defs +++ b/boards/xtensa/esp32/ttgo_lora_esp32/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/ttgo_lora_esp32/src/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/xtensa/esp32/ttgo_lora_esp32/src/esp32_appinit.c b/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_appinit.c index 840720d03bdad..f95c7a51d7164 100644 --- a/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_appinit.c +++ b/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_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/xtensa/esp32/ttgo_lora_esp32/src/esp32_boot.c b/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_boot.c index afa316c8abbc5..66898878f1c86 100644 --- a/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_boot.c +++ b/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_boot.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/xtensa/esp32/ttgo_lora_esp32/src/esp32_bringup.c b/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_bringup.c index f571529062670..01bccb4c407eb 100644 --- a/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_bringup.c +++ b/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_bringup.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/xtensa/esp32/ttgo_lora_esp32/src/esp32_buttons.c b/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_buttons.c index 374713d88476c..cb006c5b3a9a3 100644 --- a/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_buttons.c +++ b/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_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/xtensa/esp32/ttgo_lora_esp32/src/esp32_gpio.c b/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_gpio.c index 4269a7f0a9ce4..0bcb351cc131e 100644 --- a/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_gpio.c +++ b/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_gpio.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/xtensa/esp32/ttgo_lora_esp32/src/esp32_reset.c b/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_reset.c index 25a93347fedda..7b6662f8cff5e 100644 --- a/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_reset.c +++ b/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_reset.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/xtensa/esp32/ttgo_lora_esp32/src/esp32_sx127x.c b/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_sx127x.c index ab565983f2013..9d6c395040860 100644 --- a/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_sx127x.c +++ b/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_sx127x.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_sx127x.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/xtensa/esp32/ttgo_lora_esp32/src/esp32_userleds.c b/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_userleds.c index 3e89b7a63893c..09e902ae00ba4 100644 --- a/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_userleds.c +++ b/boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_userleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_lora_esp32/src/esp32_userleds.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/xtensa/esp32/ttgo_lora_esp32/src/ttgo_lora_esp32.h b/boards/xtensa/esp32/ttgo_lora_esp32/src/ttgo_lora_esp32.h index ff77c4b0bdab7..25c0e2ff0402b 100644 --- a/boards/xtensa/esp32/ttgo_lora_esp32/src/ttgo_lora_esp32.h +++ b/boards/xtensa/esp32/ttgo_lora_esp32/src/ttgo_lora_esp32.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_lora_esp32/src/ttgo_lora_esp32.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/xtensa/esp32/ttgo_t_display_esp32/include/board.h b/boards/xtensa/esp32/ttgo_t_display_esp32/include/board.h index c0eafaeccfd32..85c698115927b 100644 --- a/boards/xtensa/esp32/ttgo_t_display_esp32/include/board.h +++ b/boards/xtensa/esp32/ttgo_t_display_esp32/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_t_display_esp32/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/xtensa/esp32/ttgo_t_display_esp32/include/board_memorymap.h b/boards/xtensa/esp32/ttgo_t_display_esp32/include/board_memorymap.h index f764c3f1c46c4..c5e8e1d75b327 100644 --- a/boards/xtensa/esp32/ttgo_t_display_esp32/include/board_memorymap.h +++ b/boards/xtensa/esp32/ttgo_t_display_esp32/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_t_display_esp32/include/board_memorymap.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/xtensa/esp32/ttgo_t_display_esp32/scripts/Make.defs b/boards/xtensa/esp32/ttgo_t_display_esp32/scripts/Make.defs index f0fea9309848e..f28e6213a8a3f 100644 --- a/boards/xtensa/esp32/ttgo_t_display_esp32/scripts/Make.defs +++ b/boards/xtensa/esp32/ttgo_t_display_esp32/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/ttgo_t_display_esp32/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/xtensa/esp32/ttgo_t_display_esp32/src/Make.defs b/boards/xtensa/esp32/ttgo_t_display_esp32/src/Make.defs index 791f3f438c1c1..4558dac3209df 100644 --- a/boards/xtensa/esp32/ttgo_t_display_esp32/src/Make.defs +++ b/boards/xtensa/esp32/ttgo_t_display_esp32/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32/ttgo_t_display_esp32/src/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/xtensa/esp32/ttgo_t_display_esp32/src/esp32_appinit.c b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_appinit.c index 3e00e1006de01..14edb17d82d2a 100644 --- a/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_appinit.c +++ b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_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/xtensa/esp32/ttgo_t_display_esp32/src/esp32_boot.c b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_boot.c index de0dd65f723e2..6bc5f6c6bd278 100644 --- a/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_boot.c +++ b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_boot.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/xtensa/esp32/ttgo_t_display_esp32/src/esp32_bringup.c b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_bringup.c index 9c39a8789feaf..068587f345c4c 100644 --- a/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_bringup.c +++ b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_bringup.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/xtensa/esp32/ttgo_t_display_esp32/src/esp32_buttons.c b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_buttons.c index d46f4e37ca8d4..f8cd158c01b23 100644 --- a/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_buttons.c +++ b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_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/xtensa/esp32/ttgo_t_display_esp32/src/esp32_gpio.c b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_gpio.c index 56305d41818f4..34ce51c63a578 100644 --- a/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_gpio.c +++ b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_gpio.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/xtensa/esp32/ttgo_t_display_esp32/src/esp32_ledc.c b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_ledc.c index a2110ae04d13c..44217f3a1c304 100644 --- a/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_ledc.c +++ b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_ledc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_ledc.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/xtensa/esp32/ttgo_t_display_esp32/src/esp32_mmcsd.c b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_mmcsd.c index cb543c3cf9b0f..39683322cfe65 100644 --- a/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_mmcsd.c +++ b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_mmcsd.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_mmcsd.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/xtensa/esp32/ttgo_t_display_esp32/src/esp32_reset.c b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_reset.c index 0b2779cbe6aa0..f1f5e073a48f4 100644 --- a/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_reset.c +++ b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_reset.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/xtensa/esp32/ttgo_t_display_esp32/src/esp32_twai.c b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_twai.c index 0daeff65a65d1..12abeb5683ff8 100644 --- a/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_twai.c +++ b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_twai.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_twai.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/xtensa/esp32/ttgo_t_display_esp32/src/esp32_userleds.c b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_userleds.c index 9c149978fa4a9..f1f62a92f9a03 100644 --- a/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_userleds.c +++ b/boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_userleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_t_display_esp32/src/esp32_userleds.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/xtensa/esp32/ttgo_t_display_esp32/src/ttgo_t_display_esp32.h b/boards/xtensa/esp32/ttgo_t_display_esp32/src/ttgo_t_display_esp32.h index 5082ecd956b6b..78736d2b1f868 100644 --- a/boards/xtensa/esp32/ttgo_t_display_esp32/src/ttgo_t_display_esp32.h +++ b/boards/xtensa/esp32/ttgo_t_display_esp32/src/ttgo_t_display_esp32.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32/ttgo_t_display_esp32/src/ttgo_t_display_esp32.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 From 0b641ebca9056a0546e574ec14a0ccc10c609b78 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 13:05:22 +0100 Subject: [PATCH 52/53] boards/xtensa/esp32s2: 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/xtensa/esp32s2/common/Makefile | 2 ++ boards/xtensa/esp32s2/common/include/esp32s2_board_rmt.h | 2 ++ boards/xtensa/esp32s2/common/include/esp32s2_board_spidev.h | 2 ++ .../xtensa/esp32s2/common/include/esp32s2_board_spislavedev.h | 2 ++ boards/xtensa/esp32s2/common/include/esp32s2_board_wdt.h | 2 ++ boards/xtensa/esp32s2/common/include/esp32s2_board_wlan.h | 2 ++ boards/xtensa/esp32s2/common/include/esp32s2_es8311.h | 2 ++ boards/xtensa/esp32s2/common/include/esp32s2_max6675.h | 2 ++ boards/xtensa/esp32s2/common/scripts/esp32s2_aliases.ld | 2 ++ boards/xtensa/esp32s2/common/scripts/esp32s2_peripherals.ld | 2 ++ boards/xtensa/esp32s2/common/scripts/flat_memory.ld | 2 ++ boards/xtensa/esp32s2/common/scripts/mcuboot_sections.ld | 2 ++ boards/xtensa/esp32s2/common/scripts/simple_boot_sections.ld | 2 ++ boards/xtensa/esp32s2/common/src/Make.defs | 2 ++ boards/xtensa/esp32s2/common/src/esp32s2_board_i2sdev.c | 2 ++ boards/xtensa/esp32s2/common/src/esp32s2_board_rmt.c | 2 ++ boards/xtensa/esp32s2/common/src/esp32s2_board_spi.c | 2 ++ boards/xtensa/esp32s2/common/src/esp32s2_board_spidev.c | 2 ++ boards/xtensa/esp32s2/common/src/esp32s2_board_spiflash.c | 2 ++ boards/xtensa/esp32s2/common/src/esp32s2_board_spislavedev.c | 2 ++ boards/xtensa/esp32s2/common/src/esp32s2_board_twai.c | 2 ++ boards/xtensa/esp32s2/common/src/esp32s2_board_wdt.c | 2 ++ boards/xtensa/esp32s2/common/src/esp32s2_board_wlan.c | 2 ++ boards/xtensa/esp32s2/common/src/esp32s2_cs4344.c | 2 ++ boards/xtensa/esp32s2/common/src/esp32s2_es8311.c | 2 ++ boards/xtensa/esp32s2/common/src/esp32s2_ili9341.c | 2 ++ boards/xtensa/esp32s2/common/src/esp32s2_max6675.c | 2 ++ boards/xtensa/esp32s2/common/src/esp32s2_st7789.c | 2 ++ boards/xtensa/esp32s2/esp32s2-kaluga-1/include/board.h | 2 ++ boards/xtensa/esp32s2/esp32s2-kaluga-1/scripts/Make.defs | 2 ++ boards/xtensa/esp32s2/esp32s2-kaluga-1/src/Make.defs | 2 ++ boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2-kaluga-1.h | 2 ++ boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_appinit.c | 2 ++ boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_board_i2c.c | 2 ++ boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_boot.c | 2 ++ boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_bringup.c | 2 ++ boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_buttons.c | 2 ++ boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_gpio.c | 2 ++ boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_oneshot.c | 2 ++ boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_reset.c | 2 ++ boards/xtensa/esp32s2/esp32s2-saola-1/include/board.h | 2 ++ boards/xtensa/esp32s2/esp32s2-saola-1/scripts/Make.defs | 2 ++ boards/xtensa/esp32s2/esp32s2-saola-1/src/Make.defs | 2 ++ boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2-saola-1.h | 2 ++ boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_appinit.c | 2 ++ boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_bmp180.c | 2 ++ boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_board_i2c.c | 2 ++ boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_boot.c | 2 ++ boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_bringup.c | 2 ++ boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_buttons.c | 2 ++ boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_gpio.c | 2 ++ boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_ledc.c | 2 ++ boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_oneshot.c | 2 ++ boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_reset.c | 2 ++ boards/xtensa/esp32s2/franzininho-wifi/include/board.h | 2 ++ boards/xtensa/esp32s2/franzininho-wifi/scripts/Make.defs | 2 ++ boards/xtensa/esp32s2/franzininho-wifi/src/Make.defs | 2 ++ boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_appinit.c | 2 ++ boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_boot.c | 2 ++ boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_bringup.c | 2 ++ boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_oneshot.c | 2 ++ boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_reset.c | 2 ++ boards/xtensa/esp32s2/franzininho-wifi/src/franzininho-wifi.h | 2 ++ 63 files changed, 126 insertions(+) diff --git a/boards/xtensa/esp32s2/common/Makefile b/boards/xtensa/esp32s2/common/Makefile index a2122020577e4..961cf167d9ed3 100644 --- a/boards/xtensa/esp32s2/common/Makefile +++ b/boards/xtensa/esp32s2/common/Makefile @@ -1,6 +1,8 @@ ############################################################################# # boards/xtensa/esp32s2/common/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/xtensa/esp32s2/common/include/esp32s2_board_rmt.h b/boards/xtensa/esp32s2/common/include/esp32s2_board_rmt.h index 6682746c9681e..74ce7b8bb367f 100644 --- a/boards/xtensa/esp32s2/common/include/esp32s2_board_rmt.h +++ b/boards/xtensa/esp32s2/common/include/esp32s2_board_rmt.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/include/esp32s2_board_rmt.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/xtensa/esp32s2/common/include/esp32s2_board_spidev.h b/boards/xtensa/esp32s2/common/include/esp32s2_board_spidev.h index 89c4a089af303..d5a4f90187564 100644 --- a/boards/xtensa/esp32s2/common/include/esp32s2_board_spidev.h +++ b/boards/xtensa/esp32s2/common/include/esp32s2_board_spidev.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/include/esp32s2_board_spidev.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/xtensa/esp32s2/common/include/esp32s2_board_spislavedev.h b/boards/xtensa/esp32s2/common/include/esp32s2_board_spislavedev.h index e883e5898adc5..dee120d66dbe2 100644 --- a/boards/xtensa/esp32s2/common/include/esp32s2_board_spislavedev.h +++ b/boards/xtensa/esp32s2/common/include/esp32s2_board_spislavedev.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/include/esp32s2_board_spislavedev.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/xtensa/esp32s2/common/include/esp32s2_board_wdt.h b/boards/xtensa/esp32s2/common/include/esp32s2_board_wdt.h index f309cf107e781..3326e8fe16bf8 100644 --- a/boards/xtensa/esp32s2/common/include/esp32s2_board_wdt.h +++ b/boards/xtensa/esp32s2/common/include/esp32s2_board_wdt.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/include/esp32s2_board_wdt.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/xtensa/esp32s2/common/include/esp32s2_board_wlan.h b/boards/xtensa/esp32s2/common/include/esp32s2_board_wlan.h index 2eb2546f2bfa8..8b7e42753ddd3 100644 --- a/boards/xtensa/esp32s2/common/include/esp32s2_board_wlan.h +++ b/boards/xtensa/esp32s2/common/include/esp32s2_board_wlan.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/include/esp32s2_board_wlan.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/xtensa/esp32s2/common/include/esp32s2_es8311.h b/boards/xtensa/esp32s2/common/include/esp32s2_es8311.h index 4ed64d5934b7d..0e8f29ea282f6 100644 --- a/boards/xtensa/esp32s2/common/include/esp32s2_es8311.h +++ b/boards/xtensa/esp32s2/common/include/esp32s2_es8311.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/include/esp32s2_es8311.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/xtensa/esp32s2/common/include/esp32s2_max6675.h b/boards/xtensa/esp32s2/common/include/esp32s2_max6675.h index 92c15c58e5076..659ead53edc10 100644 --- a/boards/xtensa/esp32s2/common/include/esp32s2_max6675.h +++ b/boards/xtensa/esp32s2/common/include/esp32s2_max6675.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/include/esp32s2_max6675.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/xtensa/esp32s2/common/scripts/esp32s2_aliases.ld b/boards/xtensa/esp32s2/common/scripts/esp32s2_aliases.ld index eb42321ceac7b..4a524049333aa 100644 --- a/boards/xtensa/esp32s2/common/scripts/esp32s2_aliases.ld +++ b/boards/xtensa/esp32s2/common/scripts/esp32s2_aliases.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/scripts/esp32s2_aliases.ld * + * 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/xtensa/esp32s2/common/scripts/esp32s2_peripherals.ld b/boards/xtensa/esp32s2/common/scripts/esp32s2_peripherals.ld index a0bfd1bc7fefa..9780a3ea31f20 100644 --- a/boards/xtensa/esp32s2/common/scripts/esp32s2_peripherals.ld +++ b/boards/xtensa/esp32s2/common/scripts/esp32s2_peripherals.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/scripts/esp32s2_peripherals.ld * + * 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/xtensa/esp32s2/common/scripts/flat_memory.ld b/boards/xtensa/esp32s2/common/scripts/flat_memory.ld index 108fad0083c49..579f24c2f9c84 100644 --- a/boards/xtensa/esp32s2/common/scripts/flat_memory.ld +++ b/boards/xtensa/esp32s2/common/scripts/flat_memory.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/scripts/flat_memory.ld * + * 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/xtensa/esp32s2/common/scripts/mcuboot_sections.ld b/boards/xtensa/esp32s2/common/scripts/mcuboot_sections.ld index 83637e96be378..719cec04fa5e0 100644 --- a/boards/xtensa/esp32s2/common/scripts/mcuboot_sections.ld +++ b/boards/xtensa/esp32s2/common/scripts/mcuboot_sections.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/scripts/mcuboot_sections.ld * + * 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/xtensa/esp32s2/common/scripts/simple_boot_sections.ld b/boards/xtensa/esp32s2/common/scripts/simple_boot_sections.ld index 1d5ad95394c0b..39cb5ea88db5b 100644 --- a/boards/xtensa/esp32s2/common/scripts/simple_boot_sections.ld +++ b/boards/xtensa/esp32s2/common/scripts/simple_boot_sections.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/scripts/simple_boot_sections.ld * + * 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/xtensa/esp32s2/common/src/Make.defs b/boards/xtensa/esp32s2/common/src/Make.defs index 95f20658d58fe..2bec25d903dc9 100644 --- a/boards/xtensa/esp32s2/common/src/Make.defs +++ b/boards/xtensa/esp32s2/common/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/xtensa/esp32s2/common/src/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/xtensa/esp32s2/common/src/esp32s2_board_i2sdev.c b/boards/xtensa/esp32s2/common/src/esp32s2_board_i2sdev.c index a548a882bbfe2..c5a3d7a99177e 100644 --- a/boards/xtensa/esp32s2/common/src/esp32s2_board_i2sdev.c +++ b/boards/xtensa/esp32s2/common/src/esp32s2_board_i2sdev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/src/esp32s2_board_i2sdev.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/xtensa/esp32s2/common/src/esp32s2_board_rmt.c b/boards/xtensa/esp32s2/common/src/esp32s2_board_rmt.c index 243c710db6d49..2ee824292a442 100644 --- a/boards/xtensa/esp32s2/common/src/esp32s2_board_rmt.c +++ b/boards/xtensa/esp32s2/common/src/esp32s2_board_rmt.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/src/esp32s2_board_rmt.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/xtensa/esp32s2/common/src/esp32s2_board_spi.c b/boards/xtensa/esp32s2/common/src/esp32s2_board_spi.c index 8bd63a60d0c76..871afa5c39856 100644 --- a/boards/xtensa/esp32s2/common/src/esp32s2_board_spi.c +++ b/boards/xtensa/esp32s2/common/src/esp32s2_board_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/src/esp32s2_board_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 diff --git a/boards/xtensa/esp32s2/common/src/esp32s2_board_spidev.c b/boards/xtensa/esp32s2/common/src/esp32s2_board_spidev.c index b1af0e06c98c2..fbb843a418bf3 100644 --- a/boards/xtensa/esp32s2/common/src/esp32s2_board_spidev.c +++ b/boards/xtensa/esp32s2/common/src/esp32s2_board_spidev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/src/esp32s2_board_spidev.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/xtensa/esp32s2/common/src/esp32s2_board_spiflash.c b/boards/xtensa/esp32s2/common/src/esp32s2_board_spiflash.c index 3d9250ae52ea4..83f8b86307a88 100644 --- a/boards/xtensa/esp32s2/common/src/esp32s2_board_spiflash.c +++ b/boards/xtensa/esp32s2/common/src/esp32s2_board_spiflash.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/src/esp32s2_board_spiflash.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/xtensa/esp32s2/common/src/esp32s2_board_spislavedev.c b/boards/xtensa/esp32s2/common/src/esp32s2_board_spislavedev.c index 649c70bdfa7a4..7ae154d887c45 100644 --- a/boards/xtensa/esp32s2/common/src/esp32s2_board_spislavedev.c +++ b/boards/xtensa/esp32s2/common/src/esp32s2_board_spislavedev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/src/esp32s2_board_spislavedev.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/xtensa/esp32s2/common/src/esp32s2_board_twai.c b/boards/xtensa/esp32s2/common/src/esp32s2_board_twai.c index 5cf7aa83bfc18..fd0bb080d11f9 100644 --- a/boards/xtensa/esp32s2/common/src/esp32s2_board_twai.c +++ b/boards/xtensa/esp32s2/common/src/esp32s2_board_twai.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/src/esp32s2_board_twai.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/xtensa/esp32s2/common/src/esp32s2_board_wdt.c b/boards/xtensa/esp32s2/common/src/esp32s2_board_wdt.c index 2cab40397affe..f008e234aa931 100644 --- a/boards/xtensa/esp32s2/common/src/esp32s2_board_wdt.c +++ b/boards/xtensa/esp32s2/common/src/esp32s2_board_wdt.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/src/esp32s2_board_wdt.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/xtensa/esp32s2/common/src/esp32s2_board_wlan.c b/boards/xtensa/esp32s2/common/src/esp32s2_board_wlan.c index aedb4f839d1f5..3fb9b5e44451e 100644 --- a/boards/xtensa/esp32s2/common/src/esp32s2_board_wlan.c +++ b/boards/xtensa/esp32s2/common/src/esp32s2_board_wlan.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/src/esp32s2_board_wlan.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/xtensa/esp32s2/common/src/esp32s2_cs4344.c b/boards/xtensa/esp32s2/common/src/esp32s2_cs4344.c index ef314013b68a5..0112a126118ee 100644 --- a/boards/xtensa/esp32s2/common/src/esp32s2_cs4344.c +++ b/boards/xtensa/esp32s2/common/src/esp32s2_cs4344.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/src/esp32s2_cs4344.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/xtensa/esp32s2/common/src/esp32s2_es8311.c b/boards/xtensa/esp32s2/common/src/esp32s2_es8311.c index 6f4509b40444a..8de9fa9e80dbd 100644 --- a/boards/xtensa/esp32s2/common/src/esp32s2_es8311.c +++ b/boards/xtensa/esp32s2/common/src/esp32s2_es8311.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/src/esp32s2_es8311.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/xtensa/esp32s2/common/src/esp32s2_ili9341.c b/boards/xtensa/esp32s2/common/src/esp32s2_ili9341.c index d020572b10478..3764db2619278 100644 --- a/boards/xtensa/esp32s2/common/src/esp32s2_ili9341.c +++ b/boards/xtensa/esp32s2/common/src/esp32s2_ili9341.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/src/esp32s2_ili9341.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/xtensa/esp32s2/common/src/esp32s2_max6675.c b/boards/xtensa/esp32s2/common/src/esp32s2_max6675.c index 18919b5eec1f5..8c5aab0d18f40 100644 --- a/boards/xtensa/esp32s2/common/src/esp32s2_max6675.c +++ b/boards/xtensa/esp32s2/common/src/esp32s2_max6675.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/src/esp32s2_max6675.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/xtensa/esp32s2/common/src/esp32s2_st7789.c b/boards/xtensa/esp32s2/common/src/esp32s2_st7789.c index 019a725577dc0..803955ed67c52 100644 --- a/boards/xtensa/esp32s2/common/src/esp32s2_st7789.c +++ b/boards/xtensa/esp32s2/common/src/esp32s2_st7789.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/common/src/esp32s2_st7789.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/xtensa/esp32s2/esp32s2-kaluga-1/include/board.h b/boards/xtensa/esp32s2/esp32s2-kaluga-1/include/board.h index d77fb761a9be0..38a5d9fcf25f3 100644 --- a/boards/xtensa/esp32s2/esp32s2-kaluga-1/include/board.h +++ b/boards/xtensa/esp32s2/esp32s2-kaluga-1/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-kaluga-1/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/xtensa/esp32s2/esp32s2-kaluga-1/scripts/Make.defs b/boards/xtensa/esp32s2/esp32s2-kaluga-1/scripts/Make.defs index 33fd63db30af2..63700dae2d890 100644 --- a/boards/xtensa/esp32s2/esp32s2-kaluga-1/scripts/Make.defs +++ b/boards/xtensa/esp32s2/esp32s2-kaluga-1/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s2/esp32s2-kaluga-1/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/xtensa/esp32s2/esp32s2-kaluga-1/src/Make.defs b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/Make.defs index a11ee24c0af0e..82d08ed4eb9e5 100644 --- a/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/Make.defs +++ b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s2/esp32s2-kaluga-1/src/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/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2-kaluga-1.h b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2-kaluga-1.h index 21e3325c3fb83..b4aa31f19360d 100644 --- a/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2-kaluga-1.h +++ b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2-kaluga-1.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2-kaluga-1.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/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_appinit.c b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_appinit.c index 88fbf8acc365b..9803c1f27226c 100644 --- a/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_appinit.c +++ b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_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/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_board_i2c.c b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_board_i2c.c index 5d46e659155ee..2e4baa9d46db0 100644 --- a/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_board_i2c.c +++ b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_board_i2c.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_board_i2c.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/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_boot.c b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_boot.c index 3529f1df750a4..11bb326698eb8 100644 --- a/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_boot.c +++ b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_boot.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/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_bringup.c b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_bringup.c index 7a57898a24b90..318f7af85e27f 100644 --- a/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_bringup.c +++ b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_bringup.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/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_buttons.c b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_buttons.c index a945d9b9ae57b..9ab2a5423164c 100644 --- a/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_buttons.c +++ b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_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/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_gpio.c b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_gpio.c index 935fa13dd2bf7..da4ffd63db8b4 100644 --- a/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_gpio.c +++ b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_gpio.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/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_oneshot.c b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_oneshot.c index b745a1eff22d4..137c3856b558b 100644 --- a/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_oneshot.c +++ b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_oneshot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_oneshot.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/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_reset.c b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_reset.c index fc9eadd6951cb..459aed5c00bcd 100644 --- a/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_reset.c +++ b/boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-kaluga-1/src/esp32s2_reset.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/xtensa/esp32s2/esp32s2-saola-1/include/board.h b/boards/xtensa/esp32s2/esp32s2-saola-1/include/board.h index 56107ca4aafbb..2684cf149af16 100644 --- a/boards/xtensa/esp32s2/esp32s2-saola-1/include/board.h +++ b/boards/xtensa/esp32s2/esp32s2-saola-1/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-saola-1/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/xtensa/esp32s2/esp32s2-saola-1/scripts/Make.defs b/boards/xtensa/esp32s2/esp32s2-saola-1/scripts/Make.defs index 7c75d3abc4dd9..236d052a973f1 100644 --- a/boards/xtensa/esp32s2/esp32s2-saola-1/scripts/Make.defs +++ b/boards/xtensa/esp32s2/esp32s2-saola-1/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s2/esp32s2-saola-1/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/xtensa/esp32s2/esp32s2-saola-1/src/Make.defs b/boards/xtensa/esp32s2/esp32s2-saola-1/src/Make.defs index 9cff7c4600d99..4a3ff06f7bb89 100644 --- a/boards/xtensa/esp32s2/esp32s2-saola-1/src/Make.defs +++ b/boards/xtensa/esp32s2/esp32s2-saola-1/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s2/esp32s2-saola-1/src/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/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2-saola-1.h b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2-saola-1.h index a7a1cc0ead040..d01a5550b949c 100644 --- a/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2-saola-1.h +++ b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2-saola-1.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2-saola-1.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/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_appinit.c b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_appinit.c index ee5ea3524c32f..7f51a08c14db3 100644 --- a/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_appinit.c +++ b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_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/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_bmp180.c b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_bmp180.c index 08eed078622e8..12c8071d6ad60 100644 --- a/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_bmp180.c +++ b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_bmp180.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_bmp180.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/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_board_i2c.c b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_board_i2c.c index 8b6f4f73c6f6b..395f3a73c9139 100644 --- a/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_board_i2c.c +++ b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_board_i2c.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_board_i2c.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/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_boot.c b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_boot.c index 857ba14035402..284000e5285e8 100644 --- a/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_boot.c +++ b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_boot.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/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_bringup.c b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_bringup.c index 7bb2a535d1ea9..1210355e28da8 100644 --- a/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_bringup.c +++ b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_bringup.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/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_buttons.c b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_buttons.c index c8444482ba4d0..78ff79a283a7a 100644 --- a/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_buttons.c +++ b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_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/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_gpio.c b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_gpio.c index 10e18f703f2f1..5278cd0cbf16f 100644 --- a/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_gpio.c +++ b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_gpio.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/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_ledc.c b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_ledc.c index 00e8a2a95d991..442eccc6274ef 100644 --- a/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_ledc.c +++ b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_ledc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_ledc.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/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_oneshot.c b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_oneshot.c index b701da36dcf84..9bd402ca0517b 100644 --- a/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_oneshot.c +++ b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_oneshot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_oneshot.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/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_reset.c b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_reset.c index 8593574aae983..9a9eb5bb99a9a 100644 --- a/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_reset.c +++ b/boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/esp32s2-saola-1/src/esp32s2_reset.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/xtensa/esp32s2/franzininho-wifi/include/board.h b/boards/xtensa/esp32s2/franzininho-wifi/include/board.h index 5aac53f9d3d08..a62a07b9dc726 100644 --- a/boards/xtensa/esp32s2/franzininho-wifi/include/board.h +++ b/boards/xtensa/esp32s2/franzininho-wifi/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/franzininho-wifi/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/xtensa/esp32s2/franzininho-wifi/scripts/Make.defs b/boards/xtensa/esp32s2/franzininho-wifi/scripts/Make.defs index f2e930a4489de..080041bfc106a 100644 --- a/boards/xtensa/esp32s2/franzininho-wifi/scripts/Make.defs +++ b/boards/xtensa/esp32s2/franzininho-wifi/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s2/franzininho-wifi/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/xtensa/esp32s2/franzininho-wifi/src/Make.defs b/boards/xtensa/esp32s2/franzininho-wifi/src/Make.defs index 5b1412ba32ddb..fdf4528a4ec1e 100644 --- a/boards/xtensa/esp32s2/franzininho-wifi/src/Make.defs +++ b/boards/xtensa/esp32s2/franzininho-wifi/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s2/franzininho-wifi/src/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/xtensa/esp32s2/franzininho-wifi/src/esp32s2_appinit.c b/boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_appinit.c index 368b2601ffa32..4825f4c62662e 100644 --- a/boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_appinit.c +++ b/boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_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/xtensa/esp32s2/franzininho-wifi/src/esp32s2_boot.c b/boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_boot.c index 0134b6a698f73..4d56f5de3cec8 100644 --- a/boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_boot.c +++ b/boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_boot.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/xtensa/esp32s2/franzininho-wifi/src/esp32s2_bringup.c b/boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_bringup.c index 4e8813d9e68be..6e52251a7777e 100644 --- a/boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_bringup.c +++ b/boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_bringup.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/xtensa/esp32s2/franzininho-wifi/src/esp32s2_oneshot.c b/boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_oneshot.c index 268f3e8d58c32..62d89337f1bba 100644 --- a/boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_oneshot.c +++ b/boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_oneshot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_oneshot.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/xtensa/esp32s2/franzininho-wifi/src/esp32s2_reset.c b/boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_reset.c index 0e0abe25aa3eb..8d114e7374c98 100644 --- a/boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_reset.c +++ b/boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/franzininho-wifi/src/esp32s2_reset.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/xtensa/esp32s2/franzininho-wifi/src/franzininho-wifi.h b/boards/xtensa/esp32s2/franzininho-wifi/src/franzininho-wifi.h index ec4eb86226899..ca4323f41b9fd 100644 --- a/boards/xtensa/esp32s2/franzininho-wifi/src/franzininho-wifi.h +++ b/boards/xtensa/esp32s2/franzininho-wifi/src/franzininho-wifi.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s2/franzininho-wifi/src/franzininho-wifi.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 From d08476dda2ebe6d3d5fb99e48f23b352f6afa5ea Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 13:17:55 +0100 Subject: [PATCH 53/53] boards/xtensa/esp32s3: 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/xtensa/esp32s3/common/Makefile | 2 ++ boards/xtensa/esp32s3/common/include/esp32s3_board_adc.h | 2 ++ boards/xtensa/esp32s3/common/include/esp32s3_board_mcpwm.h | 2 ++ boards/xtensa/esp32s3/common/include/esp32s3_board_rmt.h | 2 ++ boards/xtensa/esp32s3/common/include/esp32s3_board_sdmmc.h | 2 ++ boards/xtensa/esp32s3/common/include/esp32s3_board_spidev.h | 2 ++ boards/xtensa/esp32s3/common/include/esp32s3_board_tim.h | 2 ++ boards/xtensa/esp32s3/common/include/esp32s3_board_wdt.h | 2 ++ boards/xtensa/esp32s3/common/include/esp32s3_board_wlan.h | 2 ++ boards/xtensa/esp32s3/common/kernel/Makefile | 2 ++ boards/xtensa/esp32s3/common/kernel/esp32s3_user_vectors.S | 2 ++ boards/xtensa/esp32s3/common/kernel/esp32s3_userspace.c | 2 ++ boards/xtensa/esp32s3/common/scripts/esp32s3_aliases.ld | 2 ++ boards/xtensa/esp32s3/common/scripts/esp32s3_peripherals.ld | 2 ++ boards/xtensa/esp32s3/common/scripts/esp32s3_rom_aliases.ld | 2 ++ boards/xtensa/esp32s3/common/scripts/esp32s3_sections.ld | 2 ++ boards/xtensa/esp32s3/common/scripts/flat_memory.ld | 2 ++ boards/xtensa/esp32s3/common/scripts/kernel-space.ld | 2 ++ boards/xtensa/esp32s3/common/scripts/legacy_sections.ld | 2 ++ boards/xtensa/esp32s3/common/scripts/mcuboot_sections.ld | 2 ++ boards/xtensa/esp32s3/common/scripts/protected_memory.ld | 2 ++ boards/xtensa/esp32s3/common/scripts/user-space.ld | 2 ++ boards/xtensa/esp32s3/common/src/Make.defs | 2 ++ boards/xtensa/esp32s3/common/src/esp32s3_board_adc.c | 2 ++ boards/xtensa/esp32s3/common/src/esp32s3_board_bmp180.c | 2 ++ boards/xtensa/esp32s3/common/src/esp32s3_board_i2c.c | 2 ++ boards/xtensa/esp32s3/common/src/esp32s3_board_i2s.c | 2 ++ boards/xtensa/esp32s3/common/src/esp32s3_board_mcpwm.c | 2 ++ boards/xtensa/esp32s3/common/src/esp32s3_board_rmt.c | 2 ++ boards/xtensa/esp32s3/common/src/esp32s3_board_sdmmc.c | 2 ++ boards/xtensa/esp32s3/common/src/esp32s3_board_spidev.c | 2 ++ boards/xtensa/esp32s3/common/src/esp32s3_board_spiflash.c | 2 ++ boards/xtensa/esp32s3/common/src/esp32s3_board_tim.c | 2 ++ boards/xtensa/esp32s3/common/src/esp32s3_board_usb.c | 2 ++ boards/xtensa/esp32s3/common/src/esp32s3_board_wdt.c | 2 ++ boards/xtensa/esp32s3/common/src/esp32s3_board_wlan.c | 2 ++ boards/xtensa/esp32s3/common/src/esp32s3_cs4344.c | 2 ++ boards/xtensa/esp32s3/common/src/esp32s3_es8311.c | 2 ++ boards/xtensa/esp32s3/common/src/esp32s3_lan9250.c | 2 ++ boards/xtensa/esp32s3/esp32s3-box/include/board.h | 2 ++ boards/xtensa/esp32s3/esp32s3-box/include/board_memorymap.h | 2 ++ boards/xtensa/esp32s3/esp32s3-box/scripts/Make.defs | 2 ++ boards/xtensa/esp32s3/esp32s3-box/src/Make.defs | 2 ++ boards/xtensa/esp32s3/esp32s3-box/src/esp32s3-box.h | 2 ++ boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_appinit.c | 2 ++ .../xtensa/esp32s3/esp32s3-box/src/esp32s3_board_lcd_ili9342c.c | 2 ++ .../xtensa/esp32s3/esp32s3-box/src/esp32s3_board_lcd_st7789.c | 2 ++ boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_spi.c | 2 ++ .../esp32s3/esp32s3-box/src/esp32s3_board_touchsceen_gt911.c | 2 ++ .../esp32s3/esp32s3-box/src/esp32s3_board_touchsceen_tt21100.c | 2 ++ boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_boot.c | 2 ++ boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_bringup.c | 2 ++ boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_buttons.c | 2 ++ boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_reset.c | 2 ++ boards/xtensa/esp32s3/esp32s3-devkit/include/board.h | 2 ++ boards/xtensa/esp32s3/esp32s3-devkit/include/board_memorymap.h | 2 ++ boards/xtensa/esp32s3/esp32s3-devkit/scripts/Make.defs | 2 ++ boards/xtensa/esp32s3/esp32s3-devkit/src/Make.defs | 2 ++ boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3-devkit.h | 2 ++ boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_appinit.c | 2 ++ boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_board_spi.c | 2 ++ boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_boot.c | 2 ++ boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_bringup.c | 2 ++ boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_buttons.c | 2 ++ boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_djoystick.c | 2 ++ boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_gpio.c | 2 ++ boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_ledc.c | 2 ++ boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_reset.c | 2 ++ boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_st7735.c | 2 ++ boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_twai.c | 2 ++ boards/xtensa/esp32s3/esp32s3-eye/include/board.h | 2 ++ boards/xtensa/esp32s3/esp32s3-eye/scripts/Make.defs | 2 ++ boards/xtensa/esp32s3/esp32s3-eye/src/Make.defs | 2 ++ boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3-eye.h | 2 ++ boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_appinit.c | 2 ++ boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_board_lcd.c | 2 ++ boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_board_spi.c | 2 ++ boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_boot.c | 2 ++ boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_bringup.c | 2 ++ boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_buttons.c | 2 ++ boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_gpio.c | 2 ++ boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_reset.c | 2 ++ boards/xtensa/esp32s3/esp32s3-korvo-2/include/board.h | 2 ++ boards/xtensa/esp32s3/esp32s3-korvo-2/include/board_memorymap.h | 2 ++ boards/xtensa/esp32s3/esp32s3-korvo-2/scripts/Make.defs | 2 ++ boards/xtensa/esp32s3/esp32s3-korvo-2/src/Make.defs | 2 ++ boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3-korvo-2.h | 2 ++ boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_appinit.c | 2 ++ boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_board_spi.c | 2 ++ boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_boot.c | 2 ++ boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_bringup.c | 2 ++ boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_buttons.c | 2 ++ boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_reset.c | 2 ++ boards/xtensa/esp32s3/esp32s3-lcd-ev/include/board.h | 2 ++ boards/xtensa/esp32s3/esp32s3-lcd-ev/include/board_memorymap.h | 2 ++ boards/xtensa/esp32s3/esp32s3-lcd-ev/scripts/Make.defs | 2 ++ boards/xtensa/esp32s3/esp32s3-lcd-ev/src/Make.defs | 2 ++ boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3-lcd-ev.h | 2 ++ boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_appinit.c | 2 ++ boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_board_spi.c | 2 ++ boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_boot.c | 2 ++ boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_bringup.c | 2 ++ boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_buttons.c | 2 ++ boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_ioexpander.c | 2 ++ boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_lcd.c | 2 ++ boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_reset.c | 2 ++ boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_touchscreen.c | 2 ++ boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_ws2812.c | 2 ++ boards/xtensa/esp32s3/esp32s3-lhcbit/include/board.h | 2 ++ boards/xtensa/esp32s3/esp32s3-lhcbit/include/board_memorymap.h | 2 ++ boards/xtensa/esp32s3/esp32s3-lhcbit/scripts/Make.defs | 2 ++ boards/xtensa/esp32s3/esp32s3-lhcbit/src/Make.defs | 2 ++ boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3-lhcbit.h | 2 ++ boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_appinit.c | 2 ++ boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_boot.c | 2 ++ boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_bringup.c | 2 ++ boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_reset.c | 2 ++ boards/xtensa/esp32s3/esp32s3-meadow/include/board.h | 2 ++ boards/xtensa/esp32s3/esp32s3-meadow/scripts/Make.defs | 2 ++ boards/xtensa/esp32s3/esp32s3-meadow/src/Make.defs | 2 ++ boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3-meadow.h | 2 ++ boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_appinit.c | 2 ++ boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_boot.c | 2 ++ boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_bringup.c | 2 ++ boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_reset.c | 2 ++ 125 files changed, 250 insertions(+) diff --git a/boards/xtensa/esp32s3/common/Makefile b/boards/xtensa/esp32s3/common/Makefile index 7413ff144d601..02d2e673ac46d 100644 --- a/boards/xtensa/esp32s3/common/Makefile +++ b/boards/xtensa/esp32s3/common/Makefile @@ -1,6 +1,8 @@ ############################################################################# # boards/xtensa/esp32s3/common/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/xtensa/esp32s3/common/include/esp32s3_board_adc.h b/boards/xtensa/esp32s3/common/include/esp32s3_board_adc.h index ff0784285b556..7bb2906c46404 100644 --- a/boards/xtensa/esp32s3/common/include/esp32s3_board_adc.h +++ b/boards/xtensa/esp32s3/common/include/esp32s3_board_adc.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/include/esp32s3_board_adc.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/xtensa/esp32s3/common/include/esp32s3_board_mcpwm.h b/boards/xtensa/esp32s3/common/include/esp32s3_board_mcpwm.h index 46e266a90b1e4..d699efa642ee2 100644 --- a/boards/xtensa/esp32s3/common/include/esp32s3_board_mcpwm.h +++ b/boards/xtensa/esp32s3/common/include/esp32s3_board_mcpwm.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/include/esp32s3_board_mcpwm.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/xtensa/esp32s3/common/include/esp32s3_board_rmt.h b/boards/xtensa/esp32s3/common/include/esp32s3_board_rmt.h index 0b9fbb618a7f6..e92b2e545096a 100644 --- a/boards/xtensa/esp32s3/common/include/esp32s3_board_rmt.h +++ b/boards/xtensa/esp32s3/common/include/esp32s3_board_rmt.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/include/esp32s3_board_rmt.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/xtensa/esp32s3/common/include/esp32s3_board_sdmmc.h b/boards/xtensa/esp32s3/common/include/esp32s3_board_sdmmc.h index b9e5a6b6f759d..fcea06484b1be 100644 --- a/boards/xtensa/esp32s3/common/include/esp32s3_board_sdmmc.h +++ b/boards/xtensa/esp32s3/common/include/esp32s3_board_sdmmc.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/include/esp32s3_board_sdmmc.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/xtensa/esp32s3/common/include/esp32s3_board_spidev.h b/boards/xtensa/esp32s3/common/include/esp32s3_board_spidev.h index 4f33d11e2c7eb..ba967fbe84dc4 100644 --- a/boards/xtensa/esp32s3/common/include/esp32s3_board_spidev.h +++ b/boards/xtensa/esp32s3/common/include/esp32s3_board_spidev.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/include/esp32s3_board_spidev.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/xtensa/esp32s3/common/include/esp32s3_board_tim.h b/boards/xtensa/esp32s3/common/include/esp32s3_board_tim.h index e0abdb542da1d..80ab14d6b2b83 100644 --- a/boards/xtensa/esp32s3/common/include/esp32s3_board_tim.h +++ b/boards/xtensa/esp32s3/common/include/esp32s3_board_tim.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/include/esp32s3_board_tim.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/xtensa/esp32s3/common/include/esp32s3_board_wdt.h b/boards/xtensa/esp32s3/common/include/esp32s3_board_wdt.h index f697729bed6a0..fec179043b6e9 100644 --- a/boards/xtensa/esp32s3/common/include/esp32s3_board_wdt.h +++ b/boards/xtensa/esp32s3/common/include/esp32s3_board_wdt.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/include/esp32s3_board_wdt.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/xtensa/esp32s3/common/include/esp32s3_board_wlan.h b/boards/xtensa/esp32s3/common/include/esp32s3_board_wlan.h index 99e5bcbcfba49..057b85bcbd7ca 100644 --- a/boards/xtensa/esp32s3/common/include/esp32s3_board_wlan.h +++ b/boards/xtensa/esp32s3/common/include/esp32s3_board_wlan.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/include/esp32s3_board_wlan.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/xtensa/esp32s3/common/kernel/Makefile b/boards/xtensa/esp32s3/common/kernel/Makefile index 676bebe804f88..b0e3691660c49 100644 --- a/boards/xtensa/esp32s3/common/kernel/Makefile +++ b/boards/xtensa/esp32s3/common/kernel/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s3/common/kernel/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/xtensa/esp32s3/common/kernel/esp32s3_user_vectors.S b/boards/xtensa/esp32s3/common/kernel/esp32s3_user_vectors.S index fe3d3150b88f0..8f126ea05b806 100644 --- a/boards/xtensa/esp32s3/common/kernel/esp32s3_user_vectors.S +++ b/boards/xtensa/esp32s3/common/kernel/esp32s3_user_vectors.S @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/kernel/esp32s3_user_vectors.S * + * 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/xtensa/esp32s3/common/kernel/esp32s3_userspace.c b/boards/xtensa/esp32s3/common/kernel/esp32s3_userspace.c index b5b28a1ec248b..2dfd8d290a715 100644 --- a/boards/xtensa/esp32s3/common/kernel/esp32s3_userspace.c +++ b/boards/xtensa/esp32s3/common/kernel/esp32s3_userspace.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/kernel/esp32s3_userspace.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/xtensa/esp32s3/common/scripts/esp32s3_aliases.ld b/boards/xtensa/esp32s3/common/scripts/esp32s3_aliases.ld index 26a937e2d9f8a..e2e35ff08401a 100644 --- a/boards/xtensa/esp32s3/common/scripts/esp32s3_aliases.ld +++ b/boards/xtensa/esp32s3/common/scripts/esp32s3_aliases.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/scripts/esp32s3_aliases.ld * + * 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/xtensa/esp32s3/common/scripts/esp32s3_peripherals.ld b/boards/xtensa/esp32s3/common/scripts/esp32s3_peripherals.ld index cf649f71da99f..6ced697d26aa6 100644 --- a/boards/xtensa/esp32s3/common/scripts/esp32s3_peripherals.ld +++ b/boards/xtensa/esp32s3/common/scripts/esp32s3_peripherals.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/scripts/esp32s3_peripherals.ld * + * 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/xtensa/esp32s3/common/scripts/esp32s3_rom_aliases.ld b/boards/xtensa/esp32s3/common/scripts/esp32s3_rom_aliases.ld index f7b48faef3ad1..27d70ec783edf 100644 --- a/boards/xtensa/esp32s3/common/scripts/esp32s3_rom_aliases.ld +++ b/boards/xtensa/esp32s3/common/scripts/esp32s3_rom_aliases.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/scripts/esp32s3_aliases.ld * + * 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/xtensa/esp32s3/common/scripts/esp32s3_sections.ld b/boards/xtensa/esp32s3/common/scripts/esp32s3_sections.ld index 2c336a4adad58..68cedef9dcb01 100644 --- a/boards/xtensa/esp32s3/common/scripts/esp32s3_sections.ld +++ b/boards/xtensa/esp32s3/common/scripts/esp32s3_sections.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/scripts/esp32s3_sections.ld * + * 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/xtensa/esp32s3/common/scripts/flat_memory.ld b/boards/xtensa/esp32s3/common/scripts/flat_memory.ld index f576d0cc24b9c..ee0e928855fd7 100644 --- a/boards/xtensa/esp32s3/common/scripts/flat_memory.ld +++ b/boards/xtensa/esp32s3/common/scripts/flat_memory.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/scripts/flat_memory.ld * + * 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/xtensa/esp32s3/common/scripts/kernel-space.ld b/boards/xtensa/esp32s3/common/scripts/kernel-space.ld index 80a70b1bf1440..65cd8043c3e8c 100644 --- a/boards/xtensa/esp32s3/common/scripts/kernel-space.ld +++ b/boards/xtensa/esp32s3/common/scripts/kernel-space.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/scripts/kernel-space.ld * + * 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/xtensa/esp32s3/common/scripts/legacy_sections.ld b/boards/xtensa/esp32s3/common/scripts/legacy_sections.ld index 9a00ed91838f2..3b3bdef4e2a21 100644 --- a/boards/xtensa/esp32s3/common/scripts/legacy_sections.ld +++ b/boards/xtensa/esp32s3/common/scripts/legacy_sections.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/scripts/legacy_sections.ld * + * 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/xtensa/esp32s3/common/scripts/mcuboot_sections.ld b/boards/xtensa/esp32s3/common/scripts/mcuboot_sections.ld index 38daf32cee90a..82c5a29051829 100644 --- a/boards/xtensa/esp32s3/common/scripts/mcuboot_sections.ld +++ b/boards/xtensa/esp32s3/common/scripts/mcuboot_sections.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/scripts/mcuboot_sections.ld * + * 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/xtensa/esp32s3/common/scripts/protected_memory.ld b/boards/xtensa/esp32s3/common/scripts/protected_memory.ld index 16ee5a59197c6..02609d03ada78 100644 --- a/boards/xtensa/esp32s3/common/scripts/protected_memory.ld +++ b/boards/xtensa/esp32s3/common/scripts/protected_memory.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/scripts/protected_memory.ld * + * 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/xtensa/esp32s3/common/scripts/user-space.ld b/boards/xtensa/esp32s3/common/scripts/user-space.ld index 1c7b60baf6d1a..eef3e06c740bd 100644 --- a/boards/xtensa/esp32s3/common/scripts/user-space.ld +++ b/boards/xtensa/esp32s3/common/scripts/user-space.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/scripts/user-space.ld * + * 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/xtensa/esp32s3/common/src/Make.defs b/boards/xtensa/esp32s3/common/src/Make.defs index cd67f82d0b872..5f0fe48919b42 100644 --- a/boards/xtensa/esp32s3/common/src/Make.defs +++ b/boards/xtensa/esp32s3/common/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################# # boards/xtensa/esp32s3/common/src/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/xtensa/esp32s3/common/src/esp32s3_board_adc.c b/boards/xtensa/esp32s3/common/src/esp32s3_board_adc.c index 824e35d9616fc..3c43c4670cdc2 100644 --- a/boards/xtensa/esp32s3/common/src/esp32s3_board_adc.c +++ b/boards/xtensa/esp32s3/common/src/esp32s3_board_adc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/src/esp32s3_board_adc.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/xtensa/esp32s3/common/src/esp32s3_board_bmp180.c b/boards/xtensa/esp32s3/common/src/esp32s3_board_bmp180.c index 5a1e8eaea2f61..40f3e11c8c4c7 100644 --- a/boards/xtensa/esp32s3/common/src/esp32s3_board_bmp180.c +++ b/boards/xtensa/esp32s3/common/src/esp32s3_board_bmp180.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/src/esp32s3_board_bmp180.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/xtensa/esp32s3/common/src/esp32s3_board_i2c.c b/boards/xtensa/esp32s3/common/src/esp32s3_board_i2c.c index d842ce3b81bdf..52091caa5e246 100644 --- a/boards/xtensa/esp32s3/common/src/esp32s3_board_i2c.c +++ b/boards/xtensa/esp32s3/common/src/esp32s3_board_i2c.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/src/esp32s3_board_i2c.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/xtensa/esp32s3/common/src/esp32s3_board_i2s.c b/boards/xtensa/esp32s3/common/src/esp32s3_board_i2s.c index 4ceffa97140e1..3dcc513699f72 100644 --- a/boards/xtensa/esp32s3/common/src/esp32s3_board_i2s.c +++ b/boards/xtensa/esp32s3/common/src/esp32s3_board_i2s.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/src/esp32s3_board_i2s.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/xtensa/esp32s3/common/src/esp32s3_board_mcpwm.c b/boards/xtensa/esp32s3/common/src/esp32s3_board_mcpwm.c index 0d25b91f0de9b..160f461573c95 100644 --- a/boards/xtensa/esp32s3/common/src/esp32s3_board_mcpwm.c +++ b/boards/xtensa/esp32s3/common/src/esp32s3_board_mcpwm.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/src/esp32s3_board_mcpwm.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/xtensa/esp32s3/common/src/esp32s3_board_rmt.c b/boards/xtensa/esp32s3/common/src/esp32s3_board_rmt.c index f42d2b33acd7f..d4449964776e1 100644 --- a/boards/xtensa/esp32s3/common/src/esp32s3_board_rmt.c +++ b/boards/xtensa/esp32s3/common/src/esp32s3_board_rmt.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/src/esp32s3_board_rmt.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/xtensa/esp32s3/common/src/esp32s3_board_sdmmc.c b/boards/xtensa/esp32s3/common/src/esp32s3_board_sdmmc.c index 8c695b40efd32..7378b527a41ed 100644 --- a/boards/xtensa/esp32s3/common/src/esp32s3_board_sdmmc.c +++ b/boards/xtensa/esp32s3/common/src/esp32s3_board_sdmmc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/src/esp32s3_board_sdmmc.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/xtensa/esp32s3/common/src/esp32s3_board_spidev.c b/boards/xtensa/esp32s3/common/src/esp32s3_board_spidev.c index 9511492f65e86..128c97b991eab 100644 --- a/boards/xtensa/esp32s3/common/src/esp32s3_board_spidev.c +++ b/boards/xtensa/esp32s3/common/src/esp32s3_board_spidev.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/src/esp32s3_board_spidev.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/xtensa/esp32s3/common/src/esp32s3_board_spiflash.c b/boards/xtensa/esp32s3/common/src/esp32s3_board_spiflash.c index aaee0811ee906..52fe4ded1093a 100644 --- a/boards/xtensa/esp32s3/common/src/esp32s3_board_spiflash.c +++ b/boards/xtensa/esp32s3/common/src/esp32s3_board_spiflash.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/src/esp32s3_board_spiflash.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/xtensa/esp32s3/common/src/esp32s3_board_tim.c b/boards/xtensa/esp32s3/common/src/esp32s3_board_tim.c index 216a091728f17..7aae04a695ff0 100644 --- a/boards/xtensa/esp32s3/common/src/esp32s3_board_tim.c +++ b/boards/xtensa/esp32s3/common/src/esp32s3_board_tim.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/src/esp32s3_board_tim.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/xtensa/esp32s3/common/src/esp32s3_board_usb.c b/boards/xtensa/esp32s3/common/src/esp32s3_board_usb.c index 2f84d4d2632c2..b2521b3743faa 100644 --- a/boards/xtensa/esp32s3/common/src/esp32s3_board_usb.c +++ b/boards/xtensa/esp32s3/common/src/esp32s3_board_usb.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/src/esp32s3_board_usb.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/xtensa/esp32s3/common/src/esp32s3_board_wdt.c b/boards/xtensa/esp32s3/common/src/esp32s3_board_wdt.c index 29843ef8b2488..bc9f9f0defe12 100644 --- a/boards/xtensa/esp32s3/common/src/esp32s3_board_wdt.c +++ b/boards/xtensa/esp32s3/common/src/esp32s3_board_wdt.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/src/esp32s3_board_wdt.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/xtensa/esp32s3/common/src/esp32s3_board_wlan.c b/boards/xtensa/esp32s3/common/src/esp32s3_board_wlan.c index ef3c733f6ef9c..0659aa5d112be 100644 --- a/boards/xtensa/esp32s3/common/src/esp32s3_board_wlan.c +++ b/boards/xtensa/esp32s3/common/src/esp32s3_board_wlan.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/src/esp32s3_board_wlan.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/xtensa/esp32s3/common/src/esp32s3_cs4344.c b/boards/xtensa/esp32s3/common/src/esp32s3_cs4344.c index 022a03c50d8d7..d9fc8709ad31d 100644 --- a/boards/xtensa/esp32s3/common/src/esp32s3_cs4344.c +++ b/boards/xtensa/esp32s3/common/src/esp32s3_cs4344.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/src/esp32s3_cs4344.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/xtensa/esp32s3/common/src/esp32s3_es8311.c b/boards/xtensa/esp32s3/common/src/esp32s3_es8311.c index 07173271ee8e0..a4721fb5a9ee8 100644 --- a/boards/xtensa/esp32s3/common/src/esp32s3_es8311.c +++ b/boards/xtensa/esp32s3/common/src/esp32s3_es8311.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/src/esp32s3_es8311.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/xtensa/esp32s3/common/src/esp32s3_lan9250.c b/boards/xtensa/esp32s3/common/src/esp32s3_lan9250.c index f838f13240d7a..9311cf1d3c090 100644 --- a/boards/xtensa/esp32s3/common/src/esp32s3_lan9250.c +++ b/boards/xtensa/esp32s3/common/src/esp32s3_lan9250.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/common/src/esp32s3_lan9250.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/xtensa/esp32s3/esp32s3-box/include/board.h b/boards/xtensa/esp32s3/esp32s3-box/include/board.h index 45ab6e9f1bd3d..f67d760d53d98 100644 --- a/boards/xtensa/esp32s3/esp32s3-box/include/board.h +++ b/boards/xtensa/esp32s3/esp32s3-box/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-box/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/xtensa/esp32s3/esp32s3-box/include/board_memorymap.h b/boards/xtensa/esp32s3/esp32s3-box/include/board_memorymap.h index ad9504541ae9c..1999ea5da3be4 100644 --- a/boards/xtensa/esp32s3/esp32s3-box/include/board_memorymap.h +++ b/boards/xtensa/esp32s3/esp32s3-box/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-box/include/board_memorymap.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/xtensa/esp32s3/esp32s3-box/scripts/Make.defs b/boards/xtensa/esp32s3/esp32s3-box/scripts/Make.defs index 2c6b757377054..f001355d0cc17 100644 --- a/boards/xtensa/esp32s3/esp32s3-box/scripts/Make.defs +++ b/boards/xtensa/esp32s3/esp32s3-box/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s3/esp32s3-box/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/xtensa/esp32s3/esp32s3-box/src/Make.defs b/boards/xtensa/esp32s3/esp32s3-box/src/Make.defs index 62c5829f40b95..08f0b5f64f63e 100644 --- a/boards/xtensa/esp32s3/esp32s3-box/src/Make.defs +++ b/boards/xtensa/esp32s3/esp32s3-box/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s3/esp32s3-box/src/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/xtensa/esp32s3/esp32s3-box/src/esp32s3-box.h b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3-box.h index fffd8e8bb895e..1ff4ef5d98ba4 100644 --- a/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3-box.h +++ b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3-box.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-box/src/esp32s3-box.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/xtensa/esp32s3/esp32s3-box/src/esp32s3_appinit.c b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_appinit.c index 93a62b3eb35dc..b053b74d6ad0e 100644 --- a/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_appinit.c +++ b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_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/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_lcd_ili9342c.c b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_lcd_ili9342c.c index 890cc9f8001ed..445155f26ce38 100644 --- a/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_lcd_ili9342c.c +++ b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_lcd_ili9342c.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_lcd_ili9342c.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/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_lcd_st7789.c b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_lcd_st7789.c index 5c42132d224c3..af741f789f69e 100644 --- a/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_lcd_st7789.c +++ b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_lcd_st7789.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_lcd_st7789.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/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_spi.c b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_spi.c index 7ee4d4d75c127..eaed30b67cffe 100644 --- a/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_spi.c +++ b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_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 diff --git a/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_touchsceen_gt911.c b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_touchsceen_gt911.c index 9cf96593e9a43..fb4a79c12137e 100644 --- a/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_touchsceen_gt911.c +++ b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_touchsceen_gt911.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_touchsceen_gt911.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/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_touchsceen_tt21100.c b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_touchsceen_tt21100.c index edf381ae4adfe..86b51a58f4e2e 100644 --- a/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_touchsceen_tt21100.c +++ b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_touchsceen_tt21100.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_board_touchsceen_tt21100.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/xtensa/esp32s3/esp32s3-box/src/esp32s3_boot.c b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_boot.c index 046366fe0150c..065a456e227ee 100644 --- a/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_boot.c +++ b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_boot.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/xtensa/esp32s3/esp32s3-box/src/esp32s3_bringup.c b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_bringup.c index 04abeef5f0586..954ca98a17444 100644 --- a/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_bringup.c +++ b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_bringup.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/xtensa/esp32s3/esp32s3-box/src/esp32s3_buttons.c b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_buttons.c index a3bfd6c951581..6fa0638ea5b00 100644 --- a/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_buttons.c +++ b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_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/xtensa/esp32s3/esp32s3-box/src/esp32s3_reset.c b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_reset.c index 1e23e14a88e32..e087c11a783c4 100644 --- a/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_reset.c +++ b/boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-box/src/esp32s3_reset.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/xtensa/esp32s3/esp32s3-devkit/include/board.h b/boards/xtensa/esp32s3/esp32s3-devkit/include/board.h index 9c2690cece2e0..b00dc167fa675 100644 --- a/boards/xtensa/esp32s3/esp32s3-devkit/include/board.h +++ b/boards/xtensa/esp32s3/esp32s3-devkit/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-devkit/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/xtensa/esp32s3/esp32s3-devkit/include/board_memorymap.h b/boards/xtensa/esp32s3/esp32s3-devkit/include/board_memorymap.h index 6569e936c2cb4..cada3cf206358 100644 --- a/boards/xtensa/esp32s3/esp32s3-devkit/include/board_memorymap.h +++ b/boards/xtensa/esp32s3/esp32s3-devkit/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-devkit/include/board_memorymap.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/xtensa/esp32s3/esp32s3-devkit/scripts/Make.defs b/boards/xtensa/esp32s3/esp32s3-devkit/scripts/Make.defs index d013412908d06..c0d223a3302f9 100644 --- a/boards/xtensa/esp32s3/esp32s3-devkit/scripts/Make.defs +++ b/boards/xtensa/esp32s3/esp32s3-devkit/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s3/esp32s3-devkit/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/xtensa/esp32s3/esp32s3-devkit/src/Make.defs b/boards/xtensa/esp32s3/esp32s3-devkit/src/Make.defs index 652b0e2fcd38d..4ca2915477520 100644 --- a/boards/xtensa/esp32s3/esp32s3-devkit/src/Make.defs +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s3/esp32s3-devkit/src/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/xtensa/esp32s3/esp32s3-devkit/src/esp32s3-devkit.h b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3-devkit.h index 0a3fe78785574..bb76543cd5ea7 100644 --- a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3-devkit.h +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3-devkit.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3-devkit.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/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_appinit.c b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_appinit.c index 6f7178113d97a..f95282cf3b12a 100644 --- a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_appinit.c +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_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/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_board_spi.c b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_board_spi.c index c46be1d4e8d67..2975555328bc3 100644 --- a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_board_spi.c +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_board_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_board_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 diff --git a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_boot.c b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_boot.c index 6753b8430b99d..72ee01fed16fc 100644 --- a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_boot.c +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_boot.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/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_bringup.c b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_bringup.c index e5afb34c696c3..fc8856742904f 100644 --- a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_bringup.c +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_bringup.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/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_buttons.c b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_buttons.c index 8dc7e617f7d6e..f3d66cb1b2692 100644 --- a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_buttons.c +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_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/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_djoystick.c b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_djoystick.c index 0117d301d4efd..b85f209dba96b 100644 --- a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_djoystick.c +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_djoystick.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_djoystick.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/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_gpio.c b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_gpio.c index 8a327b7b9f497..33c3c8cd12e4c 100644 --- a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_gpio.c +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_gpio.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/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_ledc.c b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_ledc.c index deb6728dfd083..b932851933a88 100644 --- a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_ledc.c +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_ledc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_ledc.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/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_reset.c b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_reset.c index e47ba976a4192..b4d504e1c8af5 100644 --- a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_reset.c +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_reset.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/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_st7735.c b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_st7735.c index 3ad6f7471bbd5..140a3b74b4d21 100644 --- a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_st7735.c +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_st7735.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_st7735.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/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_twai.c b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_twai.c index d6b98e28efc19..40e6d2f1c3aea 100644 --- a/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_twai.c +++ b/boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_twai.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-devkit/src/esp32s3_twai.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/xtensa/esp32s3/esp32s3-eye/include/board.h b/boards/xtensa/esp32s3/esp32s3-eye/include/board.h index ff906a946d7fe..5032f9fd1f677 100644 --- a/boards/xtensa/esp32s3/esp32s3-eye/include/board.h +++ b/boards/xtensa/esp32s3/esp32s3-eye/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-eye/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/xtensa/esp32s3/esp32s3-eye/scripts/Make.defs b/boards/xtensa/esp32s3/esp32s3-eye/scripts/Make.defs index 9c55e7e5d1e43..5b109216ab597 100644 --- a/boards/xtensa/esp32s3/esp32s3-eye/scripts/Make.defs +++ b/boards/xtensa/esp32s3/esp32s3-eye/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s3/esp32s3-eye/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/xtensa/esp32s3/esp32s3-eye/src/Make.defs b/boards/xtensa/esp32s3/esp32s3-eye/src/Make.defs index d64e14030d78c..832028b52b929 100644 --- a/boards/xtensa/esp32s3/esp32s3-eye/src/Make.defs +++ b/boards/xtensa/esp32s3/esp32s3-eye/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s3/esp32s3-eye/src/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/xtensa/esp32s3/esp32s3-eye/src/esp32s3-eye.h b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3-eye.h index 6c89e6cc2476c..0be1fd2dfdb55 100644 --- a/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3-eye.h +++ b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3-eye.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3-eye.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/xtensa/esp32s3/esp32s3-eye/src/esp32s3_appinit.c b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_appinit.c index 37d83370e5229..c582f0959c160 100644 --- a/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_appinit.c +++ b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_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/xtensa/esp32s3/esp32s3-eye/src/esp32s3_board_lcd.c b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_board_lcd.c index e7d5eedc68992..cb622d0b98757 100644 --- a/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_board_lcd.c +++ b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_board_lcd.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_board_lcd.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/xtensa/esp32s3/esp32s3-eye/src/esp32s3_board_spi.c b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_board_spi.c index e7b3261812ffd..a56c9b04fa2fb 100644 --- a/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_board_spi.c +++ b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_board_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_board_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 diff --git a/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_boot.c b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_boot.c index f9fc78aa64d1b..02b185f766ddd 100644 --- a/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_boot.c +++ b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_boot.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/xtensa/esp32s3/esp32s3-eye/src/esp32s3_bringup.c b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_bringup.c index 9288e8556b3fe..db276da7ae82e 100644 --- a/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_bringup.c +++ b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_bringup.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/xtensa/esp32s3/esp32s3-eye/src/esp32s3_buttons.c b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_buttons.c index 1ec2d599a6f71..668c15aabb089 100644 --- a/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_buttons.c +++ b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_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/xtensa/esp32s3/esp32s3-eye/src/esp32s3_gpio.c b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_gpio.c index 16308c6aa5121..477ba25229a82 100644 --- a/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_gpio.c +++ b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_gpio.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/xtensa/esp32s3/esp32s3-eye/src/esp32s3_reset.c b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_reset.c index 27dc52fec612c..c1f8f3c36b3b8 100644 --- a/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_reset.c +++ b/boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-eye/src/esp32s3_reset.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/xtensa/esp32s3/esp32s3-korvo-2/include/board.h b/boards/xtensa/esp32s3/esp32s3-korvo-2/include/board.h index 477c3878f5280..80409850e3013 100644 --- a/boards/xtensa/esp32s3/esp32s3-korvo-2/include/board.h +++ b/boards/xtensa/esp32s3/esp32s3-korvo-2/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-korvo-2/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/xtensa/esp32s3/esp32s3-korvo-2/include/board_memorymap.h b/boards/xtensa/esp32s3/esp32s3-korvo-2/include/board_memorymap.h index 70b5a806db53b..d4b8b1396b3b2 100644 --- a/boards/xtensa/esp32s3/esp32s3-korvo-2/include/board_memorymap.h +++ b/boards/xtensa/esp32s3/esp32s3-korvo-2/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-korvo-2/include/board_memorymap.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/xtensa/esp32s3/esp32s3-korvo-2/scripts/Make.defs b/boards/xtensa/esp32s3/esp32s3-korvo-2/scripts/Make.defs index a419c1ca9b3ac..27916248d38ac 100644 --- a/boards/xtensa/esp32s3/esp32s3-korvo-2/scripts/Make.defs +++ b/boards/xtensa/esp32s3/esp32s3-korvo-2/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s3/esp32s3-korvo-2/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/xtensa/esp32s3/esp32s3-korvo-2/src/Make.defs b/boards/xtensa/esp32s3/esp32s3-korvo-2/src/Make.defs index cfa8a12beec27..6ea4f0907bc34 100644 --- a/boards/xtensa/esp32s3/esp32s3-korvo-2/src/Make.defs +++ b/boards/xtensa/esp32s3/esp32s3-korvo-2/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s3/esp32s3-korvo-2/src/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/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3-korvo-2.h b/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3-korvo-2.h index 5987ca1d48c67..9e2eec1b2a51b 100644 --- a/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3-korvo-2.h +++ b/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3-korvo-2.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3-korvo-2.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/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_appinit.c b/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_appinit.c index 86557cf3e091e..38b1224d30e19 100644 --- a/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_appinit.c +++ b/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_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/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_board_spi.c b/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_board_spi.c index 547405481e58c..a7e6f5ab0eb4e 100644 --- a/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_board_spi.c +++ b/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_board_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_board_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 diff --git a/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_boot.c b/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_boot.c index de4718a06e1c5..07ad69890a879 100644 --- a/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_boot.c +++ b/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_boot.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/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_bringup.c b/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_bringup.c index 76ad984c2a7e5..63090fde7856e 100644 --- a/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_bringup.c +++ b/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_bringup.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/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_buttons.c b/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_buttons.c index cf132bab7d9b9..9a411cf96ad4d 100644 --- a/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_buttons.c +++ b/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_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/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_reset.c b/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_reset.c index 2c7b91edce3df..7449f906e9da5 100644 --- a/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_reset.c +++ b/boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-korvo-2/src/esp32s3_reset.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/xtensa/esp32s3/esp32s3-lcd-ev/include/board.h b/boards/xtensa/esp32s3/esp32s3-lcd-ev/include/board.h index 80348f585db24..f37bacb6a77f3 100644 --- a/boards/xtensa/esp32s3/esp32s3-lcd-ev/include/board.h +++ b/boards/xtensa/esp32s3/esp32s3-lcd-ev/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lcd-ev/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/xtensa/esp32s3/esp32s3-lcd-ev/include/board_memorymap.h b/boards/xtensa/esp32s3/esp32s3-lcd-ev/include/board_memorymap.h index 41113ac238518..1a05d9d1b3559 100644 --- a/boards/xtensa/esp32s3/esp32s3-lcd-ev/include/board_memorymap.h +++ b/boards/xtensa/esp32s3/esp32s3-lcd-ev/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lcd-ev/include/board_memorymap.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/xtensa/esp32s3/esp32s3-lcd-ev/scripts/Make.defs b/boards/xtensa/esp32s3/esp32s3-lcd-ev/scripts/Make.defs index c3d5dbd4497bb..40bd65d059dd5 100644 --- a/boards/xtensa/esp32s3/esp32s3-lcd-ev/scripts/Make.defs +++ b/boards/xtensa/esp32s3/esp32s3-lcd-ev/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s3/esp32s3-lcd-ev/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/xtensa/esp32s3/esp32s3-lcd-ev/src/Make.defs b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/Make.defs index a1dcc41aed81b..4534d050b7638 100644 --- a/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/Make.defs +++ b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s3/esp32s3-lcd-ev/src/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/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3-lcd-ev.h b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3-lcd-ev.h index cbef32d2881ec..7e931a625f9c8 100644 --- a/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3-lcd-ev.h +++ b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3-lcd-ev.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3-lcd-ev.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/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_appinit.c b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_appinit.c index 8cc32d7b92dc4..86ff333d464e6 100644 --- a/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_appinit.c +++ b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_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/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_board_spi.c b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_board_spi.c index 58dec78a3ec9e..80b70c65e6d30 100644 --- a/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_board_spi.c +++ b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_board_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_board_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 diff --git a/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_boot.c b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_boot.c index 7e44fa9e45d58..b3600d9925aeb 100644 --- a/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_boot.c +++ b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_boot.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/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_bringup.c b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_bringup.c index 3f38147e1bb2a..767ee878d6265 100644 --- a/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_bringup.c +++ b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_bringup.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/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_buttons.c b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_buttons.c index 83be5386a26df..b65e058e69cb1 100644 --- a/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_buttons.c +++ b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_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/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_ioexpander.c b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_ioexpander.c index 8f606bf189638..8b38326dbdc6b 100644 --- a/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_ioexpander.c +++ b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_ioexpander.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_ioexpander.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/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_lcd.c b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_lcd.c index 32b9c454c4169..0aca5268b07b8 100644 --- a/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_lcd.c +++ b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_lcd.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_lcd.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/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_reset.c b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_reset.c index cc36f068c787f..bb590679eb020 100644 --- a/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_reset.c +++ b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_reset.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/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_touchscreen.c b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_touchscreen.c index 06e1ffeceb0e4..9e041e278ab81 100644 --- a/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_touchscreen.c +++ b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_touchscreen.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_touchscreen.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/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_ws2812.c b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_ws2812.c index 66fe9eb1329cb..506efd38bcb9e 100644 --- a/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_ws2812.c +++ b/boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_ws2812.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lcd-ev/src/esp32s3_ws2812.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/xtensa/esp32s3/esp32s3-lhcbit/include/board.h b/boards/xtensa/esp32s3/esp32s3-lhcbit/include/board.h index ffbc7bf3b1d1f..e97d8e2c51b67 100644 --- a/boards/xtensa/esp32s3/esp32s3-lhcbit/include/board.h +++ b/boards/xtensa/esp32s3/esp32s3-lhcbit/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lhcbit/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/xtensa/esp32s3/esp32s3-lhcbit/include/board_memorymap.h b/boards/xtensa/esp32s3/esp32s3-lhcbit/include/board_memorymap.h index 0811931a3801b..8a9253522e059 100644 --- a/boards/xtensa/esp32s3/esp32s3-lhcbit/include/board_memorymap.h +++ b/boards/xtensa/esp32s3/esp32s3-lhcbit/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lhcbit/include/board_memorymap.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/xtensa/esp32s3/esp32s3-lhcbit/scripts/Make.defs b/boards/xtensa/esp32s3/esp32s3-lhcbit/scripts/Make.defs index 5dbd71d72f64d..48862da084fe6 100644 --- a/boards/xtensa/esp32s3/esp32s3-lhcbit/scripts/Make.defs +++ b/boards/xtensa/esp32s3/esp32s3-lhcbit/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s3/esp32s3-lhcbit/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/xtensa/esp32s3/esp32s3-lhcbit/src/Make.defs b/boards/xtensa/esp32s3/esp32s3-lhcbit/src/Make.defs index 5684ac787de2c..a9106df0d11fd 100644 --- a/boards/xtensa/esp32s3/esp32s3-lhcbit/src/Make.defs +++ b/boards/xtensa/esp32s3/esp32s3-lhcbit/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s3/esp32s3-lhcbit/src/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/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3-lhcbit.h b/boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3-lhcbit.h index f32bb1e04f1af..a91556c9b0978 100644 --- a/boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3-lhcbit.h +++ b/boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3-lhcbit.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3-lhcbit.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/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_appinit.c b/boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_appinit.c index 4d10df7d3d92c..0501ee688639d 100644 --- a/boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_appinit.c +++ b/boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_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/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_boot.c b/boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_boot.c index a7d4b52c6b00d..6719fdaae79a4 100644 --- a/boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_boot.c +++ b/boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_boot.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/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_bringup.c b/boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_bringup.c index 3c4dbc0f769d4..94930eb3d0b13 100644 --- a/boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_bringup.c +++ b/boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_bringup.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/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_reset.c b/boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_reset.c index 1fd5eee4f93a4..ad309460d6824 100644 --- a/boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_reset.c +++ b/boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-lhcbit/src/esp32s3_reset.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/xtensa/esp32s3/esp32s3-meadow/include/board.h b/boards/xtensa/esp32s3/esp32s3-meadow/include/board.h index d515a173649b3..80af50d9e73d2 100644 --- a/boards/xtensa/esp32s3/esp32s3-meadow/include/board.h +++ b/boards/xtensa/esp32s3/esp32s3-meadow/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-meadow/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/xtensa/esp32s3/esp32s3-meadow/scripts/Make.defs b/boards/xtensa/esp32s3/esp32s3-meadow/scripts/Make.defs index 5a539076ef933..6a4bc82715ca2 100644 --- a/boards/xtensa/esp32s3/esp32s3-meadow/scripts/Make.defs +++ b/boards/xtensa/esp32s3/esp32s3-meadow/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s3/esp32s3-meadow/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/xtensa/esp32s3/esp32s3-meadow/src/Make.defs b/boards/xtensa/esp32s3/esp32s3-meadow/src/Make.defs index acb27c2e8a868..6c0ebcd7da661 100644 --- a/boards/xtensa/esp32s3/esp32s3-meadow/src/Make.defs +++ b/boards/xtensa/esp32s3/esp32s3-meadow/src/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/xtensa/esp32s3/esp32s3-meadow/src/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/xtensa/esp32s3/esp32s3-meadow/src/esp32s3-meadow.h b/boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3-meadow.h index 3af7ea469b905..d2bcaeda7c5c9 100644 --- a/boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3-meadow.h +++ b/boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3-meadow.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3-meadow.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/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_appinit.c b/boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_appinit.c index bc47ca89c677c..b99776d8f6e74 100644 --- a/boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_appinit.c +++ b/boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_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/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_boot.c b/boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_boot.c index 566521a9b5ee2..1a167edcb49f4 100644 --- a/boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_boot.c +++ b/boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_boot.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/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_bringup.c b/boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_bringup.c index 0306c9901fa2d..c9687136b7609 100644 --- a/boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_bringup.c +++ b/boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_bringup.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/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_reset.c b/boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_reset.c index b3e45bd3e5751..ada6fa6f5285a 100644 --- a/boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_reset.c +++ b/boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_reset.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/xtensa/esp32s3/esp32s3-meadow/src/esp32s3_reset.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