I am testing Colibri iMX6DL 512MB IT V1.1A on an Colibri Evaluation Board V3.2B.
I followed this tutorial, installed TorizonCore Image with Docker Runtime:
I then followed this tutorial, pulled the torizonextras/codesys container and ran the container:
docker pull torizonextras/codesys
docker run --rm -dt --name codesys --network host --privileged torizonextras/codesys
But the above command just printed a string of digits and the container is not up running. CodeSys Development System could not find the device and I ran the following command, there was no active container:
docker container ls -a
docker ps -a
I then changed the command to:
docker run --rm -t --name codesys --network host --privileged torizonextras/codesys
I could see it dumped the following error:
docker run --rm -t --name codesys
--network host --privileged torizonextras/codesys
********* CoDeSysControl DEMO VERSION - runs 2 hours********* ./entrypoint.sh: line 3: 7 Segmentation fault (core dumped) ./codesyscontrol
The version of TorizonCore is as follows:
colibri-imx6-10638825:~$ uname -a
Linux colibri-imx6-10638825 5.4.2-+git.0a15b6b8f633 #1 SMP Fri Dec 6 13:39:24 UTC 2019 armv7l armv7l armv7l GNU/Linux
Can you please help?