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.

Installation of gfx_rel_es8.x fails

After installation of Graphics_SDK_setuplinux_hardfp_5_01_01_02.bin I tried to install gfx_rel_es8.x.

On host I executed:

gfx_rel_es8.x/install.sh -v --root /opt/TI-PSP/custom-filesystem


Result:

Can't find /lib/modules/3.8.0-44-generic on file system installation root
There is no kernel module area setup yet. You should invoke:

 $ cd
 $ make INSTALL_MOD_PATH=/opt/mecha1-psp-V7.1.0.10-SNAPSHOT/custom-filesystem modules_install

I found the reason:

uname- r is used to identify the kernel. But this prints the kernel of the host but not of the target. Thus all calls fail.

Example from script install.sh:212: install_file pvrsrvkm.ko /lib/modules/$(uname -r)/extra/pvrsrvkm.ko "kernel module" 0644 0:0


How can this issue be fixed?