解决办法:
一、关闭日志:
root@localhost:~# echo 1 4 1 7 > /proc/sys/kernel/printk
二、找到频繁设置看门狗程序地方,注释掉
//start watchdog
if (fd == -1)
{
fd = open(dev.c_str(), O_WRONLY);
if (fd == -1)
{
perror("open watchdog failed");
return false;
}
auto ret = ioctl(fd, WDIOC_SETTIMEOUT, &timeout);
if (ret < 0)
perror("set timeout failed");
}
比如这个如果频繁设置watchdog就会报这个信息。