Changeset 30668


Ignore:
Timestamp:
10/23/14 22:17:27 (9 years ago)
Author:
obi
Message:

check vdstandby binary

File:
1 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/standby.h

    r29589 r30668  
    6363       
    6464        setcecstandby(1);
    65         system("vdstandby -a");
     65        if(file_exist("/bin/vdstandby") == 1)
     66                system("vdstandby -a");
    6667        while(1)
    6768        {
     
    9798       
    9899        setcecstandby(0);
    99         system("vdstandby -d");
     100        if(file_exist("/bin/vdstandby") == 1)
     101                system("vdstandby -d");
    100102
    101103        setoverclockfreq(1);
Note: See TracChangeset for help on using the changeset viewer.