Add a "Rebooting ..." message to the mtd util
[oweals/openwrt.git] / package / mtd / src / mtd.c
index 1d84816751d9b5c867c1815ee36c3e277c169703..9025240e1e85059517211d0be71a8a6b0ee209ed 100644 (file)
@@ -456,7 +456,8 @@ int main (int argc, char **argv)
        sync();
        
        if (boot) {
-               fflush(stdout);
+               fprintf(stderr, "Rebooting ...\n");
+               fflush(stderr);
                syscall(SYS_reboot,LINUX_REBOOT_MAGIC1,LINUX_REBOOT_MAGIC2,LINUX_REBOOT_CMD_RESTART,NULL);
        }
        return 0;