Posts by fairbird
-
-
version 12.0
-Online Update Available
-Fix choose the city name for weather for Pyhon3
Very Important: Should be install plugin by online command or plugin online update
(Don't install tar file) I just attach it for archived
For Old version 8.8 to old devices (Weak hardware) (No more support)
-
-
Just right now I have test my ncam ipk on latest VIX (work just fine) no need to do any extra things jsut install ipk after update feed
Code
Display MoreEscape character is '^]'. Welcome to OpenViX for vuzero4k openvix 5.4 vuzero4k vuzero4k login: root Last login: Wed Jul 14 18:03:30 +03 2021 on pts/0 root@vuzero4k:~# opkg update Downloading http://www.openvix.co.uk/feeds/openvix/release/5.4/vuzero4k/3rdparty/Packages.gz. Updated source 'openvix-3rdparty'. Downloading http://www.openvix.co.uk/feeds/openvix/release/5.4/vuzero4k/all/Packages.gz. Updated source 'openvix-all'. Downloading http://www.openvix.co.uk/feeds/openvix/release/5.4/vuzero4k/cortexa15hf-neon-vfpv4/Packages.gz. Updated source 'openvix-cortexa15hf-neon-vfpv4'. Downloading http://www.openvix.co.uk/feeds/openvix/release/5.4/vuzero4k/vuzero4k/Packages.gz. Updated source 'openvix-vuzero4k'. Downloading http://www.openvix.co.uk/feeds/openvix/release/5.4/vuzero4k/vuzero4k_3rdparty/Packages.gz. Updated source 'openvix-vuzero4k_3rdparty'. root@vuzero4k:~# root@vuzero4k:~# root@vuzero4k:~# ls -n /tmp/*.ipk -rw-rw-r-- 1 0 0 3923514 Jul 15 02:15 /tmp/enigma2-plugin-softcams-ncam_V11.9-r2_all.ipk root@vuzero4k:~# root@vuzero4k:~# root@vuzero4k:~# opkg install /tmp/enigma2-plugin-softcams-ncam_V11.9-r2_all.ipk Installing libcurl4 (7.66.0) on root. Downloading http://www.openvix.co.uk/feeds/openvix/release/5.4/vuzero4k/cortexa15hf-neon-vfpv4/libcurl4_7.66.0-r0_cortexa15hf-neon-vfpv4.ipk. Installing enigma2-plugin-softcams-ncam (V11.9) on root. OE2.0 IMAGES: libssl.1.0.2 OE2.0 IMAGES: libcrypto.1.0.2 Configuring libcurl4. Configuring enigma2-plugin-softcams-ncam. :Your Device IS ARM processor ... OpenVIX image [ All Config Files found ] ------------------------------------------------------- * Ncam Config & Softcam files in [/etc/tuxbox/config] * ------------------------------------------------------- ******************************************* * Install Finished * * * * Need To Restart Enigma2 * * * * Patched and compile By RAED * *******************************************And here is ncam running manually working (The libcurl.so.4 message is just warning not issue message)
-
There is no problem in IPK for ncam ...
do this please
1-Install new image
2-install ipk of ncam (And give me screenshot from telnet)
3-Give this command and also screenshot) don't post the result. (Because what you have added in previous replay not clear) or add it with code option
I have DM920 and there is no image For Dreambox and in Spite of that I have install image with multiboot and modified image and then test ncam (work just fine)
And I will try again today with latest version of VIX
-
First you need to know the version of libssl and libcrypto then depend on what you have get you can create symlinks...
To the version just give this in terminal
Coderoot@dm920:~# ls -n /usr/lib/libcrypto* -rwxr-xr-x 1 0 0 2140440 Jul 5 00:41 /usr/lib/libcrypto.so.1.1 root@dm920:~# ls -n /usr/lib/libssl* -rwxr-xr-x 1 0 0 458960 Jul 5 00:41 /usr/lib/libssl.so.1.1As In my image on my device I have version 1.1 so the correct command to create symlinks.
Codeln -s libcrypto.so.1.1 /usr/lib/libcrypto.so.1.0.0 ln -s libcrypto.so.1.1 /usr/lib/libcrypto.so.0.9.8 ln -s libssl.so.1.1 /usr/lib/libssl.so.1.1 ln -s libssl.so.1.1 /usr/lib/libssl.so.0.9.8After the try to run ncam manually from telnet to find any error or and packages missing
-
Ncam work with (libssl, libcrypto, libcurl and libpng) the preinst file inside ipk recognizes the type of image and the required packages it contains.
Then try to install missing package and need also to make symlink for example libcrypto
Code
Display Moreimages="OE2.0 IMAGES:" lib_files="/var/lib/opkg/status" list_files="/var/lib/opkg/info" if grep -qs 'Package: libcrypto1.1' cat $lib_files ; then echo "$images libcrypto1.1" ln -s libcrypto.so.1.1 $usrlibpath/libcrypto.so.1.0.0 > /dev/null 2>&1 ln -s libcrypto.so.1.1 $usrlibpath/libcrypto.so.0.9.8 > /dev/null 2>&1 ln -s libcrypto.so.1.1 $usrlibpath/libcrypto.so.0.9.7 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.1.1 $libpath/libcrypto.so.1.0.0 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.1.1 $libpath/libcrypto.so.0.9.8 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.1.1 $libpath/libcrypto.so.0.9.7 > /dev/null 2>&1 elif grep -qs 'Package: libcrypto1.0.0' cat $lib_files ; then echo "$images libcrypto.1.0.0" ln -s libcrypto.so.1.0.0 $usrlibpath/libcrypto.so.0.9.8 > /dev/null 2>&1 ln -s libcrypto.so.1.0.0 $usrlibpath/libcrypto.so.0.9.7 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.1.0.0 $libpath/libcrypto.so.0.9.8 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.1.0.0 $libpath/libcrypto.so.0.9.7 > /dev/null 2>&1 elif grep -qs 'Package: libcrypto1.0.2' cat $lib_files ; then echo "$images libcrypto.1.0.2" ln -s libcrypto.so.1.0.2 $usrlibpath/libcrypto.so.1.0.0 > /dev/null 2>&1 ln -s libcrypto.so.1.0.2 $usrlibpath/libcrypto.so.0.9.8 > /dev/null 2>&1 ln -s libcrypto.so.1.0.2 $usrlibpath/libcrypto.so.0.9.7 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.1.0.2 $libpath/libcrypto.so.1.0.0 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.1.0.2 $libpath/libcrypto.so.0.9.8 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.1.0.2 $libpath/libcrypto.so.0.9.7 > /dev/null 2>&1 elif grep -qs 'Package: libcrypto0.9.8' cat $lib_files ; then echo "$images libcrypto.0.9.8" ln -s libcrypto.so.0.9.8 $usrlibpath/libcrypto.so.0.9.7 > /dev/null 2>&1 ln -s libcrypto.so.0.9.8 $usrlibpath/libcrypto.so.1.0.0 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.0.9.8 $libpath/libcrypto.so.0.9.7 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.0.9.8 $libpath/libcrypto.so.1.0.0 > /dev/null 2>&1 elif [ -f /usr/lib/libcrypto.so.1.1 ] ; then echo "$images libcrypto1.1" ln -s libcrypto.so.1.1 $usrlibpath/libcrypto.so.1.0.0 > /dev/null 2>&1 ln -s libcrypto.so.1.1 $usrlibpath/libcrypto.so.0.9.8 > /dev/null 2>&1 ln -s libcrypto.so.1.1 $usrlibpath/libcrypto.so.0.9.7 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.1.1 $libpath/libcrypto.so.1.0.0 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.1.1 $libpath/libcrypto.so.0.9.8 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.1.1 $libpath/libcrypto.so.0.9.7 > /dev/null 2>&1 elif [ -f /usr/lib/libcrypto.so.1.0.0 ] ; then echo "$images libcrypto.1.0.0" ln -s libcrypto.so.1.0.0 $usrlibpath/libcrypto.so.0.9.8 > /dev/null 2>&1 ln -s libcrypto.so.1.0.0 $usrlibpath/libcrypto.so.0.9.7 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.1.0.0 $libpath/libcrypto.so.0.9.8 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.1.0.0 $libpath/libcrypto.so.0.9.7 > /dev/null 2>&1 elif [ -f /usr/lib/libcrypto.so.1.0.2 ] ; then echo "$images libcrypto.1.0.2" ln -s libcrypto.so.1.0.2 $usrlibpath/libcrypto.so.1.0.0 > /dev/null 2>&1 ln -s libcrypto.so.1.0.2 $usrlibpath/libcrypto.so.0.9.8 > /dev/null 2>&1 ln -s libcrypto.so.1.0.2 $usrlibpath/libcrypto.so.0.9.7 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.1.0.2 $libpath/libcrypto.so.1.0.0 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.1.0.2 $libpath/libcrypto.so.0.9.8 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.1.0.2 $libpath/libcrypto.so.0.9.7 > /dev/null 2>&1 elif [ -f /usr/lib/libcrypto.so.0.9.8 ] ; then echo "$images libcrypto.0.9.8" ln -s libcrypto.so.0.9.8 $usrlibpath/libcrypto.so.0.9.7 > /dev/null 2>&1 ln -s libcrypto.so.0.9.8 $usrlibpath/libcrypto.so.1.0.0 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.0.9.8 $libpath/libcrypto.so.0.9.7 > /dev/null 2>&1 ln -s $usrlibpath/libcrypto.so.0.9.8 $libpath/libcrypto.so.1.0.0 > /dev/null 2>&1But as @paconassa2021 log shown the image problem to do that symlinks
/sbin/ldconfig: cannot mmap file /lib/libcrypto.so.0.9.7.
/sbin/ldconfig: cannot mmap file /lib/libcrypto.so.0.9.8.
/sbin/ldconfig: cannot mmap file /liblibcrypto.so.1.0.0.
/sbin/ldconfig: cannot mmap file /usr/lib/libcrypto.so.0.9.8.
I think he need to install libcrypto-compat if the feed have it
Code
Display MorePackage: libcrypto-compat Version: 1.1-r0 Description: Compatibility for packages that link to older libcrypto or libssl Compatibility for packages that link to older libcrypto or libssl. Section: base Priority: optional Maintainer: OE-Core Developers <openembedded-core@lists.openembedded.org> License: GPLv2+ Architecture: mips32el OE: libcrypto-compat Depends: libcrypto, libssl Provides: libcrypto0.9.8, libcrypto1.0.0, libssl0.9.8, libssl1.0.0 Replaces: libcrypto0.9.8, libcrypto1.0.0, libssl0.9.8, libssl1.0.0 Conflicts: libcrypto0.9.8, libcrypto1.0.0, libssl0.9.8, libssl1.0.0 Source: libcrypto-compat_1.1.bb -
Update ...
Edit last version with latest update ...
Code-YouTubeSearch: update default skins -YouTubeUi: use LoadPixmap also for default svg image -Use blend for svg images (Thx Huevos to point on this) -YouTubeVideoUrl: fix get_video_info request, thx dstftw -YouTubeVideoUrl: fix age gate content extraction (Use status LOGIN_REQUIRED instead of reason. Reason is displayed in a localized translation, so the English phrase cannot be used.) -YouTubeVideoUrl: make get_video_info processing more robust (Workaround for get_video_info request) -YouTubeVideoUrl: fix indentation contains mixed spaces and tabs -
version 11.9
-Online Update Available
-Update Some Convertert files for weather
-Fix crash error
Very Important: Should be install plugin by online command or plugin online update
(Don't install tar file) I just attach it for archived
For Old version 8.8 to old devices (Weak hardware) (No more support)
-
version 11.8
-Online Update Available
-Update Some codes
Very Important: Should be install plugin by online command or plugin online update
(Don't install tar file) I just attach it for archived
For Old version 8.8 to old devices (Weak hardware) (No more support)
-
version 11.7
-Online Update Available
-Fix Some bugs
Very Important: Should be install plugin by online command or plugin online update
(Don't install tar file) I just attach it for archived
For Old version 8.8 to old devices (Weak hardware) (No more support)
-
version 11.6
-Online Update Available
-Fix Some bugs
Very Important: Should be install plugin by online command or plugin online update
(Don't install tar file) I just attach it for archived
For Old version 8.8 to old devices (Weak hardware) (No more support)
-
version 11.5
-Online Update Available
-Add New picons style (Transparent) By Shabah Net
-Edit Yellow button for Download picons.
*Now You can download load and picons you need...
This picons will be download and save it in picons folder inside plugin as default picons
Very Important: Should be install plugin by online command or plugin online update
(Don't install tar file) I just attach it for archived
For Old version 8.8 to old devices (Weak hardware) (No more support)
-
This is just warning message (tell you the version of libcurl on your device not the same with the depend version of build )nothing more
ِAnd it does not affect the work job of the ncam.
Don't wary
-
Update ...
Edit last version with latest update ...
Code
Display More-Return back property() usage for config (This looks more pythonic and should spend less resurces) -Update id.po -Revert "YouTubeMain: try speed up getting recent subscriptions" -YouTubeVideoUrl: imporve age-restricted video extraction, thx remitamine -Remove header and location lines in pot file -Add svg icons and scalable screens support -Move loadIcon function in createThumbnails -Update svg icons (Remove stroke-width and stroke-opacity parameters to slightly reduce the size) -Additional some svg image optimization (Remove unnecessarily added style="stroke-width: 0px;") -Update svg icons (Use the correct youtube red color) (Removes several unused parameters) -
Where is the crash log ?!!!
What is your device ?!!
What image you are using ?!!
-
Install plugin again on other image .... Because your image missing some converter and render files ...
This is image issue not plugin ...
-
You did not give any things to know the issue ?!
on which box ?!
in Which image ?!
Did you install plugin online or not ?!
More details = more helps
-
How can I help you without screenshots ?!!
-
AddKey plugin V.4.4
online update
-Some Fixes and improvement
-Add own VirtualKeyBoard for plugin no need image file
Command to install last version
