From 915712dc466bc433a995356c113a7361449cd8b2 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 14:40:43 +0100 Subject: [PATCH] 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 d0bfcda830..fb823332f4 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 5f713e0c82..63e9f2ff0d 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 b453d34137..31f16b4072 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 07c811d0f5..7b6bc02db2 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 9b38bf214b..9d317d6a76 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 88950c4d5d..87b35a07d9 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 68d14c7d08..dba0fc3409 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 dd299ea3b9..833273964f 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 955a0f1839..44d44338d1 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 7b29b35c51..5977354c9e 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 07fd234ded..b93d6096b6 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 c969873f08..14bf2546aa 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 a171940a32..1b9beb634e 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 df3bc76f95..879b9451c0 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 fd579d5d7c..89a4c8ce02 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 221cea6d3b..9d1d7b0fec 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 c04c8a1a23..3588ad515a 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 f906fabeb9..e24207e7ee 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 d58851f899..4ed502e7e9 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 721ef090be..84b2e51170 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 889609c48f..6c0bc540ec 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 10f0686ab6..3533c89fbc 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