Add other possible paths of AC power status file on Linux

This commit is contained in:
Guillaume LE VAILLANT 2017-03-28 11:35:18 +02:00
parent c9063c0b8f
commit 64377c90b5

View file

@ -812,7 +812,9 @@ 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)