Skip to content

Commit 938ec0f

Browse files
Correct ARM port folder capitalization (#981)
* Rename Arm_AARCH64 to ARM_AARCH64 * Rename Arm_AARCH64_SRE to ARM_AARCH64_SRE * Update cmake for ARM port folder capitalization * Update in portable/CmakeLists.txt * Use capitalization name in port README.md --------- Co-authored-by: Ching-Hsin Lee <[email protected]>
1 parent 1065389 commit 938ec0f

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

portable/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ add_library(freertos_kernel_port OBJECT
6868

6969
# ARMv8-A ports for GCC
7070
$<$<STREQUAL:${FREERTOS_PORT},GCC_ARM_AARCH64>:
71-
GCC/Arm_AARCH64/port.c
72-
GCC/Arm_AARCH64/portASM.S>
71+
GCC/ARM_AARCH64/port.c
72+
GCC/ARM_AARCH64/portASM.S>
7373

7474
$<$<STREQUAL:${FREERTOS_PORT},GCC_ARM_AARCH64_SRE>:
75-
GCC/Arm_AARCH64_SRE/port.c
76-
GCC/Arm_AARCH64_SRE/portASM.S>
75+
GCC/ARM_AARCH64_SRE/port.c
76+
GCC/ARM_AARCH64_SRE/portASM.S>
7777

7878
# ARMv6-M port for GCC
7979
$<$<STREQUAL:${FREERTOS_PORT},GCC_ARM_CM0>:

portable/GCC/Arm_AARCH64/README.md renamed to portable/GCC/ARM_AARCH64/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ the T32 and A32 instruction sets. Follow the
1313
[link](https://developer.arm.com/Architectures/A-Profile%20Architecture)
1414
for more information.
1515

16-
## Arm_AARCH64 port
16+
## ARM_AARCH64 port
1717

1818
This port adds support for Armv8-A architecture AArch64 execution state.
1919
This port is generic and can be used as a starting point for Armv8-A
2020
application processors.
2121

22-
* Arm_AARCH64
22+
* ARM_AARCH64
2323
* Memory mapped interace to access Arm GIC registers
File renamed without changes.
File renamed without changes.
File renamed without changes.

portable/GCC/Arm_AARCH64_SRE/README.md renamed to portable/GCC/ARM_AARCH64_SRE/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ the T32 and A32 instruction sets. Follow the
1313
[link](https://developer.arm.com/Architectures/A-Profile%20Architecture)
1414
for more information.
1515

16-
## Arm_AARCH64_SRE port
16+
## ARM_AARCH64_SRE port
1717

1818
This port adds support for Armv8-A architecture AArch64 execution state.
1919
This port is generic and can be used as a starting point for Armv8-A
2020
application processors.
2121

22-
* Arm_AARCH64_SRE
22+
* ARM_AARCH64_SRE
2323
* System Register interace to access Arm GIC registers
File renamed without changes.
File renamed without changes.
File renamed without changes.

portable/GCC/ARM_CA53_64_BIT/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Arm Cortex-A53 processor.
88

99
This port is generic and can be used as a starting point for other Armv8-A
1010
application processors. Therefore, the port `ARM_CA53_64_BIT` is renamed as
11-
`Arm_AARCH64`. The existing projects that use old port `ARM_CA53_64_BIT`,
12-
should migrate to renamed port `Arm_AARCH64`.
11+
`ARM_AARCH64`. The existing projects that use old port `ARM_CA53_64_BIT`,
12+
should migrate to renamed port `ARM_AARCH64`.
1313

1414
**NOTE**
1515

0 commit comments

Comments
 (0)