mirror of
https://github.com/espressif/esp-idf.git
synced 2026-09-22 13:01:16 +03:00
Merge branch 'contrib/github_pr_18880' into 'master'
fix(esp_https_ota): Add missing requirement to `bootloader_support` component (GitHub PR) Closes IDFGH-18024 See merge request espressif/esp-idf!51505
This commit is contained in:
@@ -8,6 +8,6 @@ idf_component_register(SRCS "src/esp_https_ota.c"
|
||||
INCLUDE_DIRS "include"
|
||||
REQUIRES esp_http_client esp_bootloader_format esp_app_format
|
||||
esp_event esp_partition
|
||||
PRIV_REQUIRES log app_update efuse)
|
||||
PRIV_REQUIRES log app_update bootloader_support efuse)
|
||||
|
||||
idf_define_esp_err_codes(HEADERS include/esp_https_ota.h)
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
#pragma once
|
||||
|
||||
#include <esp_http_client.h>
|
||||
#include <bootloader_common.h>
|
||||
#include "esp_app_desc.h"
|
||||
#include "esp_bootloader_desc.h"
|
||||
#include <sdkconfig.h>
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <bootloader_common.h>
|
||||
#include <esp_https_ota.h>
|
||||
#include <esp_log.h>
|
||||
#include <esp_ota_ops.h>
|
||||
|
||||
Reference in New Issue
Block a user