From d2643b6c83af8a97a2c26fb4142083cb35321c86 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:17:24 +0100 Subject: [PATCH] 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 de6e2201f7..7277cc2115 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 5221fb7847..8969b9f816 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 35d0b89981..3f58d8d898 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 e47b594ff0..56d57fe28a 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 3b072df342..4ab1d24e3a 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 681219595d..0f99a265cf 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 0751191e6a..d9caf13a5f 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 3aacc09db6..a52b094107 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 ab47deb747..5bfe50a199 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 6651c257d2..51bd07df9a 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