PDA

View Full Version : Mgcamd 1.46 all ipk



dsayers
20-03-21, 17:32
Mgcamd 1.46 working with openatv and openvix for both arm and mipsel boxes

1554leslie
22-03-21, 02:00
Mgcamd 1.46 working with openatv and openvix for both arm and mipsel boxes

Tried and tested on vix images by me

1554leslie
22-03-21, 02:03
Mgcamd 1.46 working with openatv and openvix for both arm and mipsel boxes

Tried and tested on vix images

dsayers
22-05-21, 20:09
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
https://github.com/davesayers2014/SOFTCAMS/releases/

Also from here
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



#!/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