3drobotics / solo-cli

Solo command line utilities.
20 stars 36 forks source link

solo video acquire does not reboot solo #27

Closed djnugent closed 8 years ago

djnugent commented 8 years ago

If solo does not reboot after running solo video acquire then you may suffer memory corruption.

Master has a fix for this but if you ran solo video acquire before the fix then the issue may persist.

In order to fix this issue you need to delete the first 2 lines of /usr/bin/video_send.sh on your solo and run solo video acquire again.

Steps: nano /usr/bin/video_send.sh remove the first 2 lines sync reboot

/usr/bin/video_send.sh before:

#!/bin/sh
if [ -e /tmp/ACQUIRE_VIDEO_FEED ]; then while true; do sleep 100000; done; fi

#!/bin/sh

modprobe mxc_v4l2_capture

cd /usr/bin
sn_install
...
...

/usr/bin/video_send.sh after:

#!/bin/sh

modprobe mxc_v4l2_capture

cd /usr/bin
sn_install
...
...
djnugent commented 8 years ago

Closed. Is only here for future lookup