Unfortunately no one can be told what fun_plug is - you have to see it for yourself.
You are not logged in.
Hello,
I have a simple question.
Is it normal that my fun_plug script is still active in the list of the running processes (ps) after boot is completed ?
thanks
greg
Offline
This can happen when you have custom scripts in your ffp/start that don't have the proper formating.
Offline
I change the script for runninf ffp on USB and for using fan control script.
I have attached my fun_plug script
Last edited by greg1977 (2008-11-04 21:37:02)
Offline
It's definitely the fan controller script which keeps your funplug running.
Change the line:
$USB_MOUNTP/ctrl_fanspeed.sh
to
$USB_MOUNTP/ctrl_fanspeed.sh & >/dev/null 2>/dev/null
This should do it. The "&" sign tells funplug to run the fan controller in the background and the rest is for redirecting standard and error output to the trash bin.
Offline