Updated this with a lot of help from abu baniaz as some where having issues and needing to install a softcam fisrt.
The ipks have been split up for openatv and vix although PLI use a similar method the ATV ipk may work on pli and possibly Pure2
You can find release from here
Code:
https://github.com/davesayers2014/SOFTCAMS/releases/
Also from here
Code:
https://github.com/davesayers2014/SOFTCAMS
If images add this to feeds, the symlinks will get re-installed on restores
postinst content if anyone is interested
Code:
#!/bin/sh
if [ -f /lib/ld-2.32.so ]; then
ln -s /lib/ld-2.32.so /lib/ld-linux.so.3
echo "ld-2.32.so symlink created"
else
echo "ld-2.32.so not found"
fi
if [ -f /lib/ld-2.30.so ]; then
ln -s /lib/ld-2.30.so /lib/ld-linux.so.3
echo "ld-2.30.so symlink created"
else
echo "ld-2.30.so not found"
fi
if [ -f /lib/ld-2.28.so ]; then
ln -s /lib/ld-2.28.so /lib/ld-linux.so.3
echo "ld-2.28.so symlink created"
else
echo "ld-2.28.so not found"
fi
if [ -f /lib/ld-2.26.so ]; then
ln -s /lib/ld-2.26.so /lib/ld-linux.so.3
echo "ld-2.26.so symlink created"
else
echo "ld-2.26.so not found"
fi
if [ -f /usr/lib/libcrypto.so.1.0.2 ]; then
ln -sf /usr/lib/libcrypto.so.1.0.2 /usr/lib/libcrypto.so.1.0.0
ln -sf /usr/lib/libcrypto.so.1.0.2 /usr/lib/libcrypto.so.0.9.8
ln -sf /usr/lib/libcrypto.so.1.0.2 /usr/lib/libcrypto.so.0.9.7
echo "libcrypto.so.1.0.2 symlinks created"
else
echo "libcrypto.so.1.0.2 not found"
fi
if [ -f /usr/lib/libssl.so.1.0.2 ]; then
ln -sf /usr/lib/libssl.so.1.0.2 /usr/lib/libssl.so.1.0.0
ln -sf /usr/lib/libssl.so.1.0.2 /usr/lib/libssl.so.0.9.8
ln -sf /usr/lib/libssl.so.1.0.2 /usr/lib/libssl.so.0.9.7
echo "libssl.so.1.0.2 symlinks created"
else
echo "libssl.so.1.0.2 not found"
fi