Skip to content

Commit abf415b

Browse files
committed
Merge branch 'fix/ci_failed_with_bootloader_plus' into 'master'
fix(bootloader_plus): Fix a compilation error caused by the xz version upgrade See merge request ae_group/esp-iot-solution!1231
2 parents ef9fb98 + 7f8a9c3 commit abf415b

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

components/bootloader_support_plus/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# ChangeLog
22

3+
## v0.2.7 - 2025-2-26
4+
5+
### Fix:
6+
7+
* Fix the issue of a `-Wincompatible-pointer-types` compilation error.
8+
39
## v0.2.6 - 2024-07-01
410

511
### Feature:

components/bootloader_support_plus/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "0.2.6"
1+
version: "0.2.7"
22
targets:
33
- esp32c2
44
- esp32c3

components/bootloader_support_plus/src/bootloader_decompressor_xz.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
static const char *TAG = "boot_xz";
1818

19-
static void bootloader_decompressor_xz_error(char *msg)
19+
static void bootloader_decompressor_xz_error(const char *msg)
2020
{
2121
ESP_LOGE(TAG, "%s", msg);
2222
}

0 commit comments

Comments
 (0)