mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Add other possible paths of AC power status file on Linux
This commit is contained in:
parent
c9063c0b8f
commit
64377c90b5
1 changed files with 5 additions and 3 deletions
|
@ -812,9 +812,11 @@ namespace cryptonote
|
||||||
const std::string POWER_SUPPLY_STATUS_PATHS[] =
|
const std::string POWER_SUPPLY_STATUS_PATHS[] =
|
||||||
{
|
{
|
||||||
"/sys/class/power_supply/ACAD/online",
|
"/sys/class/power_supply/ACAD/online",
|
||||||
"/sys/class/power_supply/AC/online"
|
"/sys/class/power_supply/AC/online",
|
||||||
|
"/sys/class/power_supply/AC0/online",
|
||||||
|
"/sys/class/power_supply/ADP0/online"
|
||||||
};
|
};
|
||||||
|
|
||||||
for(const std::string& path : POWER_SUPPLY_STATUS_PATHS)
|
for(const std::string& path : POWER_SUPPLY_STATUS_PATHS)
|
||||||
{
|
{
|
||||||
if( epee::file_io_utils::is_file_exist(path) )
|
if( epee::file_io_utils::is_file_exist(path) )
|
||||||
|
@ -823,7 +825,7 @@ namespace cryptonote
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if( power_supply_path.empty() )
|
if( power_supply_path.empty() )
|
||||||
{
|
{
|
||||||
LOG_ERROR("Couldn't find battery/power status file, can't determine if plugged in!");
|
LOG_ERROR("Couldn't find battery/power status file, can't determine if plugged in!");
|
||||||
|
|
Loading…
Reference in a new issue