Merge branch 'fix/cleanup_ota_src_file' into 'master'

cleanup: remove ota app descriptor source

See merge request espressif/esp-idf!41703
This commit is contained in:
Mahavir Jain
2025-09-04 09:21:48 +05:30
2 changed files with 1 additions and 12 deletions

View File

@@ -4,7 +4,7 @@ if(${target} STREQUAL "linux")
return() # This component is not supported by the POSIX/Linux simulator return() # This component is not supported by the POSIX/Linux simulator
endif() endif()
idf_component_register(SRCS "esp_ota_ops.c" "esp_ota_app_desc.c" idf_component_register(SRCS "esp_ota_ops.c"
INCLUDE_DIRS "include" INCLUDE_DIRS "include"
REQUIRES partition_table bootloader_support esp_app_format esp_bootloader_format esp_partition REQUIRES partition_table bootloader_support esp_app_format esp_bootloader_format esp_partition
PRIV_REQUIRES esptool_py efuse spi_flash) PRIV_REQUIRES esptool_py efuse spi_flash)

View File

@@ -1,11 +0,0 @@
/*
* SPDX-FileCopyrightText: 2017-2025 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <assert.h>
#include <sys/param.h>
#include "esp_ota_ops.h"
#include "esp_attr.h"
#include "sdkconfig.h"