-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
silabs-multiprotocol: Update to Gecko SDK v4.4.0 (#3370)
* Use Gecko SDK 4.4.0 Add work around to provide missing Silicon Labs component "defines" zigbee_use_release_libraries and a second architecture specific define "x86-64", "arm64v8" or "arm32v7". Also fix linker warnings and add pthread which seems to be required by libcpc. * Update and remove OTBR patches Remove the patches already upstream. * Address hdolint issue * Fix stray whitespace * Use correct indentation for alternate build arches * Make sure OpenThread builds * Bump flasher * Bump firmwares * Bump addon version * Add hadolint ignore * Update CHANGELOG.md * use working reset flag * Revert "use working reset flag" This reverts commit f176f7c. * Move bootloader reset flag to right place --------- Co-authored-by: puddly <[email protected]>
- Loading branch information
Showing
14 changed files
with
53 additions
and
1,226 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
From 53d4be5c893dac04a909563444453fb471852ccc Mon Sep 17 00:00:00 2001 | ||
Message-Id: <53d4be5c893dac04a909563444453fb471852ccc.1677692173[email protected]> | ||
From e0792b7605e6d6cb2ebd491025aee7f84d1edbaa Mon Sep 17 00:00:00 2001 | ||
Message-ID: <e0792b7605e6d6cb2ebd491025aee7f84d1edbaa.1692864566[email protected]> | ||
From: Stefan Agner <[email protected]> | ||
Date: Thu, 17 Feb 2022 22:57:16 +0100 | ||
Subject: [PATCH] Avoid writing to system console | ||
|
@@ -13,18 +13,18 @@ stderr. | |
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/src/common/logging.cpp b/src/common/logging.cpp | ||
index 5398e47133..69f150dadb 100644 | ||
index 5a787e8213..79fccf77ca 100644 | ||
--- a/src/common/logging.cpp | ||
+++ b/src/common/logging.cpp | ||
@@ -83,7 +83,7 @@ void otbrLogInit(const char *aIdent, otbrLogLevel aLevel, bool aPrintStderr) | ||
assert(aIdent); | ||
assert(aLevel >= OTBR_LOG_EMERG && aLevel <= OTBR_LOG_DEBUG); | ||
@@ -88,7 +88,7 @@ void otbrLogInit(const char *aProgramName, otbrLogLevel aLevel, bool aPrintStder | ||
ident = strrchr(aProgramName, '/'); | ||
ident = (ident != nullptr) ? ident + 1 : aProgramName; | ||
|
||
- openlog(aIdent, (LOG_CONS | LOG_PID) | (aPrintStderr ? LOG_PERROR : 0), OTBR_SYSLOG_FACILITY_ID); | ||
+ openlog(aIdent, LOG_PID | (aPrintStderr ? LOG_PERROR : 0), LOG_USER); | ||
- openlog(ident, (LOG_CONS | LOG_PID) | (aPrintStderr ? LOG_PERROR : 0), OTBR_SYSLOG_FACILITY_ID); | ||
+ openlog(ident, LOG_PID | (aPrintStderr ? LOG_PERROR : 0), OTBR_SYSLOG_FACILITY_ID); | ||
sLevel = aLevel; | ||
sDefaultLevel = sLevel; | ||
} | ||
-- | ||
2.39.1 | ||
2.42.0 | ||
|
123 changes: 0 additions & 123 deletions
123
silabs-multiprotocol/otbr-patches/0001-rest-support-erasing-all-persistent-info-1908.patch
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
From ab31af226c8d4ad1f46d03616e68a80f2a04a35e Mon Sep 17 00:00:00 2001 | ||
Message-ID: <ab31af226c8d4ad1f46d03616e68a80f2a04a35e.1691047014[email protected]> | ||
In-Reply-To: <29c0b6b142c6692a53a83fb4604fc2bcebeb17af.1691047014[email protected]> | ||
References: <29c0b6b142c6692a53a83fb4604fc2bcebeb17af.1691047014[email protected]> | ||
From 2c0c78e5f4dc85a63934fc0c32c035a9c5b5babd Mon Sep 17 00:00:00 2001 | ||
Message-ID: <2c0c78e5f4dc85a63934fc0c32c035a9c5b5babd.1692864566[email protected]> | ||
In-Reply-To: <e0792b7605e6d6cb2ebd491025aee7f84d1edbaa.1692864566[email protected]> | ||
References: <e0792b7605e6d6cb2ebd491025aee7f84d1edbaa.1692864566[email protected]> | ||
From: Stefan Agner <[email protected]> | ||
Date: Mon, 5 Jun 2023 23:41:50 +0200 | ||
Subject: [PATCH] [rest] support deleting the dataset | ||
|
@@ -122,5 +122,5 @@ index d79085dbfc..362e501471 100644 | |
void DeleteOutDatedDiagnostic(void); | ||
void UpdateDiag(std::string aKey, std::vector<otNetworkDiagTlv> &aDiag); | ||
-- | ||
2.41.0 | ||
2.42.0 | ||
|
66 changes: 0 additions & 66 deletions
66
silabs-multiprotocol/otbr-patches/0003-mdns-update-mDNSResponder-to-1790.80.10.patch
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.