Yocto SDK for the NXP i.MX8M Plus.
2.1K
cd myproject
docker run -v $PWD:/src deepview/yocto-sdk-imx8mpcmake -S/src -B/src/build_imx
docker run -v $PWD:/src deepview/yocto-sdk-imx8mpcmake --build /src/build_imx -j8
<files are now on the host under $PWD/build_imx>
If you use VSCode you can install the Docker extensions and have your IDE use this container.
You'll need to create a .devcontainer.json file with these contents.
{
"image": "deepview/yocto-sdk-imx8mp:latest",
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
],
"extensions": [
"ms-vscode.cpptools",
"ms-vscode.cmake-tools"
]
}
Further instructions are available here.
Content type
Image
Digest
sha256:43f84cf40…
Size
8.6 GB
Last updated
almost 3 years ago
Requires Docker Desktop 4.37.1 or later.