From d25fd647e7f36bbf502428e75b83c947fc85ddd7 Mon Sep 17 00:00:00 2001
From: kYc0o <fco.ja.ac@gmail.com>
Date: Tue, 17 Oct 2017 16:41:55 +0200
Subject: [PATCH] cpu/cortexm_common/ldscripts: add common linker script for
 cortexm family

---
 cpu/cortexm_common/ldscripts/cortexm.ld | 29 +++++++++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 cpu/cortexm_common/ldscripts/cortexm.ld

diff --git a/cpu/cortexm_common/ldscripts/cortexm.ld b/cpu/cortexm_common/ldscripts/cortexm.ld
new file mode 100644
index 0000000000..62c933a790
--- /dev/null
+++ b/cpu/cortexm_common/ldscripts/cortexm.ld
@@ -0,0 +1,29 @@
+/*
+ * Copyright (C) 2017 Inria
+ *
+ * This file is subject to the terms and conditions of the GNU Lesser
+ * General Public License v2.1. See the file LICENSE in the top level
+ * directory for more details.
+ */
+
+/**
+ * @addtogroup      cpu_cortexm_common
+ * @{
+ *
+ * @file
+ * @brief           Memory definitions for the Cortex-M family
+ *
+ * @author          Francisco Acosta <francisco.acosta@inria.fr>
+ *
+ * @}
+ */
+
+_boot_offset = DEFINED( _rom_offset ) ? _rom_offset : 0x0 ;
+
+MEMORY
+{
+    rom (rx)    : ORIGIN = _rom_start_addr + _boot_offset, LENGTH = _rom_length - _boot_offset
+    ram (rwx)   : ORIGIN = _ram_start_addr,                LENGTH = _ram_length
+}
+
+INCLUDE cortexm_base.ld
-- 
GitLab