diff options
author | isiora <none@example.com> | 2017-10-04 19:44:23 +0000 |
---|---|---|
committer | isiora <none@example.com> | 2017-10-04 19:44:23 +0000 |
commit | 945d8382d2d38cfe50cee2e9f124484520e16ff2 (patch) | |
tree | 49366eb8a4f4cd948a2523839974428a4d2bad7a /os/common | |
parent | af9964c018672a3735a7d5b4b81ff6a2e89c7e39 (diff) | |
download | ChibiOS-945d8382d2d38cfe50cee2e9f124484520e16ff2.tar.gz ChibiOS-945d8382d2d38cfe50cee2e9f124484520e16ff2.tar.bz2 ChibiOS-945d8382d2d38cfe50cee2e9f124484520e16ff2.zip |
Moved .boot section in rules.ld
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10771 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/common')
-rwxr-xr-x | os/common/startup/ARM/compilers/GCC/ld/SAMA5D2-T.ld | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/os/common/startup/ARM/compilers/GCC/ld/SAMA5D2-T.ld b/os/common/startup/ARM/compilers/GCC/ld/SAMA5D2-T.ld index 627ccc8da..aacf3aa5c 100755 --- a/os/common/startup/ARM/compilers/GCC/ld/SAMA5D2-T.ld +++ b/os/common/startup/ARM/compilers/GCC/ld/SAMA5D2-T.ld @@ -41,17 +41,3 @@ REGION_ALIAS("DATA_RAM", ram0); REGION_ALIAS("BSS_RAM", ram0);
INCLUDE rules.ld
-
-/* Override of the ENTRY
- in order to point towards boot code */
-ENTRY(Boot_Handler)
-
-/* Extending the startup section to include
- the boot code */
-SECTIONS
-{
- startup : ALIGN(16) SUBALIGN(16)
- {
- KEEP(*(.boot))
- } > flash
-}
|