From 531eb5e8735459db3894b45307d6fb41c2a77bf2 Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 11 Nov 2024 14:12:23 +0100 Subject: [PATCH] boards/arm64/imx9: 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/arm64/imx9/imx93-evk/include/board.h | 2 ++ boards/arm64/imx9/imx93-evk/include/board_memorymap.h | 2 ++ boards/arm64/imx9/imx93-evk/scripts/Make.defs | 2 ++ boards/arm64/imx9/imx93-evk/scripts/dramboot.ld | 2 ++ boards/arm64/imx9/imx93-evk/scripts/ocramboot.ld | 2 ++ boards/arm64/imx9/imx93-evk/src/Makefile | 2 ++ boards/arm64/imx9/imx93-evk/src/imx93-evk.h | 2 ++ boards/arm64/imx9/imx93-evk/src/imx9_appinit.c | 2 ++ boards/arm64/imx9/imx93-evk/src/imx9_boardinit.c | 2 ++ boards/arm64/imx9/imx93-evk/src/imx9_bringup.c | 2 ++ boards/arm64/imx9/imx93-evk/src/imx9_i2c.c | 2 ++ boards/arm64/imx9/imx93-evk/src/imx9_pwm.c | 2 ++ boards/arm64/imx9/imx93-evk/src/imx9_spi.c | 2 ++ boards/arm64/imx9/imx93-evk/src/imx9_usdhc.c | 2 ++ 14 files changed, 28 insertions(+) diff --git a/boards/arm64/imx9/imx93-evk/include/board.h b/boards/arm64/imx9/imx93-evk/include/board.h index d1f53ce920b..20b165b2c8d 100644 --- a/boards/arm64/imx9/imx93-evk/include/board.h +++ b/boards/arm64/imx9/imx93-evk/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/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/arm64/imx9/imx93-evk/include/board_memorymap.h b/boards/arm64/imx9/imx93-evk/include/board_memorymap.h index 07649afbc5d..e1b1601a12a 100644 --- a/boards/arm64/imx9/imx93-evk/include/board_memorymap.h +++ b/boards/arm64/imx9/imx93-evk/include/board_memorymap.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/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/arm64/imx9/imx93-evk/scripts/Make.defs b/boards/arm64/imx9/imx93-evk/scripts/Make.defs index 670686a3eb8..a193b61bab9 100644 --- a/boards/arm64/imx9/imx93-evk/scripts/Make.defs +++ b/boards/arm64/imx9/imx93-evk/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/imx9/imx93-evk/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/arm64/imx9/imx93-evk/scripts/dramboot.ld b/boards/arm64/imx9/imx93-evk/scripts/dramboot.ld index f437d8d1374..a4da84b0deb 100644 --- a/boards/arm64/imx9/imx93-evk/scripts/dramboot.ld +++ b/boards/arm64/imx9/imx93-evk/scripts/dramboot.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/scripts/dramboot.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/arm64/imx9/imx93-evk/scripts/ocramboot.ld b/boards/arm64/imx9/imx93-evk/scripts/ocramboot.ld index f87d22f8cd0..245619ee6b4 100644 --- a/boards/arm64/imx9/imx93-evk/scripts/ocramboot.ld +++ b/boards/arm64/imx9/imx93-evk/scripts/ocramboot.ld @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/scripts/ocramboot.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/arm64/imx9/imx93-evk/src/Makefile b/boards/arm64/imx9/imx93-evk/src/Makefile index 4a6efc427d0..84c12c8f698 100644 --- a/boards/arm64/imx9/imx93-evk/src/Makefile +++ b/boards/arm64/imx9/imx93-evk/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/arm64/imx9/imx93-evk/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/arm64/imx9/imx93-evk/src/imx93-evk.h b/boards/arm64/imx9/imx93-evk/src/imx93-evk.h index f8125289f45..d0584c113d5 100644 --- a/boards/arm64/imx9/imx93-evk/src/imx93-evk.h +++ b/boards/arm64/imx9/imx93-evk/src/imx93-evk.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/src/imx93-evk.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/arm64/imx9/imx93-evk/src/imx9_appinit.c b/boards/arm64/imx9/imx93-evk/src/imx9_appinit.c index 289395145ce..39d4132d3c8 100644 --- a/boards/arm64/imx9/imx93-evk/src/imx9_appinit.c +++ b/boards/arm64/imx9/imx93-evk/src/imx9_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/src/imx9_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/arm64/imx9/imx93-evk/src/imx9_boardinit.c b/boards/arm64/imx9/imx93-evk/src/imx9_boardinit.c index 876b9014de6..3bf91acfb78 100644 --- a/boards/arm64/imx9/imx93-evk/src/imx9_boardinit.c +++ b/boards/arm64/imx9/imx93-evk/src/imx9_boardinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/src/imx9_boardinit.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/arm64/imx9/imx93-evk/src/imx9_bringup.c b/boards/arm64/imx9/imx93-evk/src/imx9_bringup.c index 57d2887c98c..a4c28c5bc8a 100644 --- a/boards/arm64/imx9/imx93-evk/src/imx9_bringup.c +++ b/boards/arm64/imx9/imx93-evk/src/imx9_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/src/imx9_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/arm64/imx9/imx93-evk/src/imx9_i2c.c b/boards/arm64/imx9/imx93-evk/src/imx9_i2c.c index 8b687e9a0c2..d86c3ba8351 100644 --- a/boards/arm64/imx9/imx93-evk/src/imx9_i2c.c +++ b/boards/arm64/imx9/imx93-evk/src/imx9_i2c.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/src/imx9_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/arm64/imx9/imx93-evk/src/imx9_pwm.c b/boards/arm64/imx9/imx93-evk/src/imx9_pwm.c index 494331617ad..fa25ad8cf55 100644 --- a/boards/arm64/imx9/imx93-evk/src/imx9_pwm.c +++ b/boards/arm64/imx9/imx93-evk/src/imx9_pwm.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/src/imx9_pwm.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/arm64/imx9/imx93-evk/src/imx9_spi.c b/boards/arm64/imx9/imx93-evk/src/imx9_spi.c index ffa9fd118f1..6ff3434cbfb 100644 --- a/boards/arm64/imx9/imx93-evk/src/imx9_spi.c +++ b/boards/arm64/imx9/imx93-evk/src/imx9_spi.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/src/imx9_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/arm64/imx9/imx93-evk/src/imx9_usdhc.c b/boards/arm64/imx9/imx93-evk/src/imx9_usdhc.c index 54116fa795d..2a9e3a87213 100644 --- a/boards/arm64/imx9/imx93-evk/src/imx9_usdhc.c +++ b/boards/arm64/imx9/imx93-evk/src/imx9_usdhc.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/arm64/imx9/imx93-evk/src/imx9_usdhc.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