Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRahul Kar <118818625+kar-rahul-aws@users.noreply.github.com>2023-12-18 08:13:08 +0300
committerGitHub <noreply@github.com>2023-12-18 08:13:08 +0300
commitb0439d3283c3f46af68d4a3c02c1b40fe64534af (patch)
tree02eab1a578d13c58225930b10d28573ac2860fe6
parent553b0ad5d395fb06e205907edd875b0abca235d0 (diff)
Rename sample configuration to template configuration (#927)
* Rename sample configuration to template configuration * Rename sample configuration to template configuration in cmake example file
-rwxr-xr-x.github/scripts/kernel_checker.py2
-rw-r--r--README.md4
-rw-r--r--examples/cmake_example/CMakeLists.txt2
-rw-r--r--examples/template_configuration/FreeRTOSConfig.h (renamed from examples/sample_configuration/FreeRTOSConfig.h)0
-rw-r--r--examples/template_configuration/readme.md (renamed from examples/sample_configuration/readme.md)0
5 files changed, 4 insertions, 4 deletions
diff --git a/.github/scripts/kernel_checker.py b/.github/scripts/kernel_checker.py
index 3373cd50c..0e8556350 100755
--- a/.github/scripts/kernel_checker.py
+++ b/.github/scripts/kernel_checker.py
@@ -95,7 +95,7 @@ KERNEL_IGNORED_PATTERNS = [
r'.*IAR/78K0R/*',
r'.*CCS/MSP430X/*',
r'.*portable/template/*',
- r'.*sample_configuration/*'
+ r'.*template_configuration/*'
]
KERNEL_THIRD_PARTY_PATTERNS = [
diff --git a/README.md b/README.md
index c6633563f..7a60f3594 100644
--- a/README.md
+++ b/README.md
@@ -124,8 +124,8 @@ See the readme file in the ```./portable``` directory for more information.
- The ```./include``` directory contains the real time kernel header files.
-- The ```./sample_configuration``` directory contains a sample `FreeRTOSConfig.h` to help jumpstart a new project.
-See the [FreeRTOSConfig.h](examples/sample_configuration/FreeRTOSConfig.h) file for instructions.
+- The ```./template_configuration``` directory contains a sample `FreeRTOSConfig.h` to help jumpstart a new project.
+See the [FreeRTOSConfig.h](examples/template_configuration/FreeRTOSConfig.h) file for instructions.
### Code Formatting
diff --git a/examples/cmake_example/CMakeLists.txt b/examples/cmake_example/CMakeLists.txt
index 4d13c4c77..bff9317de 100644
--- a/examples/cmake_example/CMakeLists.txt
+++ b/examples/cmake_example/CMakeLists.txt
@@ -9,7 +9,7 @@ add_library(freertos_config INTERFACE)
target_include_directories(freertos_config
INTERFACE
- "../sample_configuration"
+ "../template_configuration"
)
if (DEFINED FREERTOS_SMP_EXAMPLE AND FREERTOS_SMP_EXAMPLE STREQUAL "1")
diff --git a/examples/sample_configuration/FreeRTOSConfig.h b/examples/template_configuration/FreeRTOSConfig.h
index a672600ff..a672600ff 100644
--- a/examples/sample_configuration/FreeRTOSConfig.h
+++ b/examples/template_configuration/FreeRTOSConfig.h
diff --git a/examples/sample_configuration/readme.md b/examples/template_configuration/readme.md
index 61c81f975..61c81f975 100644
--- a/examples/sample_configuration/readme.md
+++ b/examples/template_configuration/readme.md