Skip to content

Commit 137ba4e

Browse files
authored
Merge pull request #1 from chinglee-iot/ericbj29/main
Update cmake for ARM port folder capitalization
2 parents 48b5ca1 + 6758f97 commit 137ba4e

File tree

5 files changed

+13
-13
lines changed

5 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

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

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

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

portable/GCC/ARM_CA53_64_BIT_SRE/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ Arm Cortex-A53 processor.
77
* System Register interace to access Arm GIC registers
88

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

1414
**NOTE**
1515

0 commit comments

Comments
 (0)