From 97b0e81658a4c8acc38024584e867d6174de1042 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 26 Nov 2006 01:03:21 +0000 Subject: add reboot fix for mtd (thanks, wbx) SVN-Revision: 5645 --- package/mtd/src/mtd.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'package/mtd/src/mtd.c') diff --git a/package/mtd/src/mtd.c b/package/mtd/src/mtd.c index 80d09abd2a..7d1e36010c 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; } -- cgit v1.2.3