X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/91244ebf6b83c3e461b987b2f69f8dc4a3df0078..7e450a1c869a5b227e3c91c4e71049059f1193e6:/package/mtd/src/mtd.c?ds=inline diff --git a/package/mtd/src/mtd.c b/package/mtd/src/mtd.c index 80d09abd2..7d1e36010 100644 --- a/package/mtd/src/mtd.c +++ b/package/mtd/src/mtd.c @@ -28,17 +28,20 @@ #include #include #include +#include +#include #include #include #include #include +#include #include #include #include #include #include #include -#include +#include #include "mtd.h" @@ -458,8 +461,9 @@ int main (int argc, char **argv) sync(); - if (boot) - kill(1, 15); // send SIGTERM to init for reboot - + if (boot) { + fflush(stdout); + syscall(SYS_reboot,LINUX_REBOOT_MAGIC1,LINUX_REBOOT_MAGIC2,LINUX_REBOOT_CMD_RESTART,NULL); + } return 0; }