This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Yes, it is possible. Is there any issue faced ?
The procedure should be to provide links to the already copied libraries, using the rc.pvr and install.sh as reference. Since the procedure is straightforward, there is no separate writeup for this.
It's actually possible to use install.sh in <target-root-fs>/opt/gfxlibraries/gfx_rel_es3.x on the host
first a uname replacement has to be written so that uname -r returns the kernel version of the target:
#!/bin/sh
if [ $1 = "-r" ]
then
echo "2.6.37"
else
/bin/uname $1
fi
then set some env-varialbes and start install.sh:
export DISCIMAGE=<target-root-fs>
export NO_X=1
export PATH=.:$PATH
./install.sh
-Jochen