mirror of
https://github.com/espressif/esp-idf.git
synced 2026-09-22 13:01:16 +03:00
Merge branch 'bugfix/pm_hw_support_dep' into 'master'
fix(test_apps): drop obsolete esp_hw_support to esp_pm violation See merge request espressif/esp-idf!52978
This commit is contained in:
@@ -70,7 +70,7 @@ tools/test_apps/system/esp_intr_dump:
|
|||||||
|
|
||||||
tools/test_apps/system/flash_auto_suspend_iram_reduction:
|
tools/test_apps/system/flash_auto_suspend_iram_reduction:
|
||||||
disable:
|
disable:
|
||||||
- if: IDF_TARGET == "esp32" or IDF_TARGET == "esp32s2
|
- if: IDF_TARGET == "esp32" or IDF_TARGET == "esp32s2"
|
||||||
reason: Targets do not support auto-suspend
|
reason: Targets do not support auto-suspend
|
||||||
disable_test:
|
disable_test:
|
||||||
- if: IDF_TARGET != "esp32c3"
|
- if: IDF_TARGET != "esp32c3"
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
| Supported Targets | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-C61 | ESP32-H2 | ESP32-H21 | ESP32-H4 | ESP32-P4 | ESP32-S2 | ESP32-S3 | ESP32-S31 |
|
| Supported Targets | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-C61 | ESP32-H2 | ESP32-H21 | ESP32-H4 | ESP32-P4 | ESP32-S3 | ESP32-S31 |
|
||||||
| ----------------- | -------- | -------- | -------- | -------- | --------- | -------- | --------- | -------- | -------- | -------- | -------- | --------- |
|
| ----------------- | -------- | -------- | -------- | -------- | --------- | -------- | --------- | -------- | -------- | -------- | --------- |
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ g1_g0_components = g1_g0_components_base + get_all_esp_hal_components()
|
|||||||
# Global expected dependency violations that apply to all targets
|
# Global expected dependency violations that apply to all targets
|
||||||
expected_dep_violations = {
|
expected_dep_violations = {
|
||||||
'esp_system': ['esp_timer', 'bootloader_support', 'esp_pm'],
|
'esp_system': ['esp_timer', 'bootloader_support', 'esp_pm'],
|
||||||
'esp_hw_support': ['efuse', 'bootloader_support', 'esp_driver_gpio', 'esp_timer', 'esp_pm'],
|
'esp_hw_support': ['efuse', 'bootloader_support', 'esp_driver_gpio', 'esp_timer'],
|
||||||
# efuse: esp_mspi_align queries the flash encryption state to derive MSPI buffer alignment
|
# efuse: esp_mspi_align queries the flash encryption state to derive MSPI buffer alignment
|
||||||
'esp_mspi': ['bootloader_support', 'efuse'],
|
'esp_mspi': ['bootloader_support', 'efuse'],
|
||||||
'cxx': ['pthread'],
|
'cxx': ['pthread'],
|
||||||
|
|||||||
@@ -44,7 +44,6 @@ set(extra_components_which_shouldnt_be_included
|
|||||||
|
|
||||||
# esp_pm is pulled in by esp_system due to pm_init and freertos idle hook
|
# esp_pm is pulled in by esp_system due to pm_init and freertos idle hook
|
||||||
# both could be moved to pm component if esp-system idle hook provided a way to register hooks
|
# both could be moved to pm component if esp-system idle hook provided a way to register hooks
|
||||||
# esp_hw_support dependency seems like it could be removed?
|
|
||||||
# It is also used by esp_driver_gpio, which should be removed from G1-only build.
|
# It is also used by esp_driver_gpio, which should be removed from G1-only build.
|
||||||
# IDF-10415
|
# IDF-10415
|
||||||
esp_pm
|
esp_pm
|
||||||
|
|||||||
Reference in New Issue
Block a user