Quote:
Originally Posted by twobob
...
As for the Hint missing. That 99% likely to be the sym link to libsounda is either missing - or libsounda is not present at all. A sym link or x-compiled lib would fix it.
...
Thanks for playing. It is highly appreciated GM
|
You are welcome! Thank you for getting it working on the K3 (when CPU not overloaded).
"find /|grep
libsounda" finds nothing on the K5, but also finds nothing on the K3?
Hmm...
Ahh... It finds libasound though... 
On the K3:
Code:
[root@kindle root]# for i in $(find /|grep libasound);do ls -al $i;done
lrwxrwxrwx 1 root root 18 Sep 16 2010 /usr/lib/libasound.so.2 -> libasound.so.2.0.0
-rwxr-xr-x 1 root root 755444 Jan 20 2008 /usr/lib/libasound.so.2.0.0
-rwxr-xr-x 1 root root 9536 Nov 3 2011 /usr/lib/alsa-lib/libasound_module_pcm_retune.so.0.0.0
lrwxrwxrwx 1 root root 36 Sep 16 2010 /usr/lib/alsa-lib/libasound_module_pcm_retune.so.0 -> libasound_module_pcm_retune.so.0.0.0
lrwxrwxrwx 1 root root 36 Sep 16 2010 /usr/lib/alsa-lib/libasound_module_pcm_retune.so -> libasound_module_pcm_retune.so.0.0.0
-rwxr-xr-x 1 root root 807384 Dec 17 2011 /mnt/us/mplayer/lib/libasound.so.2
-rwxr-xr-x 1 root root 807384 Dec 17 2011 /mnt/base-us/mplayer/lib/libasound.so.2
[root@kindle root]#
On the K5:
Code:
[root@kindle us]# for i in $(find /|grep libasound);do ls -al $i;done
-rwxr-xr-x 1 root root 482664 Nov 1 00:02 /usr/lib/libasound.so.2.0.0
lrwxrwxrwx 1 root root 18 Nov 3 20:03 /usr/lib/libasound.so -> libasound.so.2.0.0
lrwxrwxrwx 1 root root 18 Nov 3 20:03 /usr/lib/libasound.so.2 -> libasound.so.2.0.0
[root@kindle us]#
Interesting that the K3 (which works) is missing "/usr/lib/libasound.so.2", which exists on the K5 (which does not work)... Also, the K3 lib is 80K, but the K5 lib is only 48K -- perhaps it was built with less options enabled?
And I am curious why mplayer has its own libasound, when the K3 already has one...