Introduction to Zephyr Part 1: Getting Started - Installation and Blink

None of the links in the " Required Hardware" section seems to work!

1 Like

Thank you for bringing this to our attention.

When did I run the docker image I only got the error:
exec /entrypoint.sh: no such file or directory

I did however manage to find the reason, and solution for it.
It turned out to be that the cloned file scripts\entrypoint.sh did have CR/LF line endings, but bash requiered it to have LF only.

The solution I did was to add a .gitattributes file that contained:

scripts/entrypoint.sh text eol=lf

And then execute:

rm .\scripts\entrypoint.sh
git restore .\scripts\entrypoint.sh

That will cause the file to have LF line ending, so after rebuilding the docker image the docker can now be run.

So my suggestion is to add that to add the .gitattributes file to repo to avoid problems for others like me.

1 Like