Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Logcat Error Message: "file ... driverlist.txt not found!"

I got the following logcat error message:

file /data/data/com.nvidia.NvCPLSvc/files/driverlist.txt: not found!

What does it mean? Can I get that file anywhere so this message disappears?

like image 630
cody Avatar asked Nov 11 '22 23:11

cody


1 Answers

It's true... just about every tegra device gets this error... but I was able to hide it by creating an empty file by myself:

in a terminal:

echo > /data/data/com.nvidia.NvCPLSvc/files/driverlist.txt

you may need root access

like image 89
Xebozone Avatar answered Nov 15 '22 00:11

Xebozone