From 75734708209e1fd71df46d57116c354e0c346f18 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:41:31 +0100 Subject: [PATCH] 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 b682365dd8..670f1dc834 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 b1f2cadec5..c5e3e969ea 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 939f1b7dcd..108cfca1ef 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 7445ebf0f3..1b926a5367 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 a08e91569f..78a5e995a8 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 9a029ca4a0..0c19de3c16 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 4c761c6bfc..616061a3eb 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 1f63aaefcf..2d30ebee7a 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