diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2011-09-07 15:32:35 -0400 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2011-09-07 23:34:23 -0400 |
commit | f2bce4d21302f50e70dc8d00fbb846748749103b (patch) | |
tree | 5c8812ae180f8bde2bfdb661eb42051ac1fb84e5 /support/ld/maple_native | |
parent | cbf9ddff5b49ab838f9e03be5331ce14bae83b22 (diff) | |
download | librambutan-f2bce4d21302f50e70dc8d00fbb846748749103b.tar.gz librambutan-f2bce4d21302f50e70dc8d00fbb846748749103b.zip |
Tidy up linker scripts.
Comment/whitespace changes only.
Diffstat (limited to 'support/ld/maple_native')
-rw-r--r-- | support/ld/maple_native/flash.ld | 3 | ||||
-rw-r--r-- | support/ld/maple_native/jtag.ld | 6 | ||||
-rw-r--r-- | support/ld/maple_native/ram.ld | 3 |
3 files changed, 5 insertions, 7 deletions
diff --git a/support/ld/maple_native/flash.ld b/support/ld/maple_native/flash.ld index e4d61d1..ad92d10 100644 --- a/support/ld/maple_native/flash.ld +++ b/support/ld/maple_native/flash.ld @@ -1,6 +1,5 @@ /* - * Linker script for STM32. - * STM32 high density chip linker script. Loads to flash with Maple bootloader + * Maple Native (STM32F103ZET6, high density) linker script for Flash builds. */ MEMORY diff --git a/support/ld/maple_native/jtag.ld b/support/ld/maple_native/jtag.ld index 2264d69..d6cf189 100644 --- a/support/ld/maple_native/jtag.ld +++ b/support/ld/maple_native/jtag.ld @@ -1,7 +1,8 @@ /* - * Linker script for STM32. - * STM32 high density chip linker script. Bare metal linker script. + * Maple Native (STM32F103ZET6, high density) linker script for JTAG + * (bare metal, no bootloader) builds. */ + MEMORY { ram (rwx) : ORIGIN = 0x20000000, LENGTH = 64K @@ -18,4 +19,3 @@ REGION_ALIAS("REGION_DATA", ram); REGION_ALIAS("REGION_BSS", ram); INCLUDE common_rom.inc - diff --git a/support/ld/maple_native/ram.ld b/support/ld/maple_native/ram.ld index c3f418f..b092e54 100644 --- a/support/ld/maple_native/ram.ld +++ b/support/ld/maple_native/ram.ld @@ -1,6 +1,5 @@ /* - * Linker script for STM32. - * STM32 high density chip linker script. Loads to RAM with Maple bootloader + * Maple Native (STM32F103ZET6, high density) linker script for RAM builds. */ MEMORY |