1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

cpu/kinetis_common: Use a different module name to prevent linker races in Travis

This commit is contained in:
Joakim Nohlgård 2016-02-12 00:46:49 +01:00
parent 1f9f6d8548
commit 3db00667b7
2 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,9 @@ export LINKFLAGS += -L$(RIOTCPU)/kinetis_common/ldscripts
# add the CPU specific code for the linker
export UNDEF += $(BINDIR)kinetis_common/fcfield.o
# include kinetis common periph drivers
export USEMODULE += kinetis_common_periph
# Define a recipe to build the watchdog disable binary, used when flashing
$(RIOTCPU)/kinetis_common/dist/wdog-disable.bin: $(RIOTCPU)/kinetis_common/dist/wdog-disable.s
$(AD)$(MAKE) -C $(RIOTCPU)/kinetis_common/dist/ $(notdir $@)

View File

@ -1,3 +1,3 @@
MODULE = periph
MODULE = kinetis_common_periph
include $(RIOTBASE)/Makefile.base