Yocto SDK for the NXP i.MX8M Plus.
2.9K
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:b665227ed…
Size
13.2 GB
Last updated
about 4 years ago
docker pull deepview/yocto-sdk-imx8mp