I am using latest imx-docker (https://github.com/nxp-imx/imx-docker) to attempt a build under WSL2.
I am getting the attached error log.
Example:
error: RPC failed; curl 56 GnuTLS recv error (-54): Error in the pull function.
If I run yocto-build.sh from main WSL prompt outside of docker container, it seems to not run into this error.
Any ideas?
已解决! 转到解答。
I had to make the changes in the linked PR to get imx-docker repo to complete a build:
https://github.com/nxp-imx/imx-docker/pull/3
I did have to add the following two lines to Dockerfile-Ubuntu-20.04 to get 'repo' to work properly.
# Correct Python path
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.8 1
RUN update-alternatives --config python
I had to make the changes in the linked PR to get imx-docker repo to complete a build:
https://github.com/nxp-imx/imx-docker/pull/3