Skip to content

Commit 0251344

Browse files
committed
[docs] fix the mermaid diagram issue
1 parent dcdcd8e commit 0251344

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

documentation/3.kernel/smp-startup/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ This guide walks through the multi-core boot path of RT-Thread on AArch64 using
1111

1212
```mermaid
1313
flowchart TD
14-
ROM[BootROM/BL1<br/>QEMU firmware] --> START[_start<br/>(entry_point.S)]
15-
START --> MMU[init_mmu_early<br/>enable_mmu_early]
14+
ROM[BootROM/BL1<br/>QEMU firmware] --> START["_start<br/>(entry_point.S)"]
15+
START --> MMU["init_mmu_early<br/>enable_mmu_early"]
1616
MMU --> CBOOT[rtthread_startup()]
17-
CBOOT --> BOARD[rt_hw_board_init<br/>-> rt_hw_common_setup]
17+
CBOOT --> BOARD["rt_hw_board_init<br/>-> rt_hw_common_setup"]
1818
BOARD --> MAIN[main_thread_entry]
19-
MAIN --> PSCI[rt_hw_secondary_cpu_up<br/>(PSCI CPU_ON)]
20-
PSCI --> SECASM[_secondary_cpu_entry<br/>(ASM)]
19+
MAIN --> PSCI["rt_hw_secondary_cpu_up<br/>(PSCI CPU_ON)"]
20+
PSCI --> SECASM["_secondary_cpu_entry<br/>(ASM)"]
2121
SECASM --> SECC[rt_hw_secondary_cpu_bsp_start]
2222
SECC --> SCHED[rt_system_scheduler_start]
2323
SCHED --> RUN[SMP scheduling]

documentation/3.kernel/smp-startup/README_zh.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111

1212
```mermaid
1313
flowchart TD
14-
ROM[BootROM/BL1<br/>QEMU 固件] --> START[_start<br/>(entry_point.S)]
15-
START --> MMU[init_mmu_early<br/>enable_mmu_early]
14+
ROM[BootROM/BL1<br/>QEMU 固件] --> START["_start<br/>(entry_point.S)"]
15+
START --> MMU["init_mmu_early<br/>enable_mmu_early"]
1616
MMU --> CBOOT[rtthread_startup()]
17-
CBOOT --> BOARD[rt_hw_board_init<br/>-> rt_hw_common_setup]
17+
CBOOT --> BOARD["rt_hw_board_init<br/>-> rt_hw_common_setup"]
1818
BOARD --> MAIN[main_thread_entry]
19-
MAIN --> PSCI[rt_hw_secondary_cpu_up<br/>(PSCI CPU_ON)]
20-
PSCI --> SECASM[_secondary_cpu_entry<br/>(ASM)]
19+
MAIN --> PSCI["rt_hw_secondary_cpu_up<br/>(PSCI CPU_ON)"]
20+
PSCI --> SECASM["_secondary_cpu_entry<br/>(ASM)"]
2121
SECASM --> SECC[rt_hw_secondary_cpu_bsp_start]
2222
SECC --> SCHED[rt_system_scheduler_start]
2323
SCHED --> RUN[多核调度运行态]

0 commit comments

Comments
 (0)