From 91c11ea469c7613d2b474149c48457dcc082ebed Mon Sep 17 00:00:00 2001 From: Marc Schink Date: Wed, 12 Jun 2024 13:34:48 +0200 Subject: [PATCH] rtos: Use lower case filenames Change-Id: I309c7a649e33f516e28037fef2dc6e574d48c000 Signed-off-by: Marc Schink Reviewed-on: https://review.openocd.org/c/openocd/+/8334 Tested-by: jenkins Reviewed-by: Tomas Vanek Reviewed-by: Antonio Borneo --- src/rtos/Makefile.am | 10 +++++----- src/rtos/{eCos.c => ecos.c} | 0 src/rtos/{embKernel.c => embkernel.c} | 0 src/rtos/{FreeRTOS.c => freertos.c} | 0 src/rtos/{ThreadX.c => threadx.c} | 0 src/rtos/{uCOS-III.c => ucos_iii.c} | 0 6 files changed, 5 insertions(+), 5 deletions(-) rename src/rtos/{eCos.c => ecos.c} (100%) rename src/rtos/{embKernel.c => embkernel.c} (100%) rename src/rtos/{FreeRTOS.c => freertos.c} (100%) rename src/rtos/{ThreadX.c => threadx.c} (100%) rename src/rtos/{uCOS-III.c => ucos_iii.c} (100%) diff --git a/src/rtos/Makefile.am b/src/rtos/Makefile.am index 0796910de..5267fea24 100644 --- a/src/rtos/Makefile.am +++ b/src/rtos/Makefile.am @@ -11,15 +11,15 @@ noinst_LTLIBRARIES += %D%/librtos.la %D%/rtos_ucos_iii_stackings.c \ %D%/rtos_riot_stackings.c \ %D%/rtos_nuttx_stackings.c \ - %D%/FreeRTOS.c \ - %D%/ThreadX.c \ - %D%/eCos.c \ + %D%/freertos.c \ + %D%/threadx.c \ + %D%/ecos.c \ %D%/linux.c \ %D%/chibios.c \ %D%/chromium-ec.c \ - %D%/embKernel.c \ + %D%/embkernel.c \ %D%/mqx.c \ - %D%/uCOS-III.c \ + %D%/ucos_iii.c \ %D%/nuttx.c \ %D%/rtkernel.c \ %D%/hwthread.c \ diff --git a/src/rtos/eCos.c b/src/rtos/ecos.c similarity index 100% rename from src/rtos/eCos.c rename to src/rtos/ecos.c diff --git a/src/rtos/embKernel.c b/src/rtos/embkernel.c similarity index 100% rename from src/rtos/embKernel.c rename to src/rtos/embkernel.c diff --git a/src/rtos/FreeRTOS.c b/src/rtos/freertos.c similarity index 100% rename from src/rtos/FreeRTOS.c rename to src/rtos/freertos.c diff --git a/src/rtos/ThreadX.c b/src/rtos/threadx.c similarity index 100% rename from src/rtos/ThreadX.c rename to src/rtos/threadx.c diff --git a/src/rtos/uCOS-III.c b/src/rtos/ucos_iii.c similarity index 100% rename from src/rtos/uCOS-III.c rename to src/rtos/ucos_iii.c