aboutsummaryrefslogtreecommitdiffstats
path: root/src/atsam
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-08-22 13:18:24 -0400
committerKevin O'Connor <kevin@koconnor.net>2019-08-22 13:18:24 -0400
commitcaeb610bb911291f8ca28129b6f5ed1b494f0fec (patch)
tree51baa909e07c3cd4281530153a628f6ac6e748fc /src/atsam
parentff7be3e0261e844c81ae1d4c3f016c0b9dd75b77 (diff)
downloadkutter-caeb610bb911291f8ca28129b6f5ed1b494f0fec.tar.gz
kutter-caeb610bb911291f8ca28129b6f5ed1b494f0fec.tar.xz
kutter-caeb610bb911291f8ca28129b6f5ed1b494f0fec.zip
armcm_link: Rename armcm_boot.lds.S to armcm_link.lds.S
Rename the linker script so the build does not have any conflicts with the armcm_boot.d dependency file. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/atsam')
-rw-r--r--src/atsam/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/atsam/Makefile b/src/atsam/Makefile
index 1c2dc378..35b62488 100644
--- a/src/atsam/Makefile
+++ b/src/atsam/Makefile
@@ -19,8 +19,8 @@ CFLAGS-$(CONFIG_MACH_SAM4E) += -Ilib/sam4e/include
CFLAGS += $(CFLAGS-y) -D__$(MCU)__ -mthumb -Ilib/cmsis-core
CFLAGS_klipper.elf += --specs=nano.specs --specs=nosys.specs
-CFLAGS_klipper.elf += -T $(OUT)src/generic/armcm_boot.ld
-$(OUT)klipper.elf: $(OUT)src/generic/armcm_boot.ld
+CFLAGS_klipper.elf += -T $(OUT)src/generic/armcm_link.ld
+$(OUT)klipper.elf: $(OUT)src/generic/armcm_link.ld
# Add source files
src-y += atsam/main.c atsam/gpio.c atsam/i2c.c atsam/spi.c atsam/hard_pwm.c