forked from home-assistant/addons
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
silabs-multiprotocol: Use native zigbeed on amd64 (home-assistant#3040)
* Use native x86-64/amd64 support and remove amd64 specific Dockerfile The latest Gecko SDK supports x86-64 natively and in production quality. Let's use the native zigbeed support instead of our QEMU emulated aarch64 workaround. * Avoid disabling otbr-web service twice When the otbr-agent is already disabled, the script tries to disable otbr-web twice which is confusing. * Update CHANGELOG.md/config.yaml * Add missing debian-amd64.cmake * Fix aarch64 build * Apply suggestions from code review Co-authored-by: Pascal Vizeli <[email protected]>
- Loading branch information
Showing
8 changed files
with
36 additions
and
291 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 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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
SET(CMAKE_SYSTEM_NAME Linux) | ||
SET(CMAKE_SYSTEM_PROCESSOR x86_64) | ||
SET(CMAKE_SYSTEM_VERSION 1) | ||
|
||
# Specify the cross compiler | ||
SET(CMAKE_C_COMPILER /usr/bin/x86_64-linux-gnu-gcc) | ||
SET(CMAKE_CXX_COMPILER /usr/bin/x86_64-linux-gnu-g++) | ||
|
||
# Search for programs only in the build host directories | ||
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) | ||
|
||
# Search for libraries and headers only in the target directories | ||
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) | ||
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) |
This file was deleted.
Oops, something went wrong.
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