-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Docker image for NXP imx platform (#13245)
* Add Docker image for NXP imx platform NXP i.MX platform Docker image build supported by this change. Signed-off-by: Haoran Wang <elven.wang@nxp.com> * Update integrations/docker/images/chip-build-imx/Dockerfile Co-authored-by: Victor Morales <chipahuac@hotmail.com> * Update Dockerfile Signed-off-by: Haoran.Wang <elven.wang@nxp.com> * Add NXP imx Docker image support for vscode image Signed-off-by: Haoran.Wang <elven.wang@nxp.com> Co-authored-by: Victor Morales <chipahuac@hotmail.com>
- Loading branch information
Showing
8 changed files
with
33 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ jobs: | |
- "-esp32" | ||
- "-esp32-qemu" | ||
- "-infineon" | ||
- "-imx" | ||
- "-k32w" | ||
- "-mbed-os" | ||
- "-nrf-platform" | ||
|
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,21 @@ | ||
ARG VERSION=latest | ||
FROM connectedhomeip/chip-build:${VERSION} as build | ||
RUN set -x \ | ||
&& apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -fy --no-install-recommends \ | ||
wget=1.20.3-1ubuntu2 \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/ \ | ||
&& : # last line | ||
WORKDIR /opt | ||
RUN set -x \ | ||
&& wget --quiet -O fsl-l5.10.52-2.1.0-sdk.tar.gz https://www.nxp.com/lgfiles/IMM/fsl-l5.10.52-2.1.0-sdk.tar.gz \ | ||
&& tar zxvf fsl-l5.10.52-2.1.0-sdk.tar.gz \ | ||
&& ./fsl-imx-xwayland-glibc-x86_64-imx-image-core-cortexa53-crypto-imx8mmevk-toolchain-5.10-hardknott.sh -y \ | ||
&& : # last line | ||
|
||
FROM connectedhomeip/chip-build:${VERSION} | ||
|
||
COPY --from=build /opt/fsl-imx-xwayland /opt/fsl-imx-xwayland | ||
|
||
ENV IMX_SDK_ROOT=/opt/fsl-imx-xwayland/5.10-hardknott/ |
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 @@ | ||
../../build.sh |
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 @@ | ||
../../run.sh |
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 @@ | ||
../chip-build/version |
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 +1 @@ | ||
0.5.50 Version bump reason: [Ameba] Support Rotating ID for BLE beaconing | ||
0.5.51 Version bump reason: Add Docker image for NXP imx platform |