This commit is contained in:
aixiao 2025-03-13 23:20:15 +08:00
parent 1eed11b4d4
commit 787c094dbb
3 changed files with 13 additions and 8 deletions

View File

@ -1,8 +1,8 @@
CROSS_COMPILE ?=
CC := $(CROSS_COMPILE)gcc
CFLAGS += -Wall -Os -g -L../libini -I../libini -fno-builtin
LIB += -Wl,-rpath,/root/libini/ /root/libini/libini.so
BIN = reboot_temperature
LIB += -Wl,-rpath,/root/libini/ ../libini/libini.so
BIN = boot
all: reboot_temperature.o
$(CC) $(CFLAGS) $^ -o $(BIN) $(LIB)

View File

@ -1,8 +1,8 @@
[global]
thermal_zone = "/sys/class/thermal/thermal_zone0/temp";
temperature = 85
log_file = "log_reboot.log";
second = 60
temperature = 70
log_file = "boot.log";
second = 30
nice = -20
off_power = 0

View File

@ -45,7 +45,6 @@ static int error_log(float l_t, int c_t, char *log_file, char *recv_mail, int _i
if (_is == 1)
{
if (_alert == 1)
{
// 关机重启时
@ -126,22 +125,28 @@ int main(int argc, char *argv[], char **env)
perror("nice");
while (1) {
while (1)
{
getinikeystring("global", "thermal_zone", inifile, buffer); // 获取thermal_zone路径
getinikeystring("global", "log_file", inifile, log_file); // 获取日志文件名
getinikeystring("global", "recv_mail", inifile, recv_mail); // 获取接收者邮箱
if (get_temperature(buffer) >= getinikeyint("global", "temperature", inifile)) // 达到重启或者关机温度
{
sync();
sync();
if (getinikeyint("global", "off_power", inifile) == 1)
{
error_log(get_temperature(buffer), getinikeyint("global", "temperature", inifile), log_file, recv_mail, getinikeyint("global", "is_alert", inifile), 1);
return reboot(RB_POWER_OFF); // 关机
} else {
}
if (getinikeyint("global", "off_power", inifile) == 0)
{
error_log(get_temperature(buffer), getinikeyint("global", "temperature", inifile), log_file, recv_mail, getinikeyint("global", "is_alert", inifile), 1);
return reboot(RB_AUTOBOOT); // 重启
}
}
else // 未达到重启或者关机温度
{