diff options
author | isiora <isiora@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-09-22 10:20:20 +0000 |
---|---|---|
committer | isiora <isiora@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-09-22 10:20:20 +0000 |
commit | 72549fa9c56a405903e7c9cc1e6afc0005b1a208 (patch) | |
tree | 20cbdffe6d1da62e1e5d5c985ac5aae0e3c8ee9c /os/common | |
parent | 082f8bc38f1f1776377d9e0a602a1b3658b3905b (diff) | |
download | ChibiOS-72549fa9c56a405903e7c9cc1e6afc0005b1a208.tar.gz ChibiOS-72549fa9c56a405903e7c9cc1e6afc0005b1a208.tar.bz2 ChibiOS-72549fa9c56a405903e7c9cc1e6afc0005b1a208.zip |
Entry to Boot_Handler, boot code in startup section.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10673 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/common')
-rwxr-xr-x | os/common/startup/ARM/compilers/GCC/mk/startup_sama5d2.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/os/common/startup/ARM/compilers/GCC/mk/startup_sama5d2.mk b/os/common/startup/ARM/compilers/GCC/mk/startup_sama5d2.mk index 30b32e221..a646ca5fd 100755 --- a/os/common/startup/ARM/compilers/GCC/mk/startup_sama5d2.mk +++ b/os/common/startup/ARM/compilers/GCC/mk/startup_sama5d2.mk @@ -1,7 +1,8 @@ # List of the ChibiOS generic SAMA5D2 file.
STARTUPSRC = $(CHIBIOS)/os/common/startup/ARM/compilers/GCC/crt1.c
-STARTUPASM = $(CHIBIOS)/os/common/startup/ARM/compilers/GCC/vectors.S \
+STARTUPASM = $(CHIBIOS)/os/common/startup/ARM/devices/SAMA5D2/boot.S \
+ $(CHIBIOS)/os/common/startup/ARM/compilers/GCC/vectors.S \
$(CHIBIOS)/os/common/startup/ARM/compilers/GCC/crt0.S
STARTUPINC = ${CHIBIOS}/os/common/startup/ARM/devices/SAMA5D2
|