From b719df375ed3e5afad285804a4c1bce335d29d8a Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Fri, 8 Nov 2024 10:09:35 +0100 Subject: [PATCH] boards/arm/stm32h5: migrate to SPDX identifier Most tools used for compliance and SBOM generation use SPDX identifiers This change brings us a step closer to an easy SBOM generation. Signed-off-by: Alin Jerpelea --- boards/arm/stm32h5/nucleo-h563zi/include/board.h | 2 ++ boards/arm/stm32h5/nucleo-h563zi/scripts/Make.defs | 2 ++ boards/arm/stm32h5/nucleo-h563zi/scripts/flash.ld | 2 ++ boards/arm/stm32h5/nucleo-h563zi/scripts/tfm-ns.ld | 2 ++ boards/arm/stm32h5/nucleo-h563zi/src/Makefile | 2 ++ boards/arm/stm32h5/nucleo-h563zi/src/nucleo-h563zi.h | 2 ++ boards/arm/stm32h5/nucleo-h563zi/src/stm32_appinit.c | 2 ++ boards/arm/stm32h5/nucleo-h563zi/src/stm32_autoleds.c | 2 ++ boards/arm/stm32h5/nucleo-h563zi/src/stm32_boot.c | 2 ++ boards/arm/stm32h5/nucleo-h563zi/src/stm32_bringup.c | 2 ++ boards/arm/stm32h5/nucleo-h563zi/src/stm32_buttons.c | 2 ++ boards/arm/stm32h5/nucleo-h563zi/src/stm32_clockconfig.c | 2 ++ boards/arm/stm32h5/nucleo-h563zi/src/stm32_userleds.c | 2 ++ 13 files changed, 26 insertions(+) diff --git a/boards/arm/stm32h5/nucleo-h563zi/include/board.h b/boards/arm/stm32h5/nucleo-h563zi/include/board.h index 1e48be36ce..54280ffc37 100644 --- a/boards/arm/stm32h5/nucleo-h563zi/include/board.h +++ b/boards/arm/stm32h5/nucleo-h563zi/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/stm32h5/nucleo-h563zi/include/board.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/boards/arm/stm32h5/nucleo-h563zi/scripts/Make.defs b/boards/arm/stm32h5/nucleo-h563zi/scripts/Make.defs index e4bb4ef55f..d64ce37fb0 100644 --- a/boards/arm/stm32h5/nucleo-h563zi/scripts/Make.defs +++ b/boards/arm/stm32h5/nucleo-h563zi/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################## # boards/arm/stm32h5/nucleo-h563zi/scripts/Make.defs # +# SPDX-License-Identifier: Apache-2.0 +# # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. The diff --git a/boards/arm/stm32h5/nucleo-h563zi/scripts/flash.ld b/boards/arm/stm32h5/nucleo-h563zi/scripts/flash.ld index f5e49a0de3..e7bd94d676 100644 --- a/boards/arm/stm32h5/nucleo-h563zi/scripts/flash.ld +++ b/boards/arm/stm32h5/nucleo-h563zi/scripts/flash.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/stm32u5/nucleo-u5a5zj-q/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/arm/stm32h5/nucleo-h563zi/scripts/tfm-ns.ld b/boards/arm/stm32h5/nucleo-h563zi/scripts/tfm-ns.ld index ae910e6480..ee8c39cfc3 100644 --- a/boards/arm/stm32h5/nucleo-h563zi/scripts/tfm-ns.ld +++ b/boards/arm/stm32h5/nucleo-h563zi/scripts/tfm-ns.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/stm32h5/nucleo-h563zi/scripts/tfm-ns.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/arm/stm32h5/nucleo-h563zi/src/Makefile b/boards/arm/stm32h5/nucleo-h563zi/src/Makefile index 27f58d4cee..d3a10830e3 100644 --- a/boards/arm/stm32h5/nucleo-h563zi/src/Makefile +++ b/boards/arm/stm32h5/nucleo-h563zi/src/Makefile @@ -1,6 +1,8 @@ ############################################################################## # boards/arm/stm32h5/nucleo-h563zi/src/Makefile # +# SPDX-License-Identifier: Apache-2.0 +# # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. The diff --git a/boards/arm/stm32h5/nucleo-h563zi/src/nucleo-h563zi.h b/boards/arm/stm32h5/nucleo-h563zi/src/nucleo-h563zi.h index d83420d19a..9e009a9f75 100644 --- a/boards/arm/stm32h5/nucleo-h563zi/src/nucleo-h563zi.h +++ b/boards/arm/stm32h5/nucleo-h563zi/src/nucleo-h563zi.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/stm32h5/nucleo-h563zi/src/nucleo-h563zi.h * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/boards/arm/stm32h5/nucleo-h563zi/src/stm32_appinit.c b/boards/arm/stm32h5/nucleo-h563zi/src/stm32_appinit.c index af1977d125..ff4984f29b 100644 --- a/boards/arm/stm32h5/nucleo-h563zi/src/stm32_appinit.c +++ b/boards/arm/stm32h5/nucleo-h563zi/src/stm32_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/stm32h5/nucleo-h563zi/src/stm32_appinit.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/boards/arm/stm32h5/nucleo-h563zi/src/stm32_autoleds.c b/boards/arm/stm32h5/nucleo-h563zi/src/stm32_autoleds.c index 111cebe98a..cd9de7dcdb 100644 --- a/boards/arm/stm32h5/nucleo-h563zi/src/stm32_autoleds.c +++ b/boards/arm/stm32h5/nucleo-h563zi/src/stm32_autoleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/stm32h5/nucleo-h563zi/src/stm32_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/arm/stm32h5/nucleo-h563zi/src/stm32_boot.c b/boards/arm/stm32h5/nucleo-h563zi/src/stm32_boot.c index 0421083e61..8c4e9158c7 100644 --- a/boards/arm/stm32h5/nucleo-h563zi/src/stm32_boot.c +++ b/boards/arm/stm32h5/nucleo-h563zi/src/stm32_boot.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/stm32h5/nucleo-h563zi/src/stm32_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/arm/stm32h5/nucleo-h563zi/src/stm32_bringup.c b/boards/arm/stm32h5/nucleo-h563zi/src/stm32_bringup.c index 37fbc400cb..7710041673 100644 --- a/boards/arm/stm32h5/nucleo-h563zi/src/stm32_bringup.c +++ b/boards/arm/stm32h5/nucleo-h563zi/src/stm32_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/stm32h5/nucleo-h563zi/src/stm32_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/arm/stm32h5/nucleo-h563zi/src/stm32_buttons.c b/boards/arm/stm32h5/nucleo-h563zi/src/stm32_buttons.c index 776b8eb8ac..6549c3cce1 100644 --- a/boards/arm/stm32h5/nucleo-h563zi/src/stm32_buttons.c +++ b/boards/arm/stm32h5/nucleo-h563zi/src/stm32_buttons.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/stm32h5/nucleo-h563zi/src/stm32_buttons.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/boards/arm/stm32h5/nucleo-h563zi/src/stm32_clockconfig.c b/boards/arm/stm32h5/nucleo-h563zi/src/stm32_clockconfig.c index d5eea201d1..e1b23b8804 100644 --- a/boards/arm/stm32h5/nucleo-h563zi/src/stm32_clockconfig.c +++ b/boards/arm/stm32h5/nucleo-h563zi/src/stm32_clockconfig.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/stm32h5/nucleo-h563zi/src/stm32_clockconfig.c * + * SPDX-License-Identifier: Apache-2.0 + * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The diff --git a/boards/arm/stm32h5/nucleo-h563zi/src/stm32_userleds.c b/boards/arm/stm32h5/nucleo-h563zi/src/stm32_userleds.c index 4cb87018df..d666264596 100644 --- a/boards/arm/stm32h5/nucleo-h563zi/src/stm32_userleds.c +++ b/boards/arm/stm32h5/nucleo-h563zi/src/stm32_userleds.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm/stm32h5/nucleo-h563zi/src/stm32_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