X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/053826c1ef378f54fdc45240a7c622f6610756c7..62adcb808c8ff00b33280f3df32c6af41dd1f07f:/package/mtd/src/mtd.c?ds=sidebyside diff --git a/package/mtd/src/mtd.c b/package/mtd/src/mtd.c index f5acb1eff..7d1e36010 100644 --- a/package/mtd/src/mtd.c +++ b/package/mtd/src/mtd.c @@ -28,19 +28,22 @@ #include #include #include +#include +#include #include #include #include #include +#include #include #include #include #include #include #include -#include +#include -#include +#include "mtd.h" #define TRX_MAGIC 0x30524448 /* "HDR0" */ #define BUFSIZE (16 * 1024) @@ -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; }