From dccd41bad73b9ea83017ea3a01aff82f296ecd4c Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:37:13 +0100 Subject: [PATCH] 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 2d123bc6452..9ccbf2e0d92 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 3b6ff770796..c7307616334 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 d478a4b640d..52511871dd1 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 2737e3564d5..b1b384617a1 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 70cc0d2f886..064cb99c119 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 0e713aaee0f..e8f9fdee18b 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 fdd586b0af1..3321c74f0ab 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 909eb2e2309..260e547ea42 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 8b4e4aeda57..5016329592b 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 1d961a58c01..06cedc63479 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 8499490078d..61681401c17 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 f30676a2691..b4d2e9a6e67 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 08b7fc65848..c3b88d68d8d 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 8d8a7bc4cb5..90a337aeecc 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 7d8708f4dd8..1756e73b8a0 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 d1768097604..169d8b06865 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 43f7d133afc..68ab294361a 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 cfc95bfd7a6..67942edecb2 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 3a24912107a..b0a2d150cbf 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 2b7d2f9fb4f..6b6a31b8d25 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 daca0d87f74..4e22625e3e8 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 0f6396d5bf6..45961575e4c 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 3318eecb6b0..bf379e8b6fc 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 66319f4b09a..4b075c05dcb 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 4db11128c89..17d1a2c3779 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 40d78d3ce91..9122cdf9133 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 b081f29e73d..707e1513282 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 66102c2e47a..1f57dc7ee99 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 be5bef72f63..08f547dab24 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 e900efecdbd..8da0356480b 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 d0cf03142cf..057de076015 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 85d2156264a..303adccf689 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 78f0ebae0e7..6e4e722b069 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 17cf6091cbd..1ff0e8de960 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 77118e5d2e1..60f16f975d7 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