aboutsummaryrefslogtreecommitdiff
path: root/src/rtos/Makefile.am
diff options
context:
space:
mode:
authorMatthias Blaicher <matthias@blaicher.com>2012-10-05 18:56:04 +0200
committerPeter Stuge <peter@stuge.se>2012-10-16 06:32:03 +0000
commit14e12c3969fef1a4649de1db0b0fac47e5295708 (patch)
treeea5e0712be1f54ac54824d9f865af6171776772c /src/rtos/Makefile.am
parentd8e4a7370f439a5feb3948d5ed33f0884b8109f3 (diff)
downloadriscv-openocd-14e12c3969fef1a4649de1db0b0fac47e5295708.zip
riscv-openocd-14e12c3969fef1a4649de1db0b0fac47e5295708.tar.gz
riscv-openocd-14e12c3969fef1a4649de1db0b0fac47e5295708.tar.bz2
rtos: Add ChibiOS/RT support
This patch adds ChibiOS/RT support. This patch requires at least ChibiOS/RT development version starting from SVN revision 4734. Note, that the Thread structures depend not only on the target but also on the ChibiOS configuration at build time. To correct this ChibiOS includes a new "memory signature" which specifies the offsets. Special thanks go to Peter Stuge and Spencer Oliver for their continous input and feedback to this patch. Change-Id: I842bf7ba6c2309a4efe93d29ea6cd0784a8b22a3 Signed-off-by: Matthias Blaicher <matthias@blaicher.com> Reviewed-on: http://openocd.zylin.com/901 Tested-by: jenkins Reviewed-by: Peter Stuge <peter@stuge.se>
Diffstat (limited to 'src/rtos/Makefile.am')
-rw-r--r--src/rtos/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rtos/Makefile.am b/src/rtos/Makefile.am
index 1aa0c53..77d274c 100644
--- a/src/rtos/Makefile.am
+++ b/src/rtos/Makefile.am
@@ -22,8 +22,8 @@ include $(top_srcdir)/common.mk
METASOURCES = AUTO
noinst_LTLIBRARIES = librtos.la
-noinst_HEADERS = rtos.h rtos_standard_stackings.h rtos_ecos_stackings.h linux_header.h
-librtos_la_SOURCES = rtos.c rtos_standard_stackings.c rtos_ecos_stackings.c FreeRTOS.c ThreadX.c eCos.c linux.c
+noinst_HEADERS = rtos.h rtos_standard_stackings.h rtos_ecos_stackings.h linux_header.h rtos_chibios_stackings.h
+librtos_la_SOURCES = rtos.c rtos_standard_stackings.c rtos_ecos_stackings.c rtos_chibios_stackings.c FreeRTOS.c ThreadX.c eCos.c linux.c ChibiOS.c
librtos_la_CFLAGS =
if IS_MINGW