You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2021/07/13 17:24:52 UTC

[incubator-nuttx] branch master updated: boards/xtensa/esp32: Add license headers to the linker script files and correct some old names.

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new e2705cd  boards/xtensa/esp32: Add license headers to the linker script files and correct some old names.
e2705cd is described below

commit e2705cd86c5c33fe9ce42dd49182cd5a001eb40b
Author: Abdelatif Guettouche <ab...@espressif.com>
AuthorDate: Tue Jul 13 15:25:01 2021 +0200

    boards/xtensa/esp32: Add license headers to the linker script files and
    correct some old names.
    
    Signed-off-by: Abdelatif Guettouche <ab...@espressif.com>
---
 boards/xtensa/esp32/esp32-devkitc/scripts/esp32.ld | 16 +++++++++++++++
 .../esp32/esp32-devkitc/scripts/esp32.template.ld  | 23 ++++++++++++++++++++--
 .../esp32/esp32-ethernet-kit/scripts/esp32.ld      | 16 +++++++++++++++
 .../esp32-ethernet-kit/scripts/esp32.template.ld   | 23 ++++++++++++++++++++--
 .../xtensa/esp32/esp32-wrover-kit/scripts/esp32.ld | 16 +++++++++++++++
 .../esp32-wrover-kit/scripts/esp32.template.ld     | 23 ++++++++++++++++++++--
 6 files changed, 111 insertions(+), 6 deletions(-)

diff --git a/boards/xtensa/esp32/esp32-devkitc/scripts/esp32.ld b/boards/xtensa/esp32/esp32-devkitc/scripts/esp32.ld
index 8a5c13a..8b21d4a 100644
--- a/boards/xtensa/esp32/esp32-devkitc/scripts/esp32.ld
+++ b/boards/xtensa/esp32/esp32-devkitc/scripts/esp32.ld
@@ -1,5 +1,21 @@
 /****************************************************************************
  * boards/xtensa/esp32/esp32-devkitc/scripts/esp32.ld
+ *
+ * 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.
+ *
  ****************************************************************************/
 
 /* Default entry point: */
diff --git a/boards/xtensa/esp32/esp32-devkitc/scripts/esp32.template.ld b/boards/xtensa/esp32/esp32-devkitc/scripts/esp32.template.ld
index ac974b3..0940cd0 100644
--- a/boards/xtensa/esp32/esp32-devkitc/scripts/esp32.template.ld
+++ b/boards/xtensa/esp32/esp32-devkitc/scripts/esp32.template.ld
@@ -1,15 +1,34 @@
 /****************************************************************************
  * boards/xtensa/esp32/esp32-devkitc/scripts/esp32.template.ld
+ *
+ * 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.
+ *
+ ****************************************************************************/
+
+/****************************************************************************
  * ESP32 Linker Script Memory Layout
  *
  * This file describes the memory layout (memory blocks) as virtual
  * memory addresses.
  *
- * esp32.common.ld contains output sections to link compiler output
+ * esp32.ld contains output sections to link compiler output
  * into these memory blocks.
  *
  * NOTE: That this is not the actual linker script but rather a "template"
- * for the elf32_out.ld script.  This template script is passed through
+ * for the esp32_out.ld script.  This template script is passed through
  * the C preprocessor to include selected configuration options.
  *
  ****************************************************************************/
diff --git a/boards/xtensa/esp32/esp32-ethernet-kit/scripts/esp32.ld b/boards/xtensa/esp32/esp32-ethernet-kit/scripts/esp32.ld
index 4667cbb..5e61c78 100644
--- a/boards/xtensa/esp32/esp32-ethernet-kit/scripts/esp32.ld
+++ b/boards/xtensa/esp32/esp32-ethernet-kit/scripts/esp32.ld
@@ -1,5 +1,21 @@
 /****************************************************************************
  * boards/xtensa/esp32/esp32-ethernet-kit/scripts/esp32.ld
+ *
+ * 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.
+ *
  ****************************************************************************/
 
 /* Default entry point: */
diff --git a/boards/xtensa/esp32/esp32-ethernet-kit/scripts/esp32.template.ld b/boards/xtensa/esp32/esp32-ethernet-kit/scripts/esp32.template.ld
index fa3459a..aa72a04 100644
--- a/boards/xtensa/esp32/esp32-ethernet-kit/scripts/esp32.template.ld
+++ b/boards/xtensa/esp32/esp32-ethernet-kit/scripts/esp32.template.ld
@@ -1,15 +1,34 @@
 /****************************************************************************
  * boards/xtensa/esp32/esp32-ethernet-kit/scripts/esp32.template.ld
+ *
+ * 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.
+ *
+ ****************************************************************************/
+
+/****************************************************************************
  * ESP32 Linker Script Memory Layout
  *
  * This file describes the memory layout (memory blocks) as virtual
  * memory addresses.
  *
- * esp32.common.ld contains output sections to link compiler output
+ * esp32.ld contains output sections to link compiler output
  * into these memory blocks.
  *
  * NOTE: That this is not the actual linker script but rather a "template"
- * for the elf32_out.ld script.  This template script is passed through
+ * for the esp32_out.ld script.  This template script is passed through
  * the C preprocessor to include selected configuration options.
  *
  ****************************************************************************/
diff --git a/boards/xtensa/esp32/esp32-wrover-kit/scripts/esp32.ld b/boards/xtensa/esp32/esp32-wrover-kit/scripts/esp32.ld
index 705815b..be4e1a1 100644
--- a/boards/xtensa/esp32/esp32-wrover-kit/scripts/esp32.ld
+++ b/boards/xtensa/esp32/esp32-wrover-kit/scripts/esp32.ld
@@ -1,5 +1,21 @@
 /****************************************************************************
  * boards/xtensa/esp32/esp32-wrover-kit/scripts/esp32.ld
+ *
+ * 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.
+ *
  ****************************************************************************/
 
 /* Default entry point: */
diff --git a/boards/xtensa/esp32/esp32-wrover-kit/scripts/esp32.template.ld b/boards/xtensa/esp32/esp32-wrover-kit/scripts/esp32.template.ld
index 8e5d98c..e370d94 100644
--- a/boards/xtensa/esp32/esp32-wrover-kit/scripts/esp32.template.ld
+++ b/boards/xtensa/esp32/esp32-wrover-kit/scripts/esp32.template.ld
@@ -1,15 +1,34 @@
 /****************************************************************************
  * boards/xtensa/esp32/esp32-wrover-kit/scripts/esp32.template.ld
+ *
+ * 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.
+ *
+ ****************************************************************************/
+
+/****************************************************************************
  * ESP32 Linker Script Memory Layout
  *
  * This file describes the memory layout (memory blocks) as virtual
  * memory addresses.
  *
- * esp32.common.ld contains output sections to link compiler output
+ * esp32.ld contains output sections to link compiler output
  * into these memory blocks.
  *
  * NOTE: That this is not the actual linker script but rather a "template"
- * for the elf32_out.ld script.  This template script is passed through
+ * for the esp32_out.ld script.  This template script is passed through
  * the C preprocessor to include selected configuration options.
  *
  ****************************************************************************/