diff options
author | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-01-14 21:26:47 +0000 |
---|---|---|
committer | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-01-14 21:26:47 +0000 |
commit | 9094500ba60b677a9c93e970ec741d2fc8f0c89a (patch) | |
tree | 95ac7080060a8c8705f65e6b411d51da6b3a3a42 /testing/examples/ledtest-imx31pdk/ldscript | |
parent | 2d43ea1a45882e53370c7b4abcdf064a2e5f80b3 (diff) | |
download | openocd_libswd-9094500ba60b677a9c93e970ec741d2fc8f0c89a.tar.gz openocd_libswd-9094500ba60b677a9c93e970ec741d2fc8f0c89a.tar.bz2 openocd_libswd-9094500ba60b677a9c93e970ec741d2fc8f0c89a.tar.xz openocd_libswd-9094500ba60b677a9c93e970ec741d2fc8f0c89a.zip |
- add missing svn props and fix incorrect line endings from last commit
git-svn-id: svn://svn.berlios.de/openocd/trunk@1321 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'testing/examples/ledtest-imx31pdk/ldscript')
-rw-r--r-- | testing/examples/ledtest-imx31pdk/ldscript | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/testing/examples/ledtest-imx31pdk/ldscript b/testing/examples/ledtest-imx31pdk/ldscript index 1baea1ef..d6f60d6f 100644 --- a/testing/examples/ledtest-imx31pdk/ldscript +++ b/testing/examples/ledtest-imx31pdk/ldscript @@ -1,18 +1,18 @@ -SECTIONS
-{
- . = 0x80000100;
- .text : { *(.text) }
- .data ALIGN(0x10): { *(.data) }
- .bss ALIGN(0x10): {
- __bss_start__ = ABSOLUTE(.);
- *(.bss)
- . += 0x100;
- }
- __bss_end__ = .;
-PROVIDE (__stack = .);
- _end = .;
- .debug_info 0 : { *(.debug_info) }
- .debug_abbrev 0 : { *(.debug_abbrev) }
- .debug_line 0 : { *(.debug_line) }
- .debug_frame 0 : { *(.debug_frame) }
-}
+SECTIONS +{ + . = 0x80000100; + .text : { *(.text) } + .data ALIGN(0x10): { *(.data) } + .bss ALIGN(0x10): { + __bss_start__ = ABSOLUTE(.); + *(.bss) + . += 0x100; + } + __bss_end__ = .; +PROVIDE (__stack = .); + _end = .; + .debug_info 0 : { *(.debug_info) } + .debug_abbrev 0 : { *(.debug_abbrev) } + .debug_line 0 : { *(.debug_line) } + .debug_frame 0 : { *(.debug_frame) } +} |