From c444e59abcf3edee6478655460ce665d97ab10bc Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 12 Nov 2024 09:10:19 +0100 Subject: [PATCH] boards/renesas/rx65n: 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 --- .../rx65n/rx65n-grrose/include/board.h | 2 ++ .../rx65n/rx65n-grrose/include/rx65n_gpio.h | 2 ++ .../rx65n/rx65n-grrose/scripts/Make.defs | 2 ++ .../rx65n-grrose/scripts/linker_script.ld | 22 +++++++++++++++++++ .../renesas/rx65n/rx65n-grrose/src/Makefile | 2 ++ .../rx65n/rx65n-grrose/src/rx65n_appinit.c | 2 ++ .../rx65n/rx65n-grrose/src/rx65n_bringup.c | 2 ++ .../rx65n/rx65n-grrose/src/rx65n_gpio.c | 2 ++ .../rx65n/rx65n-grrose/src/rx65n_grrose.h | 2 ++ .../rx65n/rx65n-grrose/src/rx65n_sbram.c | 2 ++ .../rx65n/rx65n-rsk1mb/include/board.h | 2 ++ .../rx65n/rx65n-rsk1mb/include/rx65n_gpio.h | 2 ++ .../rx65n/rx65n-rsk1mb/scripts/Make.defs | 2 ++ .../rx65n-rsk1mb/scripts/linker_script.ld | 22 +++++++++++++++++++ .../renesas/rx65n/rx65n-rsk1mb/src/Makefile | 2 ++ .../rx65n/rx65n-rsk1mb/src/rx65n_gpio.c | 2 ++ .../rx65n/rx65n-rsk1mb/src/rx65n_main.c | 2 ++ .../rx65n/rx65n-rsk2mb/include/board.h | 2 ++ .../rx65n/rx65n-rsk2mb/include/rx65n_gpio.h | 2 ++ .../rx65n/rx65n-rsk2mb/scripts/Make.defs | 2 ++ .../rx65n-rsk2mb/scripts/linker_script.ld | 22 +++++++++++++++++++ .../renesas/rx65n/rx65n-rsk2mb/src/Makefile | 2 ++ .../rx65n/rx65n-rsk2mb/src/rx65n_appinit.c | 2 ++ .../rx65n/rx65n-rsk2mb/src/rx65n_bringup.c | 2 ++ .../rx65n/rx65n-rsk2mb/src/rx65n_gpio.c | 2 ++ .../rx65n/rx65n-rsk2mb/src/rx65n_rsk2mb.h | 2 ++ .../rx65n/rx65n-rsk2mb/src/rx65n_sbram.c | 2 ++ boards/renesas/rx65n/rx65n/include/board.h | 2 ++ boards/renesas/rx65n/rx65n/scripts/Make.defs | 2 ++ .../rx65n/rx65n/scripts/linker_script.ld | 22 +++++++++++++++++++ boards/renesas/rx65n/rx65n/src/Makefile | 2 ++ boards/renesas/rx65n/rx65n/src/rx65n_main.c | 2 ++ 32 files changed, 144 insertions(+) diff --git a/boards/renesas/rx65n/rx65n-grrose/include/board.h b/boards/renesas/rx65n/rx65n-grrose/include/board.h index 8b1aad632f..0b0c4cef8a 100644 --- a/boards/renesas/rx65n/rx65n-grrose/include/board.h +++ b/boards/renesas/rx65n/rx65n-grrose/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-grrose/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/renesas/rx65n/rx65n-grrose/include/rx65n_gpio.h b/boards/renesas/rx65n/rx65n-grrose/include/rx65n_gpio.h index e369fbb497..7992d532d1 100644 --- a/boards/renesas/rx65n/rx65n-grrose/include/rx65n_gpio.h +++ b/boards/renesas/rx65n/rx65n-grrose/include/rx65n_gpio.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-grrose/include/rx65n_gpio.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/renesas/rx65n/rx65n-grrose/scripts/Make.defs b/boards/renesas/rx65n/rx65n-grrose/scripts/Make.defs index ee1de7af73..2e8c829410 100644 --- a/boards/renesas/rx65n/rx65n-grrose/scripts/Make.defs +++ b/boards/renesas/rx65n/rx65n-grrose/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################## # boards/renesas/rx65n/rx65n-grrose/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/renesas/rx65n/rx65n-grrose/scripts/linker_script.ld b/boards/renesas/rx65n/rx65n-grrose/scripts/linker_script.ld index abacece525..fcb8351937 100644 --- a/boards/renesas/rx65n/rx65n-grrose/scripts/linker_script.ld +++ b/boards/renesas/rx65n/rx65n-grrose/scripts/linker_script.ld @@ -1,3 +1,25 @@ +/**************************************************************************** + * boards/renesas/rx65n/rx65n-grrose/scripts/linker_script.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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + MEMORY { /* RSK-RX65N-1MB */ diff --git a/boards/renesas/rx65n/rx65n-grrose/src/Makefile b/boards/renesas/rx65n/rx65n-grrose/src/Makefile index d0806ddaec..a20bfbd386 100644 --- a/boards/renesas/rx65n/rx65n-grrose/src/Makefile +++ b/boards/renesas/rx65n/rx65n-grrose/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/renesas/rx65n/rx65n-grrose/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/renesas/rx65n/rx65n-grrose/src/rx65n_appinit.c b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_appinit.c index a26b2abf84..5fb04586b1 100644 --- a/boards/renesas/rx65n/rx65n-grrose/src/rx65n_appinit.c +++ b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-grrose/src/rx65n_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/renesas/rx65n/rx65n-grrose/src/rx65n_bringup.c b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_bringup.c index ec65f351ba..23c490a4b9 100644 --- a/boards/renesas/rx65n/rx65n-grrose/src/rx65n_bringup.c +++ b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-grrose/src/rx65n_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/renesas/rx65n/rx65n-grrose/src/rx65n_gpio.c b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_gpio.c index 60a373075f..ad3563ce80 100644 --- a/boards/renesas/rx65n/rx65n-grrose/src/rx65n_gpio.c +++ b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-grrose/src/rx65n_gpio.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/renesas/rx65n/rx65n-grrose/src/rx65n_grrose.h b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_grrose.h index 7391c58e7a..55391ef6d2 100644 --- a/boards/renesas/rx65n/rx65n-grrose/src/rx65n_grrose.h +++ b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_grrose.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-grrose/src/rx65n_grrose.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/renesas/rx65n/rx65n-grrose/src/rx65n_sbram.c b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_sbram.c index 601e228567..5b780012f2 100644 --- a/boards/renesas/rx65n/rx65n-grrose/src/rx65n_sbram.c +++ b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_sbram.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-grrose/src/rx65n_sbram.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/renesas/rx65n/rx65n-rsk1mb/include/board.h b/boards/renesas/rx65n/rx65n-rsk1mb/include/board.h index 8c1d085903..83ae90fe4b 100644 --- a/boards/renesas/rx65n/rx65n-rsk1mb/include/board.h +++ b/boards/renesas/rx65n/rx65n-rsk1mb/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk1mb/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/renesas/rx65n/rx65n-rsk1mb/include/rx65n_gpio.h b/boards/renesas/rx65n/rx65n-rsk1mb/include/rx65n_gpio.h index c45fd80439..f53aeec7de 100644 --- a/boards/renesas/rx65n/rx65n-rsk1mb/include/rx65n_gpio.h +++ b/boards/renesas/rx65n/rx65n-rsk1mb/include/rx65n_gpio.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk1mb/include/rx65n_gpio.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/renesas/rx65n/rx65n-rsk1mb/scripts/Make.defs b/boards/renesas/rx65n/rx65n-rsk1mb/scripts/Make.defs index bd34503a35..2fa4ec830b 100644 --- a/boards/renesas/rx65n/rx65n-rsk1mb/scripts/Make.defs +++ b/boards/renesas/rx65n/rx65n-rsk1mb/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################## # boards/renesas/rx65n/rx65n-rsk1mb/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/renesas/rx65n/rx65n-rsk1mb/scripts/linker_script.ld b/boards/renesas/rx65n/rx65n-rsk1mb/scripts/linker_script.ld index cd125920d3..571b8d0b60 100644 --- a/boards/renesas/rx65n/rx65n-rsk1mb/scripts/linker_script.ld +++ b/boards/renesas/rx65n/rx65n-rsk1mb/scripts/linker_script.ld @@ -1,3 +1,25 @@ +/**************************************************************************** + * boards/renesas/rx65n/rx65n-rsk1mb/scripts/linker_script.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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + MEMORY { /* RSK-RX65N-1MB */ diff --git a/boards/renesas/rx65n/rx65n-rsk1mb/src/Makefile b/boards/renesas/rx65n/rx65n-rsk1mb/src/Makefile index dedf0a6d74..e065ba36c5 100644 --- a/boards/renesas/rx65n/rx65n-rsk1mb/src/Makefile +++ b/boards/renesas/rx65n/rx65n-rsk1mb/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/renesas/rx65n/rx65n-rsk1mb/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/renesas/rx65n/rx65n-rsk1mb/src/rx65n_gpio.c b/boards/renesas/rx65n/rx65n-rsk1mb/src/rx65n_gpio.c index 60c33307cb..f15eb0ccb0 100644 --- a/boards/renesas/rx65n/rx65n-rsk1mb/src/rx65n_gpio.c +++ b/boards/renesas/rx65n/rx65n-rsk1mb/src/rx65n_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk1mb/src/rx65n_gpio.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/renesas/rx65n/rx65n-rsk1mb/src/rx65n_main.c b/boards/renesas/rx65n/rx65n-rsk1mb/src/rx65n_main.c index f030932ef6..b48b917d4d 100644 --- a/boards/renesas/rx65n/rx65n-rsk1mb/src/rx65n_main.c +++ b/boards/renesas/rx65n/rx65n-rsk1mb/src/rx65n_main.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk1mb/src/rx65n_main.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/renesas/rx65n/rx65n-rsk2mb/include/board.h b/boards/renesas/rx65n/rx65n-rsk2mb/include/board.h index 6d2237b103..2dbc8cfcae 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/include/board.h +++ b/boards/renesas/rx65n/rx65n-rsk2mb/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk2mb/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/renesas/rx65n/rx65n-rsk2mb/include/rx65n_gpio.h b/boards/renesas/rx65n/rx65n-rsk2mb/include/rx65n_gpio.h index f7b0b9374f..15763490ec 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/include/rx65n_gpio.h +++ b/boards/renesas/rx65n/rx65n-rsk2mb/include/rx65n_gpio.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk2mb/include/rx65n_gpio.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/renesas/rx65n/rx65n-rsk2mb/scripts/Make.defs b/boards/renesas/rx65n/rx65n-rsk2mb/scripts/Make.defs index bfce3dac3f..1e332e6f33 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/scripts/Make.defs +++ b/boards/renesas/rx65n/rx65n-rsk2mb/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################## # boards/renesas/rx65n/rx65n-rsk2mb/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/renesas/rx65n/rx65n-rsk2mb/scripts/linker_script.ld b/boards/renesas/rx65n/rx65n-rsk2mb/scripts/linker_script.ld index 6db40f54af..ff94a9239a 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/scripts/linker_script.ld +++ b/boards/renesas/rx65n/rx65n-rsk2mb/scripts/linker_script.ld @@ -1,3 +1,25 @@ +/**************************************************************************** + * boards/renesas/rx65n/rx65n-rsk2mb/scripts/linker_script.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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + MEMORY { /* RSK-RX65N-1MB */ diff --git a/boards/renesas/rx65n/rx65n-rsk2mb/src/Makefile b/boards/renesas/rx65n/rx65n-rsk2mb/src/Makefile index e899fcc9d2..11ab5c5517 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/src/Makefile +++ b/boards/renesas/rx65n/rx65n-rsk2mb/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/renesas/rx65n/rx65n-rsk2mb/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/renesas/rx65n/rx65n-rsk2mb/src/rx65n_appinit.c b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_appinit.c index 212e827a9e..9f68f6e174 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_appinit.c +++ b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_appinit.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_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/renesas/rx65n/rx65n-rsk2mb/src/rx65n_bringup.c b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_bringup.c index 4c251aa97a..bead9393d7 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_bringup.c +++ b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_bringup.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_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/renesas/rx65n/rx65n-rsk2mb/src/rx65n_gpio.c b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_gpio.c index bd374102e5..57fc10389b 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_gpio.c +++ b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_gpio.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_gpio.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/renesas/rx65n/rx65n-rsk2mb/src/rx65n_rsk2mb.h b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_rsk2mb.h index 14aa391f76..c3e69b36ac 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_rsk2mb.h +++ b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_rsk2mb.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_rsk2mb.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/renesas/rx65n/rx65n-rsk2mb/src/rx65n_sbram.c b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_sbram.c index 1925632a4b..6d8ca733d5 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_sbram.c +++ b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_sbram.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_sbram.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/renesas/rx65n/rx65n/include/board.h b/boards/renesas/rx65n/rx65n/include/board.h index b07dbbfaa5..8b7bb0e36f 100644 --- a/boards/renesas/rx65n/rx65n/include/board.h +++ b/boards/renesas/rx65n/rx65n/include/board.h @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n/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/renesas/rx65n/rx65n/scripts/Make.defs b/boards/renesas/rx65n/rx65n/scripts/Make.defs index acc92fd4a2..2bc971e7cc 100644 --- a/boards/renesas/rx65n/rx65n/scripts/Make.defs +++ b/boards/renesas/rx65n/rx65n/scripts/Make.defs @@ -1,6 +1,8 @@ ############################################################################## # boards/renesas/rx65n/rx65n/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/renesas/rx65n/rx65n/scripts/linker_script.ld b/boards/renesas/rx65n/rx65n/scripts/linker_script.ld index ba69dbc221..19dac533d4 100644 --- a/boards/renesas/rx65n/rx65n/scripts/linker_script.ld +++ b/boards/renesas/rx65n/rx65n/scripts/linker_script.ld @@ -1,3 +1,25 @@ +/**************************************************************************** + * boards/renesas/rx65n/rx65n/scripts/linker_script.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 + * ASF licenses this file to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance with the + * License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * + ****************************************************************************/ + MEMORY { /* RSK-RX65N-1MB */ diff --git a/boards/renesas/rx65n/rx65n/src/Makefile b/boards/renesas/rx65n/rx65n/src/Makefile index 11d71b02cc..0cdd1f61bf 100644 --- a/boards/renesas/rx65n/rx65n/src/Makefile +++ b/boards/renesas/rx65n/rx65n/src/Makefile @@ -1,6 +1,8 @@ ############################################################################ # boards/renesas/rx65n/rx65n/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/renesas/rx65n/rx65n/src/rx65n_main.c b/boards/renesas/rx65n/rx65n/src/rx65n_main.c index 699a8a00c4..18eac9d4c8 100644 --- a/boards/renesas/rx65n/rx65n/src/rx65n_main.c +++ b/boards/renesas/rx65n/rx65n/src/rx65n_main.c @@ -1,6 +1,8 @@ /**************************************************************************** * boards/renesas/rx65n/rx65n/src/rx65n_main.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