bootloader_load_image_no_verify() function
Load an app image without verification (available only in space of bootloader). If encryption is enabled, data will be transparently decrypted.
Arguments
part
Partition to load the app from.
data
Pointer to the image metadata structure which is be filled in by this function. 'start_addr' member should be set (to the start address of the image.) Other fields will all be initialised by this function.
Return value
- ESP_OK if verify or load was successful - ESP_ERR_IMAGE_FLASH_FAIL if a SPI flash error occurs - ESP_ERR_IMAGE_INVALID if the image appears invalid. - ESP_ERR_INVALID_ARG if the partition or data pointers are invalid.
![]()
if (partition != NULL && bootloader_load_image_no_verify(partition, &image_data) == ESP_OK) {
bootloader_load_image_no_verify() is called by 1 function:
![]()
bootloader_load_image_no_verify()