From a74d761ffe4a5542232d82c1bf81662fbdc470c4 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sat, 2 Nov 2019 07:17:53 +0000 Subject: [PATCH] Fixed wrong paths in NIL4. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@13150 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- os/nil/nil.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/os/nil/nil.mk b/os/nil/nil.mk index b4cc92b1a..165b0e536 100644 --- a/os/nil/nil.mk +++ b/os/nil/nil.mk @@ -15,13 +15,13 @@ CHCONF := $(strip $(shell cat $(CHCONFDIR)/chconf.h | egrep -e "\#define")) KERNSRC := ${CHIBIOS}/os/nil/src/ch.c ifneq ($(findstring CH_CFG_USE_EVENTS TRUE,$(CHCONF)),) -KERNSRC += $(CHIBIOS)/os/rt/src/chevt.c +KERNSRC += $(CHIBIOS)/os/nil/src/chevt.c endif ifneq ($(findstring CH_CFG_USE_MESSAGES TRUE,$(CHCONF)),) -KERNSRC += $(CHIBIOS)/os/rt/src/chmsg.c +KERNSRC += $(CHIBIOS)/os/nil/src/chmsg.c endif ifneq ($(findstring CH_CFG_USE_SEMAPHORES TRUE,$(CHCONF)),) -KERNSRC += $(CHIBIOS)/os/rt/src/chsem.c +KERNSRC += $(CHIBIOS)/os/nil/src/chsem.c endif else