我需要使用reboot()系统调用(使用ARM重新启动内核2.6.29),我尝试了下面的代码:

#include <stdio.h>
#include <linux/reboot.h>
#include <unistd.h>
int main()
{
    reboot(LINUX_REBOOT_CMD_RESTART);
}

它工作得很好!但我想知道的是,在重启内核后,我会丢失正在保存的文件。
我的意思是如果使用这个代码,“url”文件在重新启动后不会被保存。
int main()
    {
        FILE *pFile = fopen("url", "a"); // for .txt file
        // write to file/read from file ... etc
        fclose(pFile);

        int fdUART = open("/dev/ttySAC0", O_RDWR | O_NOCTTY | O_NDELAY);
        // some operations on UART port
        close(fdUART);
        /* Ethernet raw package process*/
        /* Char dev driver open and communicate with FPGA fifo */
        /* so on */
        reboot(LINUX_REBOOT_CMD_RESTART);
    }

我正在使用UART、Ethernet、char驱动程序,只想知道reboot()调用系统对我的系统的影响。
任何帮助都非常感谢。

最佳答案

您在注释中写到文件系统是cramfs。
the Wikipedia page for cramfs
压缩ROM文件系统(或cramfs)是一个免费的(GPL'ed)只读Linux文件系统,旨在简化和提高空间效率。它主要用于嵌入式系统和小型系统。
注意,它是只读的:这意味着您的更改不会被保留。
您需要写入持久性存储才能保留更改。

10-01 19:19