diff options
author | isiora <none@example.com> | 2017-10-04 19:48:31 +0000 |
---|---|---|
committer | isiora <none@example.com> | 2017-10-04 19:48:31 +0000 |
commit | d5a17024f554a75406e6dde41922d8db8ea0b0fa (patch) | |
tree | 2f5df47c90750e76e5189c13da94a5a1a4dc55fa /os | |
parent | 572bf197fa21b83b5b69d280488d73628d7f3b9a (diff) | |
download | ChibiOS-d5a17024f554a75406e6dde41922d8db8ea0b0fa.tar.gz ChibiOS-d5a17024f554a75406e6dde41922d8db8ea0b0fa.tar.bz2 ChibiOS-d5a17024f554a75406e6dde41922d8db8ea0b0fa.zip |
Moved the weak Boot_Handler in the .boot section (as .boot is in the rules.ld now)
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10773 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/common/startup/ARM/compilers/GCC/vectors.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/common/startup/ARM/compilers/GCC/vectors.S b/os/common/startup/ARM/compilers/GCC/vectors.S index 0584b4edc..3aedc58eb 100644 --- a/os/common/startup/ARM/compilers/GCC/vectors.S +++ b/os/common/startup/ARM/compilers/GCC/vectors.S @@ -95,10 +95,10 @@ _unhandled_exception: /*
* Default boot handler. Jump to Reset_Handler
*/
+ .section .boot, "ax"
.weak Boot_Handler
Boot_Handler:
- b Reset_Handler
-
+ b Reset_Handler
#endif
/** @} */
|