docs: fix typo related to secure boot

This commit is contained in:
Mahavir Jain 2024-09-26 20:49:27 +05:30
parent d78439a572
commit d6c4cbb53f
No known key found for this signature in database
GPG Key ID: 99324EF4A00734E0
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ Bootloader
The ESP-IDF Software Bootloader performs the following functions:
1. Minimal initial configuration of internal modules;
2. Initialize :doc:`/security/flash-encryption` and/or :doc:`Secure </security/secure-boot-v2>` features, if configured;
2. Initialize :doc:`/security/flash-encryption` and/or :doc:`Secure Boot </security/secure-boot-v2>` features, if configured;
3. Select the application partition to boot, based on the partition table and ota_data (if any);
4. Load this image to RAM (IRAM & DRAM) and transfer management to the image that was just loaded.

View File

@ -6,7 +6,7 @@
ESP-IDF 软件引导加载程序 (Bootloader) 主要执行以下任务:
1. 内部模块的最小化初始配置;
2. 如果配置了 :doc:`/security/flash-encryption` 和/或 :doc:`Secure </security/secure-boot-v2>`,则对其进行初始化。
2. 如果配置了 :doc:`/security/flash-encryption` 和/或 :doc:`Secure Boot </security/secure-boot-v2>`,则对其进行初始化。
3. 根据分区表和 ota_data如果存在选择需要引导的应用程序 (app) 分区;
4. 将此应用程序镜像加载到 RAMIRAM 和 DRAM最后把控制权转交给此应用程序。